From 5faefe22dd582a38c4e81c512d80ba441a1c9912 Mon Sep 17 00:00:00 2001 From: Lycs-D <139197676+Lycs-D@users.noreply.github.com> Date: Sat, 16 Mar 2024 12:42:53 +0800 Subject: [PATCH] Remove auto generate files --- .github/workflows/analyzer_tests.yml | 6 + .github/workflows/build_ci.yml | 5 + .github/workflows/nightly_release.yml | 6 +- .github/workflows/test_tree_sitter_v.yml | 10 +- build.vsh | 49 +- tree_sitter_v/.gitignore | 4 + tree_sitter_v/node_types.v | 495 - tree_sitter_v/package.json | 2 +- tree_sitter_v/src/grammar.json | 8539 - tree_sitter_v/src/node-types.json | 4700 - tree_sitter_v/src/parser.c | 308471 -------------------- tree_sitter_v/src/tree_sitter/parser.h | 230 - 12 files changed, 59 insertions(+), 322458 deletions(-) delete mode 100644 tree_sitter_v/node_types.v delete mode 100644 tree_sitter_v/src/grammar.json delete mode 100644 tree_sitter_v/src/node-types.json delete mode 100644 tree_sitter_v/src/parser.c delete mode 100644 tree_sitter_v/src/tree_sitter/parser.h diff --git a/.github/workflows/analyzer_tests.yml b/.github/workflows/analyzer_tests.yml index 502a13e6..27fbb0b3 100644 --- a/.github/workflows/analyzer_tests.yml +++ b/.github/workflows/analyzer_tests.yml @@ -41,6 +41,12 @@ jobs: path: v-analyzer submodules: true + - name: Insrall dependencies && generate + run: | + cd v-analyzer/tree_sitter_v + npm install + npm run generate + - name: Run tests run: | cd v-analyzer/tests diff --git a/.github/workflows/build_ci.yml b/.github/workflows/build_ci.yml index c0328b74..8eb22eaa 100644 --- a/.github/workflows/build_ci.yml +++ b/.github/workflows/build_ci.yml @@ -49,6 +49,11 @@ jobs: path: v-analyzer submodules: true + - name: Insrall dependencies + run: | + cd v-analyzer/tree_sitter_v + npm install + - name: Build ${{ matrix.name }} run: | cd v-analyzer diff --git a/.github/workflows/nightly_release.yml b/.github/workflows/nightly_release.yml index 2de20360..d844c153 100644 --- a/.github/workflows/nightly_release.yml +++ b/.github/workflows/nightly_release.yml @@ -52,6 +52,11 @@ jobs: path: v-analyzer submodules: true + - name: Insrall dependencies + run: | + cd v-analyzer/tree_sitter_v + npm install + - name: Compile run: | cd v-analyzer @@ -82,7 +87,6 @@ jobs: with: artifacts: ${{ env.ARTIFACT }}.zip tag: nightly - body: ${{ env.BODY }} name: v-analyzer development build prerelease: true allowUpdates: true diff --git a/.github/workflows/test_tree_sitter_v.yml b/.github/workflows/test_tree_sitter_v.yml index a492c468..a2ab22bc 100644 --- a/.github/workflows/test_tree_sitter_v.yml +++ b/.github/workflows/test_tree_sitter_v.yml @@ -14,6 +14,11 @@ jobs: runs-on: ubuntu-latest steps: + - name: Install V + uses: vlang/setup-v@v1.4 + with: + check-latest: true + - name: Install Nodejs uses: actions/setup-node@v4 with: @@ -25,10 +30,11 @@ jobs: path: v-analyzer submodules: true - - name: Install dependencies + - name: Install dependencies && generate run: | cd v-analyzer/tree_sitter_v - npm update + npm install + npm run generate - name: Run tests run: | diff --git a/build.vsh b/build.vsh index b39fde46..982a67b1 100644 --- a/build.vsh +++ b/build.vsh @@ -63,31 +63,42 @@ fn prepare_output_dir() { os.mkdir('./bin') or { errorln('Failed to create output directory: ${err}') } } +fn generate() bool { + os.chdir('./tree_sitter_v') or { return false } + if os.execute('npm run generate').exit_code == 0 { + os.chdir('../') or { return false } + println('${term.green('✓')} Run tree-sitter generate') + return true + } + return false +} + fn build(mode ReleaseMode, explicit_debug bool) { println('Building v-analyzer at commit: ${build_commit}, build time: ${build_datetime} ...') + if generate() { + prepare_output_dir() + println('${term.green('✓')} Prepared output directory') + + cmd := mode.compile_cmd() + println('Building v-analyzer in ${term.bold(mode.str())} mode, using: ${cmd}') + if mode == .release { + println('This may take a while...') + } - prepare_output_dir() - println('${term.green('✓')} Prepared output directory') - - cmd := mode.compile_cmd() - println('Building v-analyzer in ${term.bold(mode.str())} mode, using: ${cmd}') - if mode == .release { - println('This may take a while...') - } + if !explicit_debug && mode == .debug { + println('To build in ${term.bold('release')} mode, run ${term.bold('v build.vsh release')}') + println('Release mode is recommended for production use. At runtime, it is about 30-40% faster than debug mode.') + } - if !explicit_debug && mode == .debug { - println('To build in ${term.bold('release')} mode, run ${term.bold('v build.vsh release')}') - println('Release mode is recommended for production use. At runtime, it is about 30-40% faster than debug mode.') - } + os.execute_opt(cmd) or { + errorln('Failed to build v-analyzer') + eprintln(err) + exit(1) + } - os.execute_opt(cmd) or { - errorln('Failed to build v-analyzer') - eprintln(err) - exit(1) + println('${term.green('✓')} Successfully built v-analyzer!') + println('Binary is located at ${term.bold(abs_path(bin_path))}') } - - println('${term.green('✓')} Successfully built v-analyzer!') - println('Binary is located at ${term.bold(abs_path(bin_path))}') } // main program: diff --git a/tree_sitter_v/.gitignore b/tree_sitter_v/.gitignore index b9073cae..9973a16a 100644 --- a/tree_sitter_v/.gitignore +++ b/tree_sitter_v/.gitignore @@ -22,3 +22,7 @@ Cargo.toml bindings/node/ bindings/rust/ binding.gyp + +src/ + +node_types.v diff --git a/tree_sitter_v/node_types.v b/tree_sitter_v/node_types.v deleted file mode 100644 index b1fe236c..00000000 --- a/tree_sitter_v/node_types.v +++ /dev/null @@ -1,495 +0,0 @@ -// This is an AUTO-GENERATED file. DO NOT EDIT this file directly! See `generate_types.vsh` -module tree_sitter_v - -import arrays { merge } - -pub enum SuperType { - unknown - expression - expression_with_blocks - statement - top_level_declaration -} - -pub enum NodeType { - unknown - error - anon_struct_type - anon_struct_value_expression - append_statement - argument - argument_list - array_creation - array_type - as_type_cast_expression - asm_statement - assert_statement - assignment_statement - atomic_type - attribute - attribute_expression - attributes - binary_expression - block - break_statement - c_string_literal - call_expression - capture - capture_list - channel_type - compile_time_for_statement - compile_time_if_expression - compile_time_selector_expression - const_declaration - const_definition - continue_statement - dec_expression - defer_statement - element - element_list - else_branch - embedded_definition - enum_backed_type - enum_declaration - enum_fetch - enum_field_definition - expression_list - field_name - fixed_array_creation - fixed_array_type - for_clause - for_statement - format_specifier - function_declaration - function_literal - function_type - generic_parameter - generic_parameters - generic_type - global_var_declaration - global_var_definition - go_expression - goto_statement - hash_statement - identifier_list - if_attribute - if_expression - import_alias - import_declaration - import_list - import_name - import_path - import_spec - in_expression - inc_expression - index_expression - interface_declaration - interface_method_definition - interpolation_closing - interpreted_string_literal - is_expression - key_value_attribute - keyed_element - label_definition - label_reference - labeled_statement - literal - literal_attribute - lock_expression - map_init_expression - map_keyed_element - map_type - match_arm - match_arm_type - match_arms - match_else_arm_clause - match_expression - match_expression_list - module_clause - multi_return_type - mutability_modifiers - mutable_expression - mutable_identifier - not_in_expression - not_is_expression - option_propagation_expression - option_type - or_block - or_block_expression - overridable_operator - parameter_declaration - parameter_list - parenthesized_expression - plain_type - pointer_type - pseudo_compile_time_identifier - qualified_type - range - range_clause - raw_string_literal - receive_expression - receiver - reference_expression - result_propagation_expression - result_type - return_statement - select_arm - select_arm_statement - select_else_arn_clause - select_expression - selective_import_list - selector_expression - send_statement - shared_type - short_element_list - signature - simple_statement - slice_expression - source_file - spawn_expression - special_argument_list - spread_expression - sql_expression - static_method_declaration - static_receiver - string_interpolation - struct_declaration - struct_field_declaration - struct_field_scope - thread_type - type_declaration - type_initializer - type_initializer_body - type_parameter_declaration - type_parameter_list - type_parameters - type_reference_expression - unary_expression - unsafe_expression - value_attribute - var_declaration - var_definition - var_definition_list - visibility_modifiers - wrong_pointer_type - comment - escape_sequence - false_ - float_literal - identifier - int_literal - interpolation_opening - nil_ - none_ - rune_literal - true_ -} - -const supertype__expression_nodes = merge(supertype__expression_with_blocks_nodes, [ - NodeType.array_creation, - .as_type_cast_expression, - .binary_expression, - .call_expression, - .dec_expression, - .enum_fetch, - .fixed_array_creation, - .function_literal, - .go_expression, - .in_expression, - .inc_expression, - .index_expression, - .is_expression, - .literal, - .not_in_expression, - .not_is_expression, - .option_propagation_expression, - .or_block_expression, - .parenthesized_expression, - .pseudo_compile_time_identifier, - .receive_expression, - .reference_expression, - .result_propagation_expression, - .selector_expression, - .slice_expression, - .spawn_expression, - .unary_expression, -]) - -const supertype__expression_with_blocks_nodes = [ - NodeType.anon_struct_value_expression, - .compile_time_if_expression, - .if_expression, - .lock_expression, - .map_init_expression, - .match_expression, - .select_expression, - .sql_expression, - .type_initializer, - .unsafe_expression, -] - -const supertype__statement_nodes = [ - NodeType.append_statement, - .asm_statement, - .assert_statement, - .block, - .break_statement, - .compile_time_for_statement, - .continue_statement, - .defer_statement, - .for_statement, - .goto_statement, - .hash_statement, - .labeled_statement, - .return_statement, - .send_statement, - .simple_statement, -] - -const supertype__top_level_declaration_nodes = [ - NodeType.const_declaration, - .enum_declaration, - .function_declaration, - .global_var_declaration, - .interface_declaration, - .static_method_declaration, - .struct_declaration, - .type_declaration, -] - -pub fn (typ NodeType) group() SuperType { - return if typ in tree_sitter_v.supertype__top_level_declaration_nodes { - SuperType.top_level_declaration - } else if typ in tree_sitter_v.supertype__expression_nodes { - SuperType.expression - } else if typ in tree_sitter_v.supertype__statement_nodes { - SuperType.statement - } else { - SuperType.unknown - } -} - -const declaration_node_types = [ - NodeType.const_declaration, - .enum_declaration, - .function_declaration, - .global_var_declaration, - .import_declaration, - .interface_declaration, - .parameter_declaration, - .static_method_declaration, - .struct_declaration, - .struct_field_declaration, - .type_declaration, - .type_parameter_declaration, - .var_declaration, -] - -const identifier_node_types = [ - NodeType.mutable_identifier, - .pseudo_compile_time_identifier, - .identifier, -] - -const literal_node_types = [ - NodeType.c_string_literal, - .function_literal, - .interpreted_string_literal, - .raw_string_literal, - .float_literal, - .int_literal, - .rune_literal, -] - -pub fn (typ NodeType) is_declaration() bool { - return typ in tree_sitter_v.declaration_node_types -} - -pub fn (typ NodeType) is_identifier() bool { - return typ in tree_sitter_v.identifier_node_types -} - -pub fn (typ NodeType) is_literal() bool { - return typ in tree_sitter_v.literal_node_types -} - -pub const type_factory = &VNodeTypeFactory{} - -pub struct VNodeTypeFactory {} - -pub fn (nf VNodeTypeFactory) get_type(type_name string) NodeType { - return tree_sitter_v.node_type_name_to_enum[type_name] or { NodeType.unknown } -} - -const node_type_name_to_enum = { - 'ERROR': NodeType.error - 'anon_struct_type': NodeType.anon_struct_type - 'anon_struct_value_expression': NodeType.anon_struct_value_expression - 'append_statement': NodeType.append_statement - 'argument': NodeType.argument - 'argument_list': NodeType.argument_list - 'array_creation': NodeType.array_creation - 'array_type': NodeType.array_type - 'as_type_cast_expression': NodeType.as_type_cast_expression - 'asm_statement': NodeType.asm_statement - 'assert_statement': NodeType.assert_statement - 'assignment_statement': NodeType.assignment_statement - 'atomic_type': NodeType.atomic_type - 'attribute': NodeType.attribute - 'attribute_expression': NodeType.attribute_expression - 'attributes': NodeType.attributes - 'binary_expression': NodeType.binary_expression - 'block': NodeType.block - 'break_statement': NodeType.break_statement - 'c_string_literal': NodeType.c_string_literal - 'call_expression': NodeType.call_expression - 'capture': NodeType.capture - 'capture_list': NodeType.capture_list - 'channel_type': NodeType.channel_type - 'compile_time_for_statement': NodeType.compile_time_for_statement - 'compile_time_if_expression': NodeType.compile_time_if_expression - 'compile_time_selector_expression': NodeType.compile_time_selector_expression - 'const_declaration': NodeType.const_declaration - 'const_definition': NodeType.const_definition - 'continue_statement': NodeType.continue_statement - 'dec_expression': NodeType.dec_expression - 'defer_statement': NodeType.defer_statement - 'element': NodeType.element - 'element_list': NodeType.element_list - 'else_branch': NodeType.else_branch - 'embedded_definition': NodeType.embedded_definition - 'enum_backed_type': NodeType.enum_backed_type - 'enum_declaration': NodeType.enum_declaration - 'enum_fetch': NodeType.enum_fetch - 'enum_field_definition': NodeType.enum_field_definition - 'expression_list': NodeType.expression_list - 'field_name': NodeType.field_name - 'fixed_array_creation': NodeType.fixed_array_creation - 'fixed_array_type': NodeType.fixed_array_type - 'for_clause': NodeType.for_clause - 'for_statement': NodeType.for_statement - 'format_specifier': NodeType.format_specifier - 'function_declaration': NodeType.function_declaration - 'function_literal': NodeType.function_literal - 'function_type': NodeType.function_type - 'generic_parameter': NodeType.generic_parameter - 'generic_parameters': NodeType.generic_parameters - 'generic_type': NodeType.generic_type - 'global_var_declaration': NodeType.global_var_declaration - 'global_var_definition': NodeType.global_var_definition - 'go_expression': NodeType.go_expression - 'goto_statement': NodeType.goto_statement - 'hash_statement': NodeType.hash_statement - 'identifier_list': NodeType.identifier_list - 'if_attribute': NodeType.if_attribute - 'if_expression': NodeType.if_expression - 'import_alias': NodeType.import_alias - 'import_declaration': NodeType.import_declaration - 'import_list': NodeType.import_list - 'import_name': NodeType.import_name - 'import_path': NodeType.import_path - 'import_spec': NodeType.import_spec - 'in_expression': NodeType.in_expression - 'inc_expression': NodeType.inc_expression - 'index_expression': NodeType.index_expression - 'interface_declaration': NodeType.interface_declaration - 'interface_method_definition': NodeType.interface_method_definition - 'interpolation_closing': NodeType.interpolation_closing - 'interpreted_string_literal': NodeType.interpreted_string_literal - 'is_expression': NodeType.is_expression - 'key_value_attribute': NodeType.key_value_attribute - 'keyed_element': NodeType.keyed_element - 'label_definition': NodeType.label_definition - 'label_reference': NodeType.label_reference - 'labeled_statement': NodeType.labeled_statement - 'literal': NodeType.literal - 'literal_attribute': NodeType.literal_attribute - 'lock_expression': NodeType.lock_expression - 'map_init_expression': NodeType.map_init_expression - 'map_keyed_element': NodeType.map_keyed_element - 'map_type': NodeType.map_type - 'match_arm': NodeType.match_arm - 'match_arm_type': NodeType.match_arm_type - 'match_arms': NodeType.match_arms - 'match_else_arm_clause': NodeType.match_else_arm_clause - 'match_expression': NodeType.match_expression - 'match_expression_list': NodeType.match_expression_list - 'module_clause': NodeType.module_clause - 'multi_return_type': NodeType.multi_return_type - 'mutability_modifiers': NodeType.mutability_modifiers - 'mutable_expression': NodeType.mutable_expression - 'mutable_identifier': NodeType.mutable_identifier - 'not_in_expression': NodeType.not_in_expression - 'not_is_expression': NodeType.not_is_expression - 'option_propagation_expression': NodeType.option_propagation_expression - 'option_type': NodeType.option_type - 'or_block': NodeType.or_block - 'or_block_expression': NodeType.or_block_expression - 'overridable_operator': NodeType.overridable_operator - 'parameter_declaration': NodeType.parameter_declaration - 'parameter_list': NodeType.parameter_list - 'parenthesized_expression': NodeType.parenthesized_expression - 'plain_type': NodeType.plain_type - 'pointer_type': NodeType.pointer_type - 'pseudo_compile_time_identifier': NodeType.pseudo_compile_time_identifier - 'qualified_type': NodeType.qualified_type - 'range': NodeType.range - 'range_clause': NodeType.range_clause - 'raw_string_literal': NodeType.raw_string_literal - 'receive_expression': NodeType.receive_expression - 'receiver': NodeType.receiver - 'reference_expression': NodeType.reference_expression - 'result_propagation_expression': NodeType.result_propagation_expression - 'result_type': NodeType.result_type - 'return_statement': NodeType.return_statement - 'select_arm': NodeType.select_arm - 'select_arm_statement': NodeType.select_arm_statement - 'select_else_arn_clause': NodeType.select_else_arn_clause - 'select_expression': NodeType.select_expression - 'selective_import_list': NodeType.selective_import_list - 'selector_expression': NodeType.selector_expression - 'send_statement': NodeType.send_statement - 'shared_type': NodeType.shared_type - 'short_element_list': NodeType.short_element_list - 'signature': NodeType.signature - 'simple_statement': NodeType.simple_statement - 'slice_expression': NodeType.slice_expression - 'source_file': NodeType.source_file - 'spawn_expression': NodeType.spawn_expression - 'special_argument_list': NodeType.special_argument_list - 'spread_expression': NodeType.spread_expression - 'sql_expression': NodeType.sql_expression - 'static_method_declaration': NodeType.static_method_declaration - 'static_receiver': NodeType.static_receiver - 'string_interpolation': NodeType.string_interpolation - 'struct_declaration': NodeType.struct_declaration - 'struct_field_declaration': NodeType.struct_field_declaration - 'struct_field_scope': NodeType.struct_field_scope - 'thread_type': NodeType.thread_type - 'type_declaration': NodeType.type_declaration - 'type_initializer': NodeType.type_initializer - 'type_initializer_body': NodeType.type_initializer_body - 'type_parameter_declaration': NodeType.type_parameter_declaration - 'type_parameter_list': NodeType.type_parameter_list - 'type_parameters': NodeType.type_parameters - 'type_reference_expression': NodeType.type_reference_expression - 'unary_expression': NodeType.unary_expression - 'unsafe_expression': NodeType.unsafe_expression - 'value_attribute': NodeType.value_attribute - 'var_declaration': NodeType.var_declaration - 'var_definition': NodeType.var_definition - 'var_definition_list': NodeType.var_definition_list - 'visibility_modifiers': NodeType.visibility_modifiers - 'wrong_pointer_type': NodeType.wrong_pointer_type - 'comment': NodeType.comment - 'escape_sequence': NodeType.escape_sequence - 'false': NodeType.false_ - 'float_literal': NodeType.float_literal - 'identifier': NodeType.identifier - 'int_literal': NodeType.int_literal - 'interpolation_opening': NodeType.interpolation_opening - 'nil': NodeType.nil_ - 'none': NodeType.none_ - 'rune_literal': NodeType.rune_literal - 'true': NodeType.true_ -} diff --git a/tree_sitter_v/package.json b/tree_sitter_v/package.json index b415a856..18e1f348 100644 --- a/tree_sitter_v/package.json +++ b/tree_sitter_v/package.json @@ -9,7 +9,7 @@ }, "scripts": { "test": "tree-sitter test", - "generate": "tree-sitter generate && v run generate_types.vsh", + "generate": "tree-sitter generate --no-bindings && v run generate_types.vsh", "parse": "tree-sitter parse", "parseg": "tree-sitter parse --debug-graph", "format": "prettier --write \"**/*.cjs\"" diff --git a/tree_sitter_v/src/grammar.json b/tree_sitter_v/src/grammar.json deleted file mode 100644 index fc688372..00000000 --- a/tree_sitter_v/src/grammar.json +++ /dev/null @@ -1,8539 +0,0 @@ -{ - "name": "v", - "word": "identifier", - "rules": { - "source_file": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "module_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "import_list" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_top_level_declaration" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - } - ] - }, - "comment": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "\\/\\/[^\\n\\r]*" - }, - { - "type": "PATTERN", - "value": "\\/\\*(?:[^\\/][^\\*]+\\/\\*+[^\\/][^\\*]+)+(?:[^\\*][^\\/]+\\*+\\/[^\\*][^\\/]+)+\\/" - }, - { - "type": "PATTERN", - "value": "\\/\\*[^\\*]*\\*\\/" - }, - { - "type": "PATTERN", - "value": "\\#\\!.*" - } - ] - } - }, - "module_clause": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "attributes" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "module" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - "import_list": { - "type": "REPEAT1", - "content": { - "type": "SYMBOL", - "name": "import_declaration" - } - }, - "import_declaration": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "import" - }, - { - "type": "SYMBOL", - "name": "import_spec" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - } - ] - }, - "import_spec": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "import_path" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "import_alias" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "selective_import_list" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "import_path": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "import_name" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "import_name" - } - ] - } - } - ] - }, - "import_name": { - "type": "SYMBOL", - "name": "identifier" - }, - "import_alias": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "import_name" - } - ] - }, - "selective_import_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "SYMBOL", - "name": "reference_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "reference_expression" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "_top_level_declaration": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "const_declaration" - }, - { - "type": "SYMBOL", - "name": "global_var_declaration" - }, - { - "type": "SYMBOL", - "name": "type_declaration" - }, - { - "type": "SYMBOL", - "name": "function_declaration" - }, - { - "type": "SYMBOL", - "name": "static_method_declaration" - }, - { - "type": "SYMBOL", - "name": "struct_declaration" - }, - { - "type": "SYMBOL", - "name": "enum_declaration" - }, - { - "type": "SYMBOL", - "name": "interface_declaration" - } - ] - }, - "const_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attributes" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "const" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "const_definition" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "const_definition" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - } - ] - }, - "const_definition": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "global_var_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attributes" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "__global" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "global_var_definition" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "global_var_definition" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - } - ] - }, - "global_var_definition": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "plain_type" - }, - { - "type": "SYMBOL", - "name": "_global_var_value" - } - ] - } - ] - }, - "_global_var_value": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "type_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "type" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "generic_parameters", - "content": { - "type": "SYMBOL", - "name": "generic_parameters" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "types", - "content": { - "type": "SYMBOL", - "name": "_type_union_list" - } - } - ] - }, - "_type_union_list": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "plain_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - } - } - ] - }, - "function_declaration": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attributes" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "fn" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "receiver", - "content": { - "type": "SYMBOL", - "name": "receiver" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_function_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "generic_parameters", - "content": { - "type": "SYMBOL", - "name": "generic_parameters" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "signature", - "content": { - "type": "SYMBOL", - "name": "signature" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "static_method_declaration": { - "type": "PREC_RIGHT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attributes" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "fn" - }, - { - "type": "FIELD", - "name": "static_receiver", - "content": { - "type": "SYMBOL", - "name": "static_receiver" - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_function_name" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "generic_parameters", - "content": { - "type": "SYMBOL", - "name": "generic_parameters" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "signature", - "content": { - "type": "SYMBOL", - "name": "signature" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "static_receiver": { - "type": "SYMBOL", - "name": "reference_expression" - }, - "_function_name": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "overridable_operator" - } - ] - }, - "overridable_operator": { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "+" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "-" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "*" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "/" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "%" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "<" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": ">" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "==" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "!=" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "<=" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": ">=" - } - } - ] - }, - "receiver": { - "type": "PREC", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "mutability", - "content": { - "type": "SYMBOL", - "name": "mutability_modifiers" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_plain_type_without_special" - }, - "named": true, - "value": "plain_type" - } - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "signature": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "parameters", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parameter_list" - }, - { - "type": "SYMBOL", - "name": "type_parameter_list" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "result", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "parameter_list": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "parameter_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "parameter_declaration" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - }, - "parameter_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "mutability", - "content": { - "type": "SYMBOL", - "name": "mutability_modifiers" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "variadic", - "content": { - "type": "STRING", - "value": "..." - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - } - ] - }, - "type_parameter_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "type_parameter_declaration" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "type_parameter_declaration" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "type_parameter_declaration": { - "type": "PREC", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutability_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "variadic", - "content": { - "type": "STRING", - "value": "..." - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - } - ] - } - }, - "generic_parameters": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[" - } - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "<" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "generic_parameter" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "generic_parameter" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "]" - }, - { - "type": "STRING", - "value": ">" - } - ] - } - ] - } - }, - "generic_parameter": { - "type": "SYMBOL", - "name": "identifier" - }, - "struct_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attributes" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "struct" - }, - { - "type": "STRING", - "value": "union" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "generic_parameters", - "content": { - "type": "SYMBOL", - "name": "generic_parameters" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_struct_body" - } - ] - }, - "_struct_body": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "struct_field_scope" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "struct_field_declaration" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "struct_field_scope": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "pub" - }, - { - "type": "STRING", - "value": "mut" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "pub" - }, - { - "type": "STRING", - "value": "mut" - } - ] - }, - { - "type": "STRING", - "value": "__global" - } - ] - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - "struct_field_declaration": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_struct_field_definition" - }, - { - "type": "SYMBOL", - "name": "embedded_definition" - } - ] - }, - "_struct_field_definition": { - "type": "PREC_RIGHT", - "value": 8, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "default_value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "embedded_definition": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_reference_expression" - }, - { - "type": "SYMBOL", - "name": "qualified_type" - }, - { - "type": "SYMBOL", - "name": "generic_type" - } - ] - }, - "enum_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attributes" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "enum" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "enum_backed_type" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_enum_body" - } - ] - }, - "enum_backed_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - }, - "_enum_body": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "enum_field_definition" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "enum_field_definition": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "=" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "interface_declaration": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attributes" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "visibility_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "interface" - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "generic_parameters", - "content": { - "type": "SYMBOL", - "name": "generic_parameters" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_interface_body" - } - ] - }, - "_interface_body": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "struct_field_scope" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "struct_field_declaration" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "interface_method_definition" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "interface_method_definition": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "generic_parameters", - "content": { - "type": "SYMBOL", - "name": "generic_parameters" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "signature", - "content": { - "type": "SYMBOL", - "name": "signature" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "attributes", - "content": { - "type": "SYMBOL", - "name": "attribute" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_expression": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_without_blocks" - }, - { - "type": "SYMBOL", - "name": "_expression_with_blocks" - } - ] - }, - "_expression_without_blocks": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "parenthesized_expression" - }, - { - "type": "SYMBOL", - "name": "go_expression" - }, - { - "type": "SYMBOL", - "name": "spawn_expression" - }, - { - "type": "SYMBOL", - "name": "call_expression" - }, - { - "type": "SYMBOL", - "name": "function_literal" - }, - { - "type": "SYMBOL", - "name": "reference_expression" - }, - { - "type": "SYMBOL", - "name": "_max_group" - }, - { - "type": "SYMBOL", - "name": "array_creation" - }, - { - "type": "SYMBOL", - "name": "fixed_array_creation" - }, - { - "type": "SYMBOL", - "name": "unary_expression" - }, - { - "type": "SYMBOL", - "name": "receive_expression" - }, - { - "type": "SYMBOL", - "name": "binary_expression" - }, - { - "type": "SYMBOL", - "name": "is_expression" - }, - { - "type": "SYMBOL", - "name": "not_is_expression" - }, - { - "type": "SYMBOL", - "name": "in_expression" - }, - { - "type": "SYMBOL", - "name": "not_in_expression" - }, - { - "type": "SYMBOL", - "name": "index_expression" - }, - { - "type": "SYMBOL", - "name": "slice_expression" - }, - { - "type": "SYMBOL", - "name": "as_type_cast_expression" - }, - { - "type": "SYMBOL", - "name": "selector_expression" - }, - { - "type": "SYMBOL", - "name": "enum_fetch" - }, - { - "type": "SYMBOL", - "name": "inc_expression" - }, - { - "type": "SYMBOL", - "name": "dec_expression" - }, - { - "type": "SYMBOL", - "name": "or_block_expression" - }, - { - "type": "SYMBOL", - "name": "option_propagation_expression" - }, - { - "type": "SYMBOL", - "name": "result_propagation_expression" - } - ] - }, - "_expression_with_blocks": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_initializer" - }, - { - "type": "SYMBOL", - "name": "anon_struct_value_expression" - }, - { - "type": "SYMBOL", - "name": "if_expression" - }, - { - "type": "SYMBOL", - "name": "match_expression" - }, - { - "type": "SYMBOL", - "name": "select_expression" - }, - { - "type": "SYMBOL", - "name": "sql_expression" - }, - { - "type": "SYMBOL", - "name": "lock_expression" - }, - { - "type": "SYMBOL", - "name": "unsafe_expression" - }, - { - "type": "SYMBOL", - "name": "compile_time_if_expression" - }, - { - "type": "SYMBOL", - "name": "map_init_expression" - } - ] - }, - "strictly_expression_list": { - "type": "PREC", - "value": -3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "mutable_expression" - } - ] - }, - { - "type": "STRING", - "value": "," - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "mutable_expression" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "mutable_expression" - } - ] - } - ] - } - } - ] - } - ] - } - }, - "inc_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "++" - } - ] - }, - "dec_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "--" - } - ] - }, - "or_block_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "or_block" - } - ] - }, - "option_propagation_expression": { - "type": "PREC", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "?" - } - ] - } - }, - "result_propagation_expression": { - "type": "PREC", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "!" - } - ] - } - }, - "anon_struct_value_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "struct" - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "element_list", - "content": { - "type": "SYMBOL", - "name": "element_list" - } - }, - { - "type": "FIELD", - "name": "short_element_list", - "content": { - "type": "SYMBOL", - "name": "short_element_list" - } - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "go_expression": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "go" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - "spawn_expression": { - "type": "PREC_LEFT", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "spawn" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - "parenthesized_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "FIELD", - "name": "expression", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "call_expression": { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "function", - "content": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "json.decode" - } - } - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "special_argument_list" - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "type_parameters", - "content": { - "type": "SYMBOL", - "name": "type_parameters" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "arguments", - "content": { - "type": "SYMBOL", - "name": "argument_list" - } - } - ] - } - ] - } - }, - "type_parameters": { - "type": "PREC_DYNAMIC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "plain_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "argument_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - { - "type": "STRING", - "value": "," - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "argument" - } - ] - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - { - "type": "STRING", - "value": "," - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "argument": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "mutable_expression" - }, - { - "type": "SYMBOL", - "name": "keyed_element" - }, - { - "type": "SYMBOL", - "name": "spread_expression" - } - ] - }, - "special_argument_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_plain_type_without_special" - }, - "named": true, - "value": "plain_type" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "type_initializer": { - "type": "PREC", - "value": 8, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "type", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "type_initializer_body" - } - } - ] - } - }, - "type_initializer_body": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "element_list", - "content": { - "type": "SYMBOL", - "name": "element_list" - } - }, - { - "type": "FIELD", - "name": "short_element_list", - "content": { - "type": "SYMBOL", - "name": "short_element_list" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "element_list": { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "spread_expression" - }, - { - "type": "SYMBOL", - "name": "keyed_element" - }, - { - "type": "SYMBOL", - "name": "reference_expression" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - { - "type": "STRING", - "value": "," - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "short_element_list": { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "element" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - { - "type": "STRING", - "value": "," - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "element": { - "type": "SYMBOL", - "name": "_expression" - }, - "keyed_element": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "key", - "content": { - "type": "SYMBOL", - "name": "field_name" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "field_name": { - "type": "SYMBOL", - "name": "reference_expression" - }, - "function_literal": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fn" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "capture_list", - "content": { - "type": "SYMBOL", - "name": "capture_list" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "generic_parameters", - "content": { - "type": "SYMBOL", - "name": "generic_parameters" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "signature", - "content": { - "type": "SYMBOL", - "name": "signature" - } - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - } - }, - "capture_list": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "capture" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "capture" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "capture": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutability_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "reference_expression" - } - ] - }, - "reference_expression": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - "type_reference_expression": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "identifier" - } - }, - "unary_expression": { - "type": "PREC", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "!" - }, - { - "type": "STRING", - "value": "~" - }, - { - "type": "STRING", - "value": "^" - }, - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "&" - } - ] - } - }, - { - "type": "FIELD", - "name": "operand", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "receive_expression": { - "type": "PREC_RIGHT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "<-" - } - }, - { - "type": "FIELD", - "name": "operand", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "binary_expression": { - "type": "CHOICE", - "members": [ - { - "type": "PREC_LEFT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "STRING", - "value": "/" - }, - { - "type": "STRING", - "value": "%" - }, - { - "type": "STRING", - "value": "<<" - }, - { - "type": "STRING", - "value": ">>" - }, - { - "type": "STRING", - "value": ">>>" - }, - { - "type": "STRING", - "value": "&" - }, - { - "type": "STRING", - "value": "&^" - } - ] - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 4, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - }, - { - "type": "STRING", - "value": "|" - }, - { - "type": "STRING", - "value": "^" - } - ] - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "==" - }, - { - "type": "STRING", - "value": "!=" - }, - { - "type": "STRING", - "value": "<" - }, - { - "type": "STRING", - "value": "<=" - }, - { - "type": "STRING", - "value": ">" - }, - { - "type": "STRING", - "value": ">=" - } - ] - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "&&" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": "||" - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - } - ] - }, - "as_type_cast_expression": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "STRING", - "value": "as" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - }, - "compile_time_selector_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "reference_expression" - }, - { - "type": "SYMBOL", - "name": "selector_expression" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - } - ] - }, - "or_block": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "or" - }, - { - "type": "FIELD", - "name": "block", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "_max_group": { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "pseudo_compile_time_identifier" - }, - { - "type": "SYMBOL", - "name": "literal" - } - ] - } - }, - "escape_sequence": { - "type": "TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "u[a-fA-F\\d]{4}" - }, - { - "type": "PATTERN", - "value": "U[a-fA-F\\d]{8}" - }, - { - "type": "PATTERN", - "value": "x[a-fA-F\\d]{2}" - }, - { - "type": "PATTERN", - "value": "\\d{3}" - }, - { - "type": "PATTERN", - "value": "\\r?\\n" - }, - { - "type": "PATTERN", - "value": "['\"abfrntv$\\\\]" - }, - { - "type": "PATTERN", - "value": "\\S" - } - ] - } - ] - } - } - }, - "literal": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "int_literal" - }, - { - "type": "SYMBOL", - "name": "float_literal" - }, - { - "type": "SYMBOL", - "name": "_string_literal" - }, - { - "type": "SYMBOL", - "name": "rune_literal" - }, - { - "type": "SYMBOL", - "name": "none" - }, - { - "type": "SYMBOL", - "name": "true" - }, - { - "type": "SYMBOL", - "name": "false" - }, - { - "type": "SYMBOL", - "name": "nil" - } - ] - }, - "none": { - "type": "STRING", - "value": "none" - }, - "true": { - "type": "STRING", - "value": "true" - }, - "false": { - "type": "STRING", - "value": "false" - }, - "nil": { - "type": "STRING", - "value": "nil" - }, - "spread_expression": { - "type": "PREC_RIGHT", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "..." - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - "map_init_expression": { - "type": "PREC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "map_keyed_element" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "STRING", - "value": ";" - } - ] - }, - { - "type": "STRING", - "value": "," - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "}" - } - ] - } - }, - "map_keyed_element": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "key", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - }, - "array_creation": { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "SYMBOL", - "name": "_array" - } - }, - "fixed_array_creation": { - "type": "PREC_RIGHT", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_array" - }, - { - "type": "STRING", - "value": "!" - } - ] - } - }, - "_array": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "selector_expression": { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "PREC", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operand", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "STRING", - "value": "?." - } - ] - }, - { - "type": "FIELD", - "name": "field", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "reference_expression" - }, - { - "type": "SYMBOL", - "name": "compile_time_selector_expression" - } - ] - } - } - ] - } - } - }, - "index_expression": { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operand", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "#[" - } - } - ] - }, - { - "type": "FIELD", - "name": "index", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "]" - } - ] - } - } - }, - "slice_expression": { - "type": "PREC", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "operand", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "STRING", - "value": "[" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "#[" - } - } - ] - }, - { - "type": "SYMBOL", - "name": "range" - }, - { - "type": "STRING", - "value": "]" - } - ] - } - }, - "if_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "guard", - "content": { - "type": "SYMBOL", - "name": "var_declaration" - } - } - ] - }, - { - "type": "FIELD", - "name": "block", - "content": { - "type": "SYMBOL", - "name": "block" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "else_branch" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "else_branch": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "FIELD", - "name": "else_branch", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "block", - "content": { - "type": "SYMBOL", - "name": "block" - } - }, - { - "type": "SYMBOL", - "name": "if_expression" - } - ] - } - } - ] - }, - "compile_time_if_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$if" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - { - "type": "FIELD", - "name": "block", - "content": { - "type": "SYMBOL", - "name": "block" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$else" - }, - { - "type": "FIELD", - "name": "else_branch", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "SYMBOL", - "name": "compile_time_if_expression" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - "is_expression": { - "type": "PREC_DYNAMIC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutability_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - { - "type": "STRING", - "value": "is" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - } - ] - } - }, - "not_is_expression": { - "type": "PREC_DYNAMIC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutability_modifiers" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - { - "type": "STRING", - "value": "!is" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - } - ] - } - }, - "in_expression": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "not_in_expression": { - "type": "PREC_LEFT", - "value": 3, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "!in" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "enum_fetch": { - "type": "PREC_DYNAMIC", - "value": -1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "reference_expression" - } - ] - } - }, - "match_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "match" - }, - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "mutable_expression" - } - ] - } - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "match_arms" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "match_arms": { - "type": "REPEAT1", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "match_arm" - }, - { - "type": "SYMBOL", - "name": "match_else_arm_clause" - } - ] - } - }, - "match_arm": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "match_expression_list" - } - }, - { - "type": "FIELD", - "name": "block", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "match_expression_list": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_without_blocks" - }, - { - "type": "SYMBOL", - "name": "match_arm_type" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_definite_range" - }, - "named": true, - "value": "range" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_without_blocks" - }, - { - "type": "SYMBOL", - "name": "match_arm_type" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_definite_range" - }, - "named": true, - "value": "range" - } - ] - } - ] - } - } - ] - }, - "match_arm_type": { - "type": "PREC", - "value": 9, - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - }, - "match_else_arm_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "FIELD", - "name": "block", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "select_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "select" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "selected_variables", - "content": { - "type": "SYMBOL", - "name": "expression_list" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "{" - }, - { - "type": "REPEAT", - "content": { - "type": "SYMBOL", - "name": "select_arm" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "select_else_arn_clause" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "select_arm": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "select_arm_statement" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "select_arm_statement": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "select_var_declaration" - }, - "named": true, - "value": "var_declaration" - }, - { - "type": "SYMBOL", - "name": "send_statement" - }, - { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expression_without_blocks_list" - }, - "named": true, - "value": "expression_list" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_select_arm_assignment_statement" - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - }, - "_select_arm_assignment_statement": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*=" - }, - { - "type": "STRING", - "value": "/=" - }, - { - "type": "STRING", - "value": "%=" - }, - { - "type": "STRING", - "value": "<<=" - }, - { - "type": "STRING", - "value": ">>=" - }, - { - "type": "STRING", - "value": ">>>=" - }, - { - "type": "STRING", - "value": "&=" - }, - { - "type": "STRING", - "value": "&^=" - }, - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - }, - { - "type": "STRING", - "value": "|=" - }, - { - "type": "STRING", - "value": "^=" - }, - { - "type": "STRING", - "value": "=" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expression_without_blocks_list" - }, - "named": true, - "value": "expression_list" - } - ] - }, - "select_var_declaration": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "var_list", - "content": { - "type": "SYMBOL", - "name": "identifier_list" - } - }, - { - "type": "STRING", - "value": ":=" - }, - { - "type": "FIELD", - "name": "expression_list", - "content": { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "expression_without_blocks_list" - }, - "named": true, - "value": "expression_list" - } - } - ] - } - }, - "select_else_arn_clause": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "lock_expression": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "lock" - }, - { - "type": "STRING", - "value": "rlock" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "locked_variables", - "content": { - "type": "SYMBOL", - "name": "expression_list" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "unsafe_expression": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "unsafe" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "sql_expression": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "sql" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SYMBOL", - "name": "_content_block" - } - ] - } - }, - "int_literal": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "b" - }, - { - "type": "STRING", - "value": "B" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[01]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[01]" - } - ] - } - } - ] - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[1-9]" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "o" - }, - { - "type": "STRING", - "value": "O" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-7]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-7]" - } - ] - } - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "x" - }, - { - "type": "STRING", - "value": "X" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - } - } - ] - } - ] - } - ] - } - }, - "float_literal": { - "type": "TOKEN", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "e" - }, - { - "type": "STRING", - "value": "E" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "e" - }, - { - "type": "STRING", - "value": "E" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "e" - }, - { - "type": "STRING", - "value": "E" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "x" - }, - { - "type": "STRING", - "value": "X" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - } - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - } - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - } - } - ] - } - ] - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "p" - }, - { - "type": "STRING", - "value": "P" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "+" - }, - { - "type": "STRING", - "value": "-" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-9]" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "_" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - } - ] - } - ] - } - ] - } - }, - "rune_literal": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "`" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[^'\\\\]" - }, - { - "type": "STRING", - "value": "'" - }, - { - "type": "STRING", - "value": "\"" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "\\" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "0" - }, - { - "type": "STRING", - "value": "`" - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "x" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "PATTERN", - "value": "[0-7]" - }, - { - "type": "PATTERN", - "value": "[0-7]" - }, - { - "type": "PATTERN", - "value": "[0-7]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "u" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "U" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - }, - { - "type": "PATTERN", - "value": "[0-9a-fA-F]" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "a" - }, - { - "type": "STRING", - "value": "b" - }, - { - "type": "STRING", - "value": "e" - }, - { - "type": "STRING", - "value": "f" - }, - { - "type": "STRING", - "value": "n" - }, - { - "type": "STRING", - "value": "r" - }, - { - "type": "STRING", - "value": "t" - }, - { - "type": "STRING", - "value": "v" - }, - { - "type": "STRING", - "value": "\\" - }, - { - "type": "STRING", - "value": "'" - }, - { - "type": "STRING", - "value": "\"" - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "STRING", - "value": "`" - } - ] - } - }, - "_string_literal": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "c_string_literal" - }, - { - "type": "SYMBOL", - "name": "raw_string_literal" - }, - { - "type": "SYMBOL", - "name": "interpreted_string_literal" - } - ] - }, - "c_string_literal": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__c_single_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^'\\\\$]+" - } - } - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "string_interpolation" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "__single_quote" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__c_double_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^\"\\\\$]+" - } - } - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "string_interpolation" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "__double_quote" - } - ] - } - ] - }, - "raw_string_literal": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__r_single_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^'\\\\]+" - } - } - } - }, - { - "type": "SYMBOL", - "name": "__single_quote" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__r_double_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^\"\\\\]+" - } - } - } - }, - { - "type": "SYMBOL", - "name": "__double_quote" - } - ] - } - ] - }, - "interpreted_string_literal": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__single_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^'\\\\$]+" - } - } - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "string_interpolation" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "__single_quote" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "__double_quote" - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^\"\\\\$]+" - } - } - }, - { - "type": "SYMBOL", - "name": "escape_sequence" - }, - { - "type": "SYMBOL", - "name": "string_interpolation" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "__double_quote" - } - ] - } - ] - }, - "string_interpolation": { - "type": "SEQ", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "__dolcbr" - }, - "named": true, - "value": "interpolation_opening" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_expression" - }, - "named": true, - "value": "interpolation_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "format_specifier" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "__rcbr" - }, - "named": true, - "value": "interpolation_closing" - } - ] - }, - "format_specifier": { - "type": "SEQ", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": ":" - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[bgGeEfFcdoxXpsS]" - } - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[+\\-]" - } - }, - { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "0" - } - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "int_literal" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "." - }, - { - "type": "SYMBOL", - "name": "int_literal" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "TOKEN", - "content": { - "type": "PATTERN", - "value": "[bgGeEfFcdoxXpsS]" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - ] - } - ] - }, - "pseudo_compile_time_identifier": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "@" - }, - { - "type": "ALIAS", - "content": { - "type": "PATTERN", - "value": "[A-Z][A-Z0-9_]+" - }, - "named": true, - "value": "identifier" - } - ] - }, - "identifier": { - "type": "TOKEN", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "@" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "$" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "C." - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "JS." - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[a-zA-Zα-ωΑ-Ωµ]" - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PATTERN", - "value": "[a-zA-Zα-ωΑ-Ωµ]" - }, - { - "type": "STRING", - "value": "_" - } - ] - }, - { - "type": "PATTERN", - "value": "[0-9]" - } - ] - } - } - ] - } - }, - "visibility_modifiers": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "pub" - }, - { - "type": "STRING", - "value": "__global" - } - ] - } - }, - "mutability_modifiers": { - "type": "PREC_LEFT", - "value": 1, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "mut" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "static" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "volatile" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "STRING", - "value": "shared" - } - ] - } - }, - "mutable_identifier": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "mutability_modifiers" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - }, - "mutable_expression": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "mutability_modifiers" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - }, - "identifier_list": { - "type": "PREC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutable_identifier" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "mutable_identifier" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - ] - } - } - ] - } - }, - "expression_list": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "mutable_expression" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "mutable_expression" - } - ] - } - ] - } - } - ] - } - }, - "expression_without_blocks_list": { - "type": "PREC", - "value": 1, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_expression_without_blocks" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression_without_blocks" - } - ] - } - } - ] - } - }, - "plain_type": { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_plain_type_without_special" - }, - { - "type": "SYMBOL", - "name": "option_type" - }, - { - "type": "SYMBOL", - "name": "result_type" - }, - { - "type": "SYMBOL", - "name": "multi_return_type" - } - ] - } - }, - "_plain_type_without_special": { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "type_reference_expression" - }, - { - "type": "SYMBOL", - "name": "qualified_type" - }, - { - "type": "SYMBOL", - "name": "pointer_type" - }, - { - "type": "SYMBOL", - "name": "wrong_pointer_type" - }, - { - "type": "SYMBOL", - "name": "array_type" - }, - { - "type": "SYMBOL", - "name": "fixed_array_type" - }, - { - "type": "SYMBOL", - "name": "function_type" - }, - { - "type": "SYMBOL", - "name": "generic_type" - }, - { - "type": "SYMBOL", - "name": "map_type" - }, - { - "type": "SYMBOL", - "name": "channel_type" - }, - { - "type": "SYMBOL", - "name": "shared_type" - }, - { - "type": "SYMBOL", - "name": "thread_type" - }, - { - "type": "SYMBOL", - "name": "atomic_type" - }, - { - "type": "SYMBOL", - "name": "anon_struct_type" - } - ] - } - }, - "anon_struct_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "struct" - }, - { - "type": "SYMBOL", - "name": "_struct_body" - } - ] - }, - "multi_return_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "(" - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "plain_type" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - } - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ")" - } - ] - }, - "result_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "!" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "plain_type" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "option_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "plain_type" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "qualified_type": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "module", - "content": { - "type": "SYMBOL", - "name": "reference_expression" - } - }, - { - "type": "STRING", - "value": "." - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "type_reference_expression" - } - } - ] - }, - "fixed_array_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "FIELD", - "name": "size", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "int_literal" - }, - { - "type": "SYMBOL", - "name": "reference_expression" - }, - { - "type": "SYMBOL", - "name": "selector_expression" - } - ] - } - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "FIELD", - "name": "element", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - } - ] - }, - "array_type": { - "type": "PREC", - "value": 7, - "content": { - "type": "PREC_DYNAMIC", - "value": 2, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "FIELD", - "name": "element", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - } - ] - } - } - }, - "variadic_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "..." - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - }, - "pointer_type": { - "type": "PREC", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "&" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - } - }, - "wrong_pointer_type": { - "type": "PREC", - "value": 9, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "*" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - } - }, - "map_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "map[" - }, - { - "type": "FIELD", - "name": "key", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - }, - { - "type": "STRING", - "value": "]" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "plain_type" - } - } - ] - }, - "channel_type": { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "chan" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - } - }, - "shared_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "shared" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - }, - "thread_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "thread" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - }, - "atomic_type": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "atomic" - }, - { - "type": "SYMBOL", - "name": "plain_type" - } - ] - }, - "generic_type": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "qualified_type" - }, - { - "type": "SYMBOL", - "name": "type_reference_expression" - } - ] - }, - { - "type": "SYMBOL", - "name": "type_parameters" - } - ] - }, - "function_type": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "fn" - }, - { - "type": "FIELD", - "name": "signature", - "content": { - "type": "SYMBOL", - "name": "signature" - } - } - ] - } - }, - "_statement_list": { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "_statement" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "SYMBOL", - "name": "_statement" - } - ] - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "empty_labeled_statement" - }, - "named": true, - "value": "labeled_statement" - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "empty_labeled_statement" - }, - "named": true, - "value": "labeled_statement" - } - ] - }, - "_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "simple_statement" - }, - { - "type": "SYMBOL", - "name": "assert_statement" - }, - { - "type": "SYMBOL", - "name": "continue_statement" - }, - { - "type": "SYMBOL", - "name": "break_statement" - }, - { - "type": "SYMBOL", - "name": "return_statement" - }, - { - "type": "SYMBOL", - "name": "asm_statement" - }, - { - "type": "SYMBOL", - "name": "goto_statement" - }, - { - "type": "SYMBOL", - "name": "labeled_statement" - }, - { - "type": "SYMBOL", - "name": "defer_statement" - }, - { - "type": "SYMBOL", - "name": "for_statement" - }, - { - "type": "SYMBOL", - "name": "compile_time_for_statement" - }, - { - "type": "SYMBOL", - "name": "send_statement" - }, - { - "type": "SYMBOL", - "name": "block" - }, - { - "type": "SYMBOL", - "name": "hash_statement" - }, - { - "type": "SYMBOL", - "name": "append_statement" - } - ] - }, - "simple_statement": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "var_declaration" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "SYMBOL", - "name": "assignment_statement" - }, - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "strictly_expression_list" - }, - "named": true, - "value": "expression_list" - } - ] - }, - "assert_statement": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "assert" - }, - { - "type": "SYMBOL", - "name": "_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "append_statement": { - "type": "PREC", - "value": 6, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "<<" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "send_statement": { - "type": "PREC_RIGHT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "channel", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "STRING", - "value": "<-" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "var_declaration": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "var_list", - "content": { - "type": "SYMBOL", - "name": "expression_list" - } - }, - { - "type": "STRING", - "value": ":=" - }, - { - "type": "FIELD", - "name": "expression_list", - "content": { - "type": "SYMBOL", - "name": "expression_list" - } - } - ] - } - }, - "var_definition_list": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "var_definition" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "SYMBOL", - "name": "var_definition" - } - ] - } - } - ] - }, - "var_definition": { - "type": "PREC", - "value": 8, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "modifiers", - "content": { - "type": "STRING", - "value": "mut" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "SYMBOL", - "name": "identifier" - } - } - ] - } - }, - "assignment_statement": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "expression_list" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "*=" - }, - { - "type": "STRING", - "value": "/=" - }, - { - "type": "STRING", - "value": "%=" - }, - { - "type": "STRING", - "value": "<<=" - }, - { - "type": "STRING", - "value": ">>=" - }, - { - "type": "STRING", - "value": ">>>=" - }, - { - "type": "STRING", - "value": "&=" - }, - { - "type": "STRING", - "value": "&^=" - }, - { - "type": "STRING", - "value": "+=" - }, - { - "type": "STRING", - "value": "-=" - }, - { - "type": "STRING", - "value": "|=" - }, - { - "type": "STRING", - "value": "^=" - }, - { - "type": "STRING", - "value": "=" - } - ] - } - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "SYMBOL", - "name": "expression_list" - } - } - ] - }, - "block": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_statement_list" - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "defer_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "defer" - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - "label_reference": { - "type": "SYMBOL", - "name": "identifier" - }, - "goto_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "goto" - }, - { - "type": "SYMBOL", - "name": "label_reference" - } - ] - }, - "break_statement": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "break" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "label_reference" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "continue_statement": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "continue" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "label_reference" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "return_statement": { - "type": "PREC_RIGHT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "return" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "expression_list", - "content": { - "type": "SYMBOL", - "name": "expression_list" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "label_definition": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "STRING", - "value": ":" - } - ] - }, - "labeled_statement": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "label_definition" - }, - { - "type": "SYMBOL", - "name": "_statement" - } - ] - }, - "empty_labeled_statement": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SYMBOL", - "name": "label_definition" - } - }, - "compile_time_for_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "$for" - }, - { - "type": "SYMBOL", - "name": "range_clause" - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "for_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "for" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "range_clause" - }, - { - "type": "SYMBOL", - "name": "for_clause" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "body", - "content": { - "type": "SYMBOL", - "name": "block" - } - } - ] - }, - "range_clause": { - "type": "PREC_LEFT", - "value": 7, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "left", - "content": { - "type": "SYMBOL", - "name": "var_definition_list" - } - }, - { - "type": "STRING", - "value": "in" - }, - { - "type": "FIELD", - "name": "right", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_definite_range" - }, - "named": true, - "value": "range" - }, - { - "type": "SYMBOL", - "name": "_expression" - } - ] - } - } - ] - } - }, - "for_clause": { - "type": "PREC_LEFT", - "value": 0, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "initializer", - "content": { - "type": "SYMBOL", - "name": "simple_statement" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ";" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "condition", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "STRING", - "value": ";" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "update", - "content": { - "type": "SYMBOL", - "name": "simple_statement" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_definite_range": { - "type": "PREC", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "FIELD", - "name": "start", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": ".." - }, - { - "type": "STRING", - "value": "..." - } - ] - } - }, - { - "type": "FIELD", - "name": "end", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - } - ] - } - }, - "range": { - "type": "PREC", - "value": 5, - "content": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "start", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "BLANK" - } - ] - }, - { - "type": "FIELD", - "name": "operator", - "content": { - "type": "STRING", - "value": ".." - } - }, - { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "end", - "content": { - "type": "SYMBOL", - "name": "_expression" - } - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "hash_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "#" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "REPEAT1", - "content": { - "type": "PATTERN", - "value": "[^\\\\\\r\\n]" - } - } - } - ] - }, - "asm_statement": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "asm" - }, - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "_content_block" - } - ] - }, - "_content_block": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "{" - }, - { - "type": "IMMEDIATE_TOKEN", - "content": { - "type": "PREC", - "value": 1, - "content": { - "type": "PATTERN", - "value": "[^{}]+" - } - } - }, - { - "type": "STRING", - "value": "}" - } - ] - }, - "attributes": { - "type": "REPEAT1", - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "attribute" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "\n" - }, - { - "type": "STRING", - "value": "\r" - }, - { - "type": "STRING", - "value": "\r\n" - } - ] - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "attribute": { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "[" - }, - { - "type": "STRING", - "value": "@[" - } - ] - }, - { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "attribute_expression" - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": ";" - }, - { - "type": "SYMBOL", - "name": "attribute_expression" - } - ] - } - } - ] - }, - { - "type": "STRING", - "value": "]" - } - ] - }, - "attribute_expression": { - "type": "PREC", - "value": 10, - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "if_attribute" - }, - { - "type": "SYMBOL", - "name": "_plain_attribute" - } - ] - } - }, - "if_attribute": { - "type": "PREC", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "if" - }, - { - "type": "SYMBOL", - "name": "reference_expression" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "?" - }, - { - "type": "BLANK" - } - ] - } - ] - } - }, - "_plain_attribute": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "literal_attribute" - }, - { - "type": "SYMBOL", - "name": "value_attribute" - }, - { - "type": "SYMBOL", - "name": "key_value_attribute" - } - ] - }, - "literal_attribute": { - "type": "PREC", - "value": 10, - "content": { - "type": "SYMBOL", - "name": "literal" - } - }, - "value_attribute": { - "type": "PREC", - "value": 10, - "content": { - "type": "FIELD", - "name": "name", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "unsafe" - }, - "named": true, - "value": "reference_expression" - }, - { - "type": "SYMBOL", - "name": "reference_expression" - } - ] - } - } - }, - "key_value_attribute": { - "type": "PREC", - "value": 10, - "content": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "value_attribute" - }, - { - "type": "STRING", - "value": ":" - }, - { - "type": "FIELD", - "name": "value", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "literal" - }, - { - "type": "SYMBOL", - "name": "identifier" - } - ] - } - } - ] - } - }, - "__dolcbr": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "${" - } - }, - "__rcbr": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "}" - } - }, - "__double_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "\"" - } - }, - "__single_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "'" - } - }, - "__c_double_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "c\"" - } - }, - "__c_single_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "c'" - } - }, - "__r_double_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "r\"" - } - }, - "__r_single_quote": { - "type": "TOKEN", - "content": { - "type": "STRING", - "value": "r'" - } - } - }, - "extras": [ - { - "type": "SYMBOL", - "name": "comment" - }, - { - "type": "PATTERN", - "value": "\\s" - } - ], - "conflicts": [ - [ - "fixed_array_type", - "_expression_without_blocks" - ], - [ - "qualified_type", - "_expression_without_blocks" - ], - [ - "fixed_array_type", - "literal" - ], - [ - "reference_expression", - "type_reference_expression" - ], - [ - "is_expression" - ], - [ - "not_is_expression" - ], - [ - "_type_union_list" - ], - [ - "_expression_without_blocks", - "element_list" - ] - ], - "precedences": [], - "externals": [], - "inline": [ - "_string_literal", - "_top_level_declaration", - "_array" - ], - "supertypes": [ - "_expression", - "_statement", - "_top_level_declaration", - "_expression_with_blocks" - ] -} diff --git a/tree_sitter_v/src/node-types.json b/tree_sitter_v/src/node-types.json deleted file mode 100644 index 68f58b3c..00000000 --- a/tree_sitter_v/src/node-types.json +++ /dev/null @@ -1,4700 +0,0 @@ -[ - { - "type": "_expression", - "named": true, - "subtypes": [ - { - "type": "_expression_with_blocks", - "named": true - }, - { - "type": "array_creation", - "named": true - }, - { - "type": "as_type_cast_expression", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "dec_expression", - "named": true - }, - { - "type": "enum_fetch", - "named": true - }, - { - "type": "fixed_array_creation", - "named": true - }, - { - "type": "function_literal", - "named": true - }, - { - "type": "go_expression", - "named": true - }, - { - "type": "in_expression", - "named": true - }, - { - "type": "inc_expression", - "named": true - }, - { - "type": "index_expression", - "named": true - }, - { - "type": "is_expression", - "named": true - }, - { - "type": "literal", - "named": true - }, - { - "type": "not_in_expression", - "named": true - }, - { - "type": "not_is_expression", - "named": true - }, - { - "type": "option_propagation_expression", - "named": true - }, - { - "type": "or_block_expression", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "pseudo_compile_time_identifier", - "named": true - }, - { - "type": "receive_expression", - "named": true - }, - { - "type": "reference_expression", - "named": true - }, - { - "type": "result_propagation_expression", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "slice_expression", - "named": true - }, - { - "type": "spawn_expression", - "named": true - }, - { - "type": "unary_expression", - "named": true - } - ] - }, - { - "type": "_expression_with_blocks", - "named": true, - "subtypes": [ - { - "type": "anon_struct_value_expression", - "named": true - }, - { - "type": "compile_time_if_expression", - "named": true - }, - { - "type": "if_expression", - "named": true - }, - { - "type": "lock_expression", - "named": true - }, - { - "type": "map_init_expression", - "named": true - }, - { - "type": "match_expression", - "named": true - }, - { - "type": "select_expression", - "named": true - }, - { - "type": "sql_expression", - "named": true - }, - { - "type": "type_initializer", - "named": true - }, - { - "type": "unsafe_expression", - "named": true - } - ] - }, - { - "type": "_statement", - "named": true, - "subtypes": [ - { - "type": "append_statement", - "named": true - }, - { - "type": "asm_statement", - "named": true - }, - { - "type": "assert_statement", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "break_statement", - "named": true - }, - { - "type": "compile_time_for_statement", - "named": true - }, - { - "type": "continue_statement", - "named": true - }, - { - "type": "defer_statement", - "named": true - }, - { - "type": "for_statement", - "named": true - }, - { - "type": "goto_statement", - "named": true - }, - { - "type": "hash_statement", - "named": true - }, - { - "type": "labeled_statement", - "named": true - }, - { - "type": "return_statement", - "named": true - }, - { - "type": "send_statement", - "named": true - }, - { - "type": "simple_statement", - "named": true - } - ] - }, - { - "type": "_top_level_declaration", - "named": true, - "subtypes": [ - { - "type": "const_declaration", - "named": true - }, - { - "type": "enum_declaration", - "named": true - }, - { - "type": "function_declaration", - "named": true - }, - { - "type": "global_var_declaration", - "named": true - }, - { - "type": "interface_declaration", - "named": true - }, - { - "type": "static_method_declaration", - "named": true - }, - { - "type": "struct_declaration", - "named": true - }, - { - "type": "type_declaration", - "named": true - } - ] - }, - { - "type": "anon_struct_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "struct_field_declaration", - "named": true - }, - { - "type": "struct_field_scope", - "named": true - } - ] - } - }, - { - "type": "anon_struct_value_expression", - "named": true, - "fields": { - "element_list": { - "multiple": false, - "required": false, - "types": [ - { - "type": "element_list", - "named": true - } - ] - }, - "short_element_list": { - "multiple": false, - "required": false, - "types": [ - { - "type": "short_element_list", - "named": true - } - ] - } - } - }, - { - "type": "append_statement", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "argument", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "keyed_element", - "named": true - }, - { - "type": "mutable_expression", - "named": true - }, - { - "type": "spread_expression", - "named": true - } - ] - } - }, - { - "type": "argument_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "argument", - "named": true - } - ] - } - }, - { - "type": "array_creation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "array_type", - "named": true, - "fields": { - "element": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - } - }, - { - "type": "as_type_cast_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "asm_statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "assert_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "assignment_statement", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression_list", - "named": true - } - ] - }, - "operator": { - "multiple": false, - "required": true, - "types": [ - { - "type": "%=", - "named": false - }, - { - "type": "&=", - "named": false - }, - { - "type": "&^=", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "<<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": ">>=", - "named": false - }, - { - "type": ">>>=", - "named": false - }, - { - "type": "^=", - "named": false - }, - { - "type": "|=", - "named": false - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression_list", - "named": true - } - ] - } - } - }, - { - "type": "atomic_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "attribute", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute_expression", - "named": true - } - ] - } - }, - { - "type": "attribute_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "if_attribute", - "named": true - }, - { - "type": "key_value_attribute", - "named": true - }, - { - "type": "literal_attribute", - "named": true - }, - { - "type": "value_attribute", - "named": true - } - ] - } - }, - { - "type": "attributes", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attribute", - "named": true - } - ] - } - }, - { - "type": "binary_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "operator": { - "multiple": false, - "required": true, - "types": [ - { - "type": "!=", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "&^", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": ">>>", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "|", - "named": false - }, - { - "type": "||", - "named": false - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "block", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - } - ] - } - }, - { - "type": "break_statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "label_reference", - "named": true - } - ] - } - }, - { - "type": "c_string_literal", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "escape_sequence", - "named": true - }, - { - "type": "string_interpolation", - "named": true - } - ] - } - }, - { - "type": "call_expression", - "named": true, - "fields": { - "arguments": { - "multiple": false, - "required": true, - "types": [ - { - "type": "argument_list", - "named": true - }, - { - "type": "special_argument_list", - "named": true - } - ] - }, - "function": { - "multiple": false, - "required": false, - "types": [ - { - "type": "json.decode", - "named": false - } - ] - }, - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "type_parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type_parameters", - "named": true - } - ] - } - } - }, - { - "type": "capture", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "mutability_modifiers", - "named": true - }, - { - "type": "reference_expression", - "named": true - } - ] - } - }, - { - "type": "capture_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "capture", - "named": true - } - ] - } - }, - { - "type": "channel_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "compile_time_for_statement", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "range_clause", - "named": true - } - ] - } - }, - { - "type": "compile_time_if_expression", - "named": true, - "fields": { - "block": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "condition": { - "multiple": true, - "required": true, - "types": [ - { - "type": "?", - "named": false - }, - { - "type": "_expression", - "named": true - } - ] - }, - "else_branch": { - "multiple": false, - "required": false, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "compile_time_if_expression", - "named": true - } - ] - } - } - }, - { - "type": "compile_time_selector_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - }, - { - "type": "selector_expression", - "named": true - } - ] - } - }, - { - "type": "const_declaration", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "const_definition", - "named": true - }, - { - "type": "visibility_modifiers", - "named": true - } - ] - } - }, - { - "type": "const_definition", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "continue_statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "label_reference", - "named": true - } - ] - } - }, - { - "type": "dec_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "defer_statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - { - "type": "element", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "element_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "keyed_element", - "named": true - }, - { - "type": "reference_expression", - "named": true - }, - { - "type": "spread_expression", - "named": true - } - ] - } - }, - { - "type": "else_branch", - "named": true, - "fields": { - "block": { - "multiple": false, - "required": false, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "else_branch": { - "multiple": false, - "required": false, - "types": [ - { - "type": "if_expression", - "named": true - } - ] - } - } - }, - { - "type": "embedded_definition", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "generic_type", - "named": true - }, - { - "type": "qualified_type", - "named": true - }, - { - "type": "type_reference_expression", - "named": true - } - ] - } - }, - { - "type": "enum_backed_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "enum_declaration", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "enum_backed_type", - "named": true - }, - { - "type": "enum_field_definition", - "named": true - }, - { - "type": "visibility_modifiers", - "named": true - } - ] - } - }, - { - "type": "enum_fetch", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - } - ] - } - }, - { - "type": "enum_field_definition", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "expression_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "mutable_expression", - "named": true - } - ] - } - }, - { - "type": "field_name", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - } - ] - } - }, - { - "type": "fixed_array_creation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "fixed_array_type", - "named": true, - "fields": { - "element": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - }, - "size": { - "multiple": false, - "required": true, - "types": [ - { - "type": "int_literal", - "named": true - }, - { - "type": "reference_expression", - "named": true - }, - { - "type": "selector_expression", - "named": true - } - ] - } - } - }, - { - "type": "for_clause", - "named": true, - "fields": { - "condition": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "initializer": { - "multiple": false, - "required": false, - "types": [ - { - "type": "simple_statement", - "named": true - } - ] - }, - "update": { - "multiple": false, - "required": false, - "types": [ - { - "type": "simple_statement", - "named": true - } - ] - } - } - }, - { - "type": "for_statement", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "for_clause", - "named": true - }, - { - "type": "range_clause", - "named": true - } - ] - } - }, - { - "type": "format_specifier", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "int_literal", - "named": true - } - ] - } - }, - { - "type": "function_declaration", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - }, - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "generic_parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "generic_parameters", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "overridable_operator", - "named": true - } - ] - }, - "receiver": { - "multiple": false, - "required": false, - "types": [ - { - "type": "receiver", - "named": true - } - ] - }, - "signature": { - "multiple": false, - "required": true, - "types": [ - { - "type": "signature", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "visibility_modifiers", - "named": true - } - ] - } - }, - { - "type": "function_literal", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "capture_list": { - "multiple": false, - "required": false, - "types": [ - { - "type": "capture_list", - "named": true - } - ] - }, - "generic_parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "generic_parameters", - "named": true - } - ] - }, - "signature": { - "multiple": false, - "required": true, - "types": [ - { - "type": "signature", - "named": true - } - ] - } - } - }, - { - "type": "function_type", - "named": true, - "fields": { - "signature": { - "multiple": false, - "required": true, - "types": [ - { - "type": "signature", - "named": true - } - ] - } - } - }, - { - "type": "generic_parameter", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "generic_parameters", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "generic_parameter", - "named": true - } - ] - } - }, - { - "type": "generic_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "qualified_type", - "named": true - }, - { - "type": "type_parameters", - "named": true - }, - { - "type": "type_reference_expression", - "named": true - } - ] - } - }, - { - "type": "global_var_declaration", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "global_var_definition", - "named": true - } - ] - } - }, - { - "type": "global_var_definition", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "go_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "goto_statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "label_reference", - "named": true - } - ] - } - }, - { - "type": "hash_statement", - "named": true, - "fields": {} - }, - { - "type": "identifier_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "mutable_identifier", - "named": true - } - ] - } - }, - { - "type": "if_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - } - ] - } - }, - { - "type": "if_expression", - "named": true, - "fields": { - "block": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "condition": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "guard": { - "multiple": false, - "required": false, - "types": [ - { - "type": "var_declaration", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "else_branch", - "named": true - } - ] - } - }, - { - "type": "import_alias", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "import_name", - "named": true - } - ] - } - }, - { - "type": "import_declaration", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "import_spec", - "named": true - } - ] - } - }, - { - "type": "import_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "import_declaration", - "named": true - } - ] - } - }, - { - "type": "import_name", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "import_path", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "import_name", - "named": true - } - ] - } - }, - { - "type": "import_spec", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "import_alias", - "named": true - }, - { - "type": "import_path", - "named": true - }, - { - "type": "selective_import_list", - "named": true - } - ] - } - }, - { - "type": "in_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "inc_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "index_expression", - "named": true, - "fields": { - "index": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "operand": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "interface_declaration", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - }, - "generic_parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "generic_parameters", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "interface_method_definition", - "named": true - }, - { - "type": "struct_field_declaration", - "named": true - }, - { - "type": "struct_field_scope", - "named": true - }, - { - "type": "visibility_modifiers", - "named": true - } - ] - } - }, - { - "type": "interface_method_definition", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - } - ] - }, - "generic_parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "generic_parameters", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "signature": { - "multiple": false, - "required": true, - "types": [ - { - "type": "signature", - "named": true - } - ] - } - } - }, - { - "type": "interpolation_closing", - "named": true, - "fields": {} - }, - { - "type": "interpreted_string_literal", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "escape_sequence", - "named": true - }, - { - "type": "string_interpolation", - "named": true - } - ] - } - }, - { - "type": "is_expression", - "named": true, - "fields": { - "left": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "mutability_modifiers", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - } - }, - { - "type": "key_value_attribute", - "named": true, - "fields": { - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "literal", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "value_attribute", - "named": true - } - ] - } - }, - { - "type": "keyed_element", - "named": true, - "fields": { - "key": { - "multiple": false, - "required": true, - "types": [ - { - "type": "field_name", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "label_definition", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "label_reference", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "labeled_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "label_definition", - "named": true - } - ] - } - }, - { - "type": "literal", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "c_string_literal", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "float_literal", - "named": true - }, - { - "type": "int_literal", - "named": true - }, - { - "type": "interpreted_string_literal", - "named": true - }, - { - "type": "nil", - "named": true - }, - { - "type": "none", - "named": true - }, - { - "type": "raw_string_literal", - "named": true - }, - { - "type": "rune_literal", - "named": true - }, - { - "type": "true", - "named": true - } - ] - } - }, - { - "type": "literal_attribute", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "literal", - "named": true - } - ] - } - }, - { - "type": "lock_expression", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "locked_variables": { - "multiple": false, - "required": false, - "types": [ - { - "type": "expression_list", - "named": true - } - ] - } - } - }, - { - "type": "map_init_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "map_keyed_element", - "named": true - } - ] - } - }, - { - "type": "map_keyed_element", - "named": true, - "fields": { - "key": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "map_type", - "named": true, - "fields": { - "key": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - } - }, - { - "type": "match_arm", - "named": true, - "fields": { - "block": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "match_expression_list", - "named": true - } - ] - } - } - }, - { - "type": "match_arm_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "match_arms", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "match_arm", - "named": true - }, - { - "type": "match_else_arm_clause", - "named": true - } - ] - } - }, - { - "type": "match_else_arm_clause", - "named": true, - "fields": { - "block": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - } - }, - { - "type": "match_expression", - "named": true, - "fields": { - "condition": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "mutable_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "match_arms", - "named": true - } - ] - } - }, - { - "type": "match_expression_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array_creation", - "named": true - }, - { - "type": "as_type_cast_expression", - "named": true - }, - { - "type": "binary_expression", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "dec_expression", - "named": true - }, - { - "type": "enum_fetch", - "named": true - }, - { - "type": "fixed_array_creation", - "named": true - }, - { - "type": "function_literal", - "named": true - }, - { - "type": "go_expression", - "named": true - }, - { - "type": "in_expression", - "named": true - }, - { - "type": "inc_expression", - "named": true - }, - { - "type": "index_expression", - "named": true - }, - { - "type": "is_expression", - "named": true - }, - { - "type": "literal", - "named": true - }, - { - "type": "match_arm_type", - "named": true - }, - { - "type": "not_in_expression", - "named": true - }, - { - "type": "not_is_expression", - "named": true - }, - { - "type": "option_propagation_expression", - "named": true - }, - { - "type": "or_block_expression", - "named": true - }, - { - "type": "parenthesized_expression", - "named": true - }, - { - "type": "pseudo_compile_time_identifier", - "named": true - }, - { - "type": "range", - "named": true - }, - { - "type": "receive_expression", - "named": true - }, - { - "type": "reference_expression", - "named": true - }, - { - "type": "result_propagation_expression", - "named": true - }, - { - "type": "selector_expression", - "named": true - }, - { - "type": "slice_expression", - "named": true - }, - { - "type": "spawn_expression", - "named": true - }, - { - "type": "unary_expression", - "named": true - } - ] - } - }, - { - "type": "module_clause", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "attributes", - "named": true - }, - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "multi_return_type", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "mutability_modifiers", - "named": true, - "fields": {} - }, - { - "type": "mutable_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "mutability_modifiers", - "named": true - } - ] - } - }, - { - "type": "mutable_identifier", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "mutability_modifiers", - "named": true - } - ] - } - }, - { - "type": "not_in_expression", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "not_is_expression", - "named": true, - "fields": { - "left": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "mutability_modifiers", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - } - }, - { - "type": "option_propagation_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "option_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "or_block", - "named": true, - "fields": { - "block": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - } - }, - { - "type": "or_block_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "or_block", - "named": true - } - ] - } - }, - { - "type": "overridable_operator", - "named": true, - "fields": {} - }, - { - "type": "parameter_declaration", - "named": true, - "fields": { - "mutability": { - "multiple": false, - "required": false, - "types": [ - { - "type": "mutability_modifiers", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - }, - "variadic": { - "multiple": false, - "required": false, - "types": [ - { - "type": "...", - "named": false - } - ] - } - } - }, - { - "type": "parameter_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "parameter_declaration", - "named": true - } - ] - } - }, - { - "type": "parenthesized_expression", - "named": true, - "fields": { - "expression": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "plain_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "anon_struct_type", - "named": true - }, - { - "type": "array_type", - "named": true - }, - { - "type": "atomic_type", - "named": true - }, - { - "type": "channel_type", - "named": true - }, - { - "type": "fixed_array_type", - "named": true - }, - { - "type": "function_type", - "named": true - }, - { - "type": "generic_type", - "named": true - }, - { - "type": "map_type", - "named": true - }, - { - "type": "multi_return_type", - "named": true - }, - { - "type": "option_type", - "named": true - }, - { - "type": "pointer_type", - "named": true - }, - { - "type": "qualified_type", - "named": true - }, - { - "type": "result_type", - "named": true - }, - { - "type": "shared_type", - "named": true - }, - { - "type": "thread_type", - "named": true - }, - { - "type": "type_reference_expression", - "named": true - }, - { - "type": "wrong_pointer_type", - "named": true - } - ] - } - }, - { - "type": "pointer_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "pseudo_compile_time_identifier", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "qualified_type", - "named": true, - "fields": { - "module": { - "multiple": false, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_reference_expression", - "named": true - } - ] - } - } - }, - { - "type": "range", - "named": true, - "fields": { - "end": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "operator": { - "multiple": false, - "required": true, - "types": [ - { - "type": "..", - "named": false - }, - { - "type": "...", - "named": false - } - ] - }, - "start": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "range_clause", - "named": true, - "fields": { - "left": { - "multiple": false, - "required": true, - "types": [ - { - "type": "var_definition_list", - "named": true - } - ] - }, - "right": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "range", - "named": true - } - ] - } - } - }, - { - "type": "raw_string_literal", - "named": true, - "fields": {} - }, - { - "type": "receive_expression", - "named": true, - "fields": { - "operand": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "operator": { - "multiple": false, - "required": true, - "types": [ - { - "type": "<-", - "named": false - } - ] - } - } - }, - { - "type": "receiver", - "named": true, - "fields": { - "mutability": { - "multiple": false, - "required": false, - "types": [ - { - "type": "mutability_modifiers", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - } - }, - { - "type": "reference_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "result_propagation_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "result_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "return_statement", - "named": true, - "fields": { - "expression_list": { - "multiple": false, - "required": false, - "types": [ - { - "type": "expression_list", - "named": true - } - ] - } - } - }, - { - "type": "select_arm", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "select_arm_statement", - "named": true - } - ] - } - }, - { - "type": "select_arm_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "expression_list", - "named": true - }, - { - "type": "send_statement", - "named": true - }, - { - "type": "var_declaration", - "named": true - } - ] - } - }, - { - "type": "select_else_arn_clause", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - { - "type": "select_expression", - "named": true, - "fields": { - "selected_variables": { - "multiple": false, - "required": false, - "types": [ - { - "type": "expression_list", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "select_arm", - "named": true - }, - { - "type": "select_else_arn_clause", - "named": true - } - ] - } - }, - { - "type": "selective_import_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - } - ] - } - }, - { - "type": "selector_expression", - "named": true, - "fields": { - "field": { - "multiple": false, - "required": true, - "types": [ - { - "type": "compile_time_selector_expression", - "named": true - }, - { - "type": "reference_expression", - "named": true - } - ] - }, - "operand": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "send_statement", - "named": true, - "fields": { - "channel": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "value": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - } - }, - { - "type": "shared_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "short_element_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "element", - "named": true - } - ] - } - }, - { - "type": "signature", - "named": true, - "fields": { - "parameters": { - "multiple": false, - "required": true, - "types": [ - { - "type": "parameter_list", - "named": true - }, - { - "type": "type_parameter_list", - "named": true - } - ] - }, - "result": { - "multiple": false, - "required": false, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - } - }, - { - "type": "simple_statement", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "assignment_statement", - "named": true - }, - { - "type": "expression_list", - "named": true - }, - { - "type": "var_declaration", - "named": true - } - ] - } - }, - { - "type": "slice_expression", - "named": true, - "fields": { - "operand": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "range", - "named": true - } - ] - } - }, - { - "type": "source_file", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "_statement", - "named": true - }, - { - "type": "_top_level_declaration", - "named": true - }, - { - "type": "import_list", - "named": true - }, - { - "type": "module_clause", - "named": true - } - ] - } - }, - { - "type": "spawn_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "special_argument_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - }, - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "spread_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - } - }, - { - "type": "sql_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "static_method_declaration", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - }, - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "generic_parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "generic_parameters", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "overridable_operator", - "named": true - } - ] - }, - "signature": { - "multiple": false, - "required": true, - "types": [ - { - "type": "signature", - "named": true - } - ] - }, - "static_receiver": { - "multiple": false, - "required": true, - "types": [ - { - "type": "static_receiver", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "visibility_modifiers", - "named": true - } - ] - } - }, - { - "type": "static_receiver", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - } - ] - } - }, - { - "type": "string_interpolation", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "format_specifier", - "named": true - }, - { - "type": "interpolation_closing", - "named": true - }, - { - "type": "interpolation_expression", - "named": true - }, - { - "type": "interpolation_opening", - "named": true - } - ] - } - }, - { - "type": "struct_declaration", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attributes", - "named": true - } - ] - }, - "generic_parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "generic_parameters", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "struct_field_declaration", - "named": true - }, - { - "type": "struct_field_scope", - "named": true - }, - { - "type": "visibility_modifiers", - "named": true - } - ] - } - }, - { - "type": "struct_field_declaration", - "named": true, - "fields": { - "attributes": { - "multiple": false, - "required": false, - "types": [ - { - "type": "attribute", - "named": true - } - ] - }, - "default_value": { - "multiple": false, - "required": false, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "embedded_definition", - "named": true - } - ] - } - }, - { - "type": "struct_field_scope", - "named": true, - "fields": {} - }, - { - "type": "thread_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "type_declaration", - "named": true, - "fields": { - "generic_parameters": { - "multiple": false, - "required": false, - "types": [ - { - "type": "generic_parameters", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "types": { - "multiple": true, - "required": true, - "types": [ - { - "type": "\n", - "named": false - }, - { - "type": "\r", - "named": false - }, - { - "type": "\r\n", - "named": false - }, - { - "type": "plain_type", - "named": true - }, - { - "type": "|", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "visibility_modifiers", - "named": true - } - ] - } - }, - { - "type": "type_initializer", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "type_initializer_body", - "named": true - } - ] - }, - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - } - }, - { - "type": "type_initializer_body", - "named": true, - "fields": { - "element_list": { - "multiple": false, - "required": false, - "types": [ - { - "type": "element_list", - "named": true - } - ] - }, - "short_element_list": { - "multiple": false, - "required": false, - "types": [ - { - "type": "short_element_list", - "named": true - } - ] - } - } - }, - { - "type": "type_parameter_declaration", - "named": true, - "fields": { - "type": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - }, - "variadic": { - "multiple": false, - "required": false, - "types": [ - { - "type": "...", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "mutability_modifiers", - "named": true - } - ] - } - }, - { - "type": "type_parameter_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "type_parameter_declaration", - "named": true - } - ] - } - }, - { - "type": "type_parameters", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "type_reference_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - }, - { - "type": "unary_expression", - "named": true, - "fields": { - "operand": { - "multiple": false, - "required": true, - "types": [ - { - "type": "_expression", - "named": true - } - ] - }, - "operator": { - "multiple": false, - "required": true, - "types": [ - { - "type": "!", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "~", - "named": false - } - ] - } - } - }, - { - "type": "unsafe_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - } - }, - { - "type": "value_attribute", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "reference_expression", - "named": true - } - ] - } - } - }, - { - "type": "var_declaration", - "named": true, - "fields": { - "expression_list": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression_list", - "named": true - } - ] - }, - "var_list": { - "multiple": false, - "required": true, - "types": [ - { - "type": "expression_list", - "named": true - }, - { - "type": "identifier_list", - "named": true - } - ] - } - } - }, - { - "type": "var_definition", - "named": true, - "fields": { - "modifiers": { - "multiple": false, - "required": false, - "types": [ - { - "type": "mut", - "named": false - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - } - ] - } - } - }, - { - "type": "var_definition_list", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "var_definition", - "named": true - } - ] - } - }, - { - "type": "visibility_modifiers", - "named": true, - "fields": {} - }, - { - "type": "wrong_pointer_type", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ - { - "type": "plain_type", - "named": true - } - ] - } - }, - { - "type": "\n", - "named": false - }, - { - "type": "\r", - "named": false - }, - { - "type": "\r\n", - "named": false - }, - { - "type": "!", - "named": false - }, - { - "type": "!=", - "named": false - }, - { - "type": "!in", - "named": false - }, - { - "type": "!is", - "named": false - }, - { - "type": "#", - "named": false - }, - { - "type": "#[", - "named": false - }, - { - "type": "$", - "named": false - }, - { - "type": "$else", - "named": false - }, - { - "type": "$for", - "named": false - }, - { - "type": "$if", - "named": false - }, - { - "type": "%", - "named": false - }, - { - "type": "%=", - "named": false - }, - { - "type": "&", - "named": false - }, - { - "type": "&&", - "named": false - }, - { - "type": "&=", - "named": false - }, - { - "type": "&^", - "named": false - }, - { - "type": "&^=", - "named": false - }, - { - "type": "(", - "named": false - }, - { - "type": ")", - "named": false - }, - { - "type": "*", - "named": false - }, - { - "type": "*=", - "named": false - }, - { - "type": "+", - "named": false - }, - { - "type": "++", - "named": false - }, - { - "type": "+=", - "named": false - }, - { - "type": ",", - "named": false - }, - { - "type": "-", - "named": false - }, - { - "type": "--", - "named": false - }, - { - "type": "-=", - "named": false - }, - { - "type": ".", - "named": false - }, - { - "type": "..", - "named": false - }, - { - "type": "...", - "named": false - }, - { - "type": "/", - "named": false - }, - { - "type": "/=", - "named": false - }, - { - "type": "0", - "named": false - }, - { - "type": ":", - "named": false - }, - { - "type": ":=", - "named": false - }, - { - "type": ";", - "named": false - }, - { - "type": "<", - "named": false - }, - { - "type": "<-", - "named": false - }, - { - "type": "<<", - "named": false - }, - { - "type": "<<=", - "named": false - }, - { - "type": "<=", - "named": false - }, - { - "type": "=", - "named": false - }, - { - "type": "==", - "named": false - }, - { - "type": ">", - "named": false - }, - { - "type": ">=", - "named": false - }, - { - "type": ">>", - "named": false - }, - { - "type": ">>=", - "named": false - }, - { - "type": ">>>", - "named": false - }, - { - "type": ">>>=", - "named": false - }, - { - "type": "?", - "named": false - }, - { - "type": "?.", - "named": false - }, - { - "type": "@", - "named": false - }, - { - "type": "@[", - "named": false - }, - { - "type": "[", - "named": false - }, - { - "type": "]", - "named": false - }, - { - "type": "^", - "named": false - }, - { - "type": "^=", - "named": false - }, - { - "type": "__global", - "named": false - }, - { - "type": "as", - "named": false - }, - { - "type": "asm", - "named": false - }, - { - "type": "assert", - "named": false - }, - { - "type": "atomic", - "named": false - }, - { - "type": "break", - "named": false - }, - { - "type": "chan", - "named": false - }, - { - "type": "comment", - "named": true - }, - { - "type": "const", - "named": false - }, - { - "type": "continue", - "named": false - }, - { - "type": "defer", - "named": false - }, - { - "type": "else", - "named": false - }, - { - "type": "enum", - "named": false - }, - { - "type": "escape_sequence", - "named": true - }, - { - "type": "false", - "named": true - }, - { - "type": "float_literal", - "named": true - }, - { - "type": "fn", - "named": false - }, - { - "type": "for", - "named": false - }, - { - "type": "go", - "named": false - }, - { - "type": "goto", - "named": false - }, - { - "type": "identifier", - "named": true - }, - { - "type": "if", - "named": false - }, - { - "type": "import", - "named": false - }, - { - "type": "in", - "named": false - }, - { - "type": "int_literal", - "named": true - }, - { - "type": "interface", - "named": false - }, - { - "type": "interpolation_opening", - "named": true - }, - { - "type": "is", - "named": false - }, - { - "type": "json.decode", - "named": false - }, - { - "type": "lock", - "named": false - }, - { - "type": "map[", - "named": false - }, - { - "type": "match", - "named": false - }, - { - "type": "module", - "named": false - }, - { - "type": "mut", - "named": false - }, - { - "type": "nil", - "named": true - }, - { - "type": "none", - "named": true - }, - { - "type": "or", - "named": false - }, - { - "type": "pub", - "named": false - }, - { - "type": "return", - "named": false - }, - { - "type": "rlock", - "named": false - }, - { - "type": "rune_literal", - "named": true - }, - { - "type": "select", - "named": false - }, - { - "type": "shared", - "named": false - }, - { - "type": "spawn", - "named": false - }, - { - "type": "sql", - "named": false - }, - { - "type": "static", - "named": false - }, - { - "type": "struct", - "named": false - }, - { - "type": "thread", - "named": false - }, - { - "type": "true", - "named": true - }, - { - "type": "type", - "named": false - }, - { - "type": "union", - "named": false - }, - { - "type": "unsafe", - "named": false - }, - { - "type": "volatile", - "named": false - }, - { - "type": "{", - "named": false - }, - { - "type": "|", - "named": false - }, - { - "type": "|=", - "named": false - }, - { - "type": "||", - "named": false - }, - { - "type": "}", - "named": false - }, - { - "type": "~", - "named": false - } -] \ No newline at end of file diff --git a/tree_sitter_v/src/parser.c b/tree_sitter_v/src/parser.c deleted file mode 100644 index abcc8c73..00000000 --- a/tree_sitter_v/src/parser.c +++ /dev/null @@ -1,308471 +0,0 @@ -#include "tree_sitter/parser.h" - -#if defined(__GNUC__) || defined(__clang__) -#pragma GCC diagnostic push -#pragma GCC diagnostic ignored "-Wmissing-field-initializers" -#endif - -#ifdef _MSC_VER -#pragma optimize("", off) -#elif defined(__clang__) -#pragma clang optimize off -#elif defined(__GNUC__) -#pragma GCC optimize ("O0") -#endif - -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 4735 -#define LARGE_STATE_COUNT 1598 -#define SYMBOL_COUNT 352 -#define ALIAS_COUNT 1 -#define TOKEN_COUNT 138 -#define EXTERNAL_TOKEN_COUNT 0 -#define FIELD_COUNT 46 -#define MAX_ALIAS_SEQUENCE_LENGTH 9 -#define PRODUCTION_ID_COUNT 148 - -enum ts_symbol_identifiers { - sym_identifier = 1, - anon_sym_LF = 2, - anon_sym_CR = 3, - anon_sym_CR_LF = 4, - sym_comment = 5, - anon_sym_module = 6, - anon_sym_import = 7, - anon_sym_SEMI = 8, - anon_sym_DOT = 9, - anon_sym_as = 10, - anon_sym_LBRACE = 11, - anon_sym_COMMA = 12, - anon_sym_RBRACE = 13, - anon_sym_const = 14, - anon_sym_LPAREN = 15, - anon_sym_RPAREN = 16, - anon_sym_EQ = 17, - anon_sym___global = 18, - anon_sym_type = 19, - anon_sym_PIPE = 20, - anon_sym_fn = 21, - anon_sym_PLUS = 22, - anon_sym_DASH = 23, - anon_sym_STAR = 24, - anon_sym_SLASH = 25, - anon_sym_PERCENT = 26, - anon_sym_LT = 27, - anon_sym_GT = 28, - anon_sym_EQ_EQ = 29, - anon_sym_BANG_EQ = 30, - anon_sym_LT_EQ = 31, - anon_sym_GT_EQ = 32, - anon_sym_DOT_DOT_DOT = 33, - anon_sym_LBRACK = 34, - anon_sym_LT2 = 35, - anon_sym_RBRACK = 36, - anon_sym_struct = 37, - anon_sym_union = 38, - anon_sym_pub = 39, - anon_sym_mut = 40, - anon_sym_COLON = 41, - anon_sym_enum = 42, - anon_sym_interface = 43, - anon_sym_PLUS_PLUS = 44, - anon_sym_DASH_DASH = 45, - anon_sym_QMARK = 46, - anon_sym_BANG = 47, - anon_sym_go = 48, - anon_sym_spawn = 49, - anon_sym_json_DOTdecode = 50, - anon_sym_LBRACK2 = 51, - anon_sym_TILDE = 52, - anon_sym_CARET = 53, - anon_sym_AMP = 54, - anon_sym_LT_DASH = 55, - anon_sym_LT_LT = 56, - anon_sym_GT_GT = 57, - anon_sym_GT_GT_GT = 58, - anon_sym_AMP_CARET = 59, - anon_sym_AMP_AMP = 60, - anon_sym_PIPE_PIPE = 61, - anon_sym_DOLLAR = 62, - anon_sym_or = 63, - sym_escape_sequence = 64, - sym_none = 65, - sym_true = 66, - sym_false = 67, - sym_nil = 68, - anon_sym_QMARK_DOT = 69, - anon_sym_POUND_LBRACK = 70, - anon_sym_if = 71, - anon_sym_else = 72, - anon_sym_DOLLARif = 73, - anon_sym_DOLLARelse = 74, - anon_sym_is = 75, - anon_sym_BANGis = 76, - anon_sym_in = 77, - anon_sym_BANGin = 78, - anon_sym_match = 79, - anon_sym_select = 80, - anon_sym_STAR_EQ = 81, - anon_sym_SLASH_EQ = 82, - anon_sym_PERCENT_EQ = 83, - anon_sym_LT_LT_EQ = 84, - anon_sym_GT_GT_EQ = 85, - anon_sym_GT_GT_GT_EQ = 86, - anon_sym_AMP_EQ = 87, - anon_sym_AMP_CARET_EQ = 88, - anon_sym_PLUS_EQ = 89, - anon_sym_DASH_EQ = 90, - anon_sym_PIPE_EQ = 91, - anon_sym_CARET_EQ = 92, - anon_sym_COLON_EQ = 93, - anon_sym_lock = 94, - anon_sym_rlock = 95, - anon_sym_unsafe = 96, - anon_sym_sql = 97, - sym_int_literal = 98, - sym_float_literal = 99, - sym_rune_literal = 100, - aux_sym_c_string_literal_token1 = 101, - aux_sym_c_string_literal_token2 = 102, - aux_sym_raw_string_literal_token1 = 103, - aux_sym_raw_string_literal_token2 = 104, - aux_sym_format_specifier_token1 = 105, - aux_sym_format_specifier_token2 = 106, - anon_sym_0 = 107, - anon_sym_AT = 108, - aux_sym_pseudo_compile_time_identifier_token1 = 109, - anon_sym_static = 110, - anon_sym_volatile = 111, - anon_sym_shared = 112, - anon_sym_map_LBRACK = 113, - anon_sym_chan = 114, - anon_sym_thread = 115, - anon_sym_atomic = 116, - anon_sym_assert = 117, - anon_sym_defer = 118, - anon_sym_goto = 119, - anon_sym_break = 120, - anon_sym_continue = 121, - anon_sym_return = 122, - anon_sym_DOLLARfor = 123, - anon_sym_for = 124, - anon_sym_DOT_DOT = 125, - anon_sym_POUND = 126, - aux_sym_hash_statement_token1 = 127, - anon_sym_asm = 128, - aux_sym__content_block_token1 = 129, - anon_sym_AT_LBRACK = 130, - sym___dolcbr = 131, - sym___double_quote = 132, - sym___single_quote = 133, - sym___c_double_quote = 134, - sym___c_single_quote = 135, - sym___r_double_quote = 136, - sym___r_single_quote = 137, - sym_source_file = 138, - sym_module_clause = 139, - sym_import_list = 140, - sym_import_declaration = 141, - sym_import_spec = 142, - sym_import_path = 143, - sym_import_name = 144, - sym_import_alias = 145, - sym_selective_import_list = 146, - sym_const_declaration = 147, - sym_const_definition = 148, - sym_global_var_declaration = 149, - sym_global_var_definition = 150, - sym__global_var_value = 151, - sym_type_declaration = 152, - sym__type_union_list = 153, - sym_function_declaration = 154, - sym_static_method_declaration = 155, - sym_static_receiver = 156, - sym__function_name = 157, - sym_overridable_operator = 158, - sym_receiver = 159, - sym_signature = 160, - sym_parameter_list = 161, - sym_parameter_declaration = 162, - sym_type_parameter_list = 163, - sym_type_parameter_declaration = 164, - sym_generic_parameters = 165, - sym_generic_parameter = 166, - sym_struct_declaration = 167, - sym__struct_body = 168, - sym_struct_field_scope = 169, - sym_struct_field_declaration = 170, - sym__struct_field_definition = 171, - sym_embedded_definition = 172, - sym_enum_declaration = 173, - sym_enum_backed_type = 174, - sym__enum_body = 175, - sym_enum_field_definition = 176, - sym_interface_declaration = 177, - sym__interface_body = 178, - sym_interface_method_definition = 179, - sym__expression = 180, - sym__expression_without_blocks = 181, - sym__expression_with_blocks = 182, - sym_strictly_expression_list = 183, - sym_inc_expression = 184, - sym_dec_expression = 185, - sym_or_block_expression = 186, - sym_option_propagation_expression = 187, - sym_result_propagation_expression = 188, - sym_anon_struct_value_expression = 189, - sym_go_expression = 190, - sym_spawn_expression = 191, - sym_parenthesized_expression = 192, - sym_call_expression = 193, - sym_type_parameters = 194, - sym_argument_list = 195, - sym_argument = 196, - sym_special_argument_list = 197, - sym_type_initializer = 198, - sym_type_initializer_body = 199, - sym_element_list = 200, - sym_short_element_list = 201, - sym_element = 202, - sym_keyed_element = 203, - sym_field_name = 204, - sym_function_literal = 205, - sym_capture_list = 206, - sym_capture = 207, - sym_reference_expression = 208, - sym_type_reference_expression = 209, - sym_unary_expression = 210, - sym_receive_expression = 211, - sym_binary_expression = 212, - sym_as_type_cast_expression = 213, - sym_compile_time_selector_expression = 214, - sym_or_block = 215, - sym__max_group = 216, - sym_literal = 217, - sym_spread_expression = 218, - sym_map_init_expression = 219, - sym_map_keyed_element = 220, - sym_array_creation = 221, - sym_fixed_array_creation = 222, - sym_selector_expression = 223, - sym_index_expression = 224, - sym_slice_expression = 225, - sym_if_expression = 226, - sym_else_branch = 227, - sym_compile_time_if_expression = 228, - sym_is_expression = 229, - sym_not_is_expression = 230, - sym_in_expression = 231, - sym_not_in_expression = 232, - sym_enum_fetch = 233, - sym_match_expression = 234, - sym_match_arms = 235, - sym_match_arm = 236, - sym_match_expression_list = 237, - sym_match_arm_type = 238, - sym_match_else_arm_clause = 239, - sym_select_expression = 240, - sym_select_arm = 241, - sym_select_arm_statement = 242, - sym__select_arm_assignment_statement = 243, - sym_select_var_declaration = 244, - sym_select_else_arn_clause = 245, - sym_lock_expression = 246, - sym_unsafe_expression = 247, - sym_sql_expression = 248, - sym_c_string_literal = 249, - sym_raw_string_literal = 250, - sym_interpreted_string_literal = 251, - sym_string_interpolation = 252, - sym_format_specifier = 253, - sym_pseudo_compile_time_identifier = 254, - sym_visibility_modifiers = 255, - sym_mutability_modifiers = 256, - sym_mutable_identifier = 257, - sym_mutable_expression = 258, - sym_identifier_list = 259, - sym_expression_list = 260, - sym_expression_without_blocks_list = 261, - sym_plain_type = 262, - sym__plain_type_without_special = 263, - sym_anon_struct_type = 264, - sym_multi_return_type = 265, - sym_result_type = 266, - sym_option_type = 267, - sym_qualified_type = 268, - sym_fixed_array_type = 269, - sym_array_type = 270, - sym_pointer_type = 271, - sym_wrong_pointer_type = 272, - sym_map_type = 273, - sym_channel_type = 274, - sym_shared_type = 275, - sym_thread_type = 276, - sym_atomic_type = 277, - sym_generic_type = 278, - sym_function_type = 279, - sym__statement_list = 280, - sym__statement = 281, - sym_simple_statement = 282, - sym_assert_statement = 283, - sym_append_statement = 284, - sym_send_statement = 285, - sym_var_declaration = 286, - sym_var_definition_list = 287, - sym_var_definition = 288, - sym_assignment_statement = 289, - sym_block = 290, - sym_defer_statement = 291, - sym_label_reference = 292, - sym_goto_statement = 293, - sym_break_statement = 294, - sym_continue_statement = 295, - sym_return_statement = 296, - sym_label_definition = 297, - sym_labeled_statement = 298, - sym_empty_labeled_statement = 299, - sym_compile_time_for_statement = 300, - sym_for_statement = 301, - sym_range_clause = 302, - sym_for_clause = 303, - sym__definite_range = 304, - sym_range = 305, - sym_hash_statement = 306, - sym_asm_statement = 307, - sym__content_block = 308, - sym_attributes = 309, - sym_attribute = 310, - sym_attribute_expression = 311, - sym_if_attribute = 312, - sym__plain_attribute = 313, - sym_literal_attribute = 314, - sym_value_attribute = 315, - sym_key_value_attribute = 316, - sym___rcbr = 317, - aux_sym_source_file_repeat1 = 318, - aux_sym_import_list_repeat1 = 319, - aux_sym_import_path_repeat1 = 320, - aux_sym_selective_import_list_repeat1 = 321, - aux_sym_const_declaration_repeat1 = 322, - aux_sym_global_var_declaration_repeat1 = 323, - aux_sym__type_union_list_repeat1 = 324, - aux_sym_parameter_list_repeat1 = 325, - aux_sym_type_parameter_list_repeat1 = 326, - aux_sym_generic_parameters_repeat1 = 327, - aux_sym__struct_body_repeat1 = 328, - aux_sym__enum_body_repeat1 = 329, - aux_sym__interface_body_repeat1 = 330, - aux_sym_strictly_expression_list_repeat1 = 331, - aux_sym_type_parameters_repeat1 = 332, - aux_sym_argument_list_repeat1 = 333, - aux_sym_element_list_repeat1 = 334, - aux_sym_short_element_list_repeat1 = 335, - aux_sym_capture_list_repeat1 = 336, - aux_sym_map_init_expression_repeat1 = 337, - aux_sym__array_repeat1 = 338, - aux_sym_match_arms_repeat1 = 339, - aux_sym_match_expression_list_repeat1 = 340, - aux_sym_select_expression_repeat1 = 341, - aux_sym_c_string_literal_repeat1 = 342, - aux_sym_c_string_literal_repeat2 = 343, - aux_sym_raw_string_literal_repeat1 = 344, - aux_sym_raw_string_literal_repeat2 = 345, - aux_sym_identifier_list_repeat1 = 346, - aux_sym_expression_without_blocks_list_repeat1 = 347, - aux_sym__statement_list_repeat1 = 348, - aux_sym_var_definition_list_repeat1 = 349, - aux_sym_attributes_repeat1 = 350, - aux_sym_attribute_repeat1 = 351, - alias_sym_interpolation_expression = 352, -}; - -static const char * const ts_symbol_names[] = { - [ts_builtin_sym_end] = "end", - [sym_identifier] = "identifier", - [anon_sym_LF] = "\n", - [anon_sym_CR] = "\r", - [anon_sym_CR_LF] = "\r\n", - [sym_comment] = "comment", - [anon_sym_module] = "module", - [anon_sym_import] = "import", - [anon_sym_SEMI] = ";", - [anon_sym_DOT] = ".", - [anon_sym_as] = "as", - [anon_sym_LBRACE] = "{", - [anon_sym_COMMA] = ",", - [anon_sym_RBRACE] = "}", - [anon_sym_const] = "const", - [anon_sym_LPAREN] = "(", - [anon_sym_RPAREN] = ")", - [anon_sym_EQ] = "=", - [anon_sym___global] = "__global", - [anon_sym_type] = "type", - [anon_sym_PIPE] = "|", - [anon_sym_fn] = "fn", - [anon_sym_PLUS] = "+", - [anon_sym_DASH] = "-", - [anon_sym_STAR] = "*", - [anon_sym_SLASH] = "/", - [anon_sym_PERCENT] = "%", - [anon_sym_LT] = "<", - [anon_sym_GT] = ">", - [anon_sym_EQ_EQ] = "==", - [anon_sym_BANG_EQ] = "!=", - [anon_sym_LT_EQ] = "<=", - [anon_sym_GT_EQ] = ">=", - [anon_sym_DOT_DOT_DOT] = "...", - [anon_sym_LBRACK] = "[", - [anon_sym_LT2] = "<", - [anon_sym_RBRACK] = "]", - [anon_sym_struct] = "struct", - [anon_sym_union] = "union", - [anon_sym_pub] = "pub", - [anon_sym_mut] = "mut", - [anon_sym_COLON] = ":", - [anon_sym_enum] = "enum", - [anon_sym_interface] = "interface", - [anon_sym_PLUS_PLUS] = "++", - [anon_sym_DASH_DASH] = "--", - [anon_sym_QMARK] = "\?", - [anon_sym_BANG] = "!", - [anon_sym_go] = "go", - [anon_sym_spawn] = "spawn", - [anon_sym_json_DOTdecode] = "json.decode", - [anon_sym_LBRACK2] = "[", - [anon_sym_TILDE] = "~", - [anon_sym_CARET] = "^", - [anon_sym_AMP] = "&", - [anon_sym_LT_DASH] = "<-", - [anon_sym_LT_LT] = "<<", - [anon_sym_GT_GT] = ">>", - [anon_sym_GT_GT_GT] = ">>>", - [anon_sym_AMP_CARET] = "&^", - [anon_sym_AMP_AMP] = "&&", - [anon_sym_PIPE_PIPE] = "||", - [anon_sym_DOLLAR] = "$", - [anon_sym_or] = "or", - [sym_escape_sequence] = "escape_sequence", - [sym_none] = "none", - [sym_true] = "true", - [sym_false] = "false", - [sym_nil] = "nil", - [anon_sym_QMARK_DOT] = "\?.", - [anon_sym_POUND_LBRACK] = "#[", - [anon_sym_if] = "if", - [anon_sym_else] = "else", - [anon_sym_DOLLARif] = "$if", - [anon_sym_DOLLARelse] = "$else", - [anon_sym_is] = "is", - [anon_sym_BANGis] = "!is", - [anon_sym_in] = "in", - [anon_sym_BANGin] = "!in", - [anon_sym_match] = "match", - [anon_sym_select] = "select", - [anon_sym_STAR_EQ] = "*=", - [anon_sym_SLASH_EQ] = "/=", - [anon_sym_PERCENT_EQ] = "%=", - [anon_sym_LT_LT_EQ] = "<<=", - [anon_sym_GT_GT_EQ] = ">>=", - [anon_sym_GT_GT_GT_EQ] = ">>>=", - [anon_sym_AMP_EQ] = "&=", - [anon_sym_AMP_CARET_EQ] = "&^=", - [anon_sym_PLUS_EQ] = "+=", - [anon_sym_DASH_EQ] = "-=", - [anon_sym_PIPE_EQ] = "|=", - [anon_sym_CARET_EQ] = "^=", - [anon_sym_COLON_EQ] = ":=", - [anon_sym_lock] = "lock", - [anon_sym_rlock] = "rlock", - [anon_sym_unsafe] = "unsafe", - [anon_sym_sql] = "sql", - [sym_int_literal] = "int_literal", - [sym_float_literal] = "float_literal", - [sym_rune_literal] = "rune_literal", - [aux_sym_c_string_literal_token1] = "c_string_literal_token1", - [aux_sym_c_string_literal_token2] = "c_string_literal_token2", - [aux_sym_raw_string_literal_token1] = "raw_string_literal_token1", - [aux_sym_raw_string_literal_token2] = "raw_string_literal_token2", - [aux_sym_format_specifier_token1] = "format_specifier_token1", - [aux_sym_format_specifier_token2] = "format_specifier_token2", - [anon_sym_0] = "0", - [anon_sym_AT] = "@", - [aux_sym_pseudo_compile_time_identifier_token1] = "identifier", - [anon_sym_static] = "static", - [anon_sym_volatile] = "volatile", - [anon_sym_shared] = "shared", - [anon_sym_map_LBRACK] = "map[", - [anon_sym_chan] = "chan", - [anon_sym_thread] = "thread", - [anon_sym_atomic] = "atomic", - [anon_sym_assert] = "assert", - [anon_sym_defer] = "defer", - [anon_sym_goto] = "goto", - [anon_sym_break] = "break", - [anon_sym_continue] = "continue", - [anon_sym_return] = "return", - [anon_sym_DOLLARfor] = "$for", - [anon_sym_for] = "for", - [anon_sym_DOT_DOT] = "..", - [anon_sym_POUND] = "#", - [aux_sym_hash_statement_token1] = "hash_statement_token1", - [anon_sym_asm] = "asm", - [aux_sym__content_block_token1] = "_content_block_token1", - [anon_sym_AT_LBRACK] = "@[", - [sym___dolcbr] = "interpolation_opening", - [sym___double_quote] = "__double_quote", - [sym___single_quote] = "__single_quote", - [sym___c_double_quote] = "__c_double_quote", - [sym___c_single_quote] = "__c_single_quote", - [sym___r_double_quote] = "__r_double_quote", - [sym___r_single_quote] = "__r_single_quote", - [sym_source_file] = "source_file", - [sym_module_clause] = "module_clause", - [sym_import_list] = "import_list", - [sym_import_declaration] = "import_declaration", - [sym_import_spec] = "import_spec", - [sym_import_path] = "import_path", - [sym_import_name] = "import_name", - [sym_import_alias] = "import_alias", - [sym_selective_import_list] = "selective_import_list", - [sym_const_declaration] = "const_declaration", - [sym_const_definition] = "const_definition", - [sym_global_var_declaration] = "global_var_declaration", - [sym_global_var_definition] = "global_var_definition", - [sym__global_var_value] = "_global_var_value", - [sym_type_declaration] = "type_declaration", - [sym__type_union_list] = "_type_union_list", - [sym_function_declaration] = "function_declaration", - [sym_static_method_declaration] = "static_method_declaration", - [sym_static_receiver] = "static_receiver", - [sym__function_name] = "_function_name", - [sym_overridable_operator] = "overridable_operator", - [sym_receiver] = "receiver", - [sym_signature] = "signature", - [sym_parameter_list] = "parameter_list", - [sym_parameter_declaration] = "parameter_declaration", - [sym_type_parameter_list] = "type_parameter_list", - [sym_type_parameter_declaration] = "type_parameter_declaration", - [sym_generic_parameters] = "generic_parameters", - [sym_generic_parameter] = "generic_parameter", - [sym_struct_declaration] = "struct_declaration", - [sym__struct_body] = "_struct_body", - [sym_struct_field_scope] = "struct_field_scope", - [sym_struct_field_declaration] = "struct_field_declaration", - [sym__struct_field_definition] = "_struct_field_definition", - [sym_embedded_definition] = "embedded_definition", - [sym_enum_declaration] = "enum_declaration", - [sym_enum_backed_type] = "enum_backed_type", - [sym__enum_body] = "_enum_body", - [sym_enum_field_definition] = "enum_field_definition", - [sym_interface_declaration] = "interface_declaration", - [sym__interface_body] = "_interface_body", - [sym_interface_method_definition] = "interface_method_definition", - [sym__expression] = "_expression", - [sym__expression_without_blocks] = "_expression_without_blocks", - [sym__expression_with_blocks] = "_expression_with_blocks", - [sym_strictly_expression_list] = "expression_list", - [sym_inc_expression] = "inc_expression", - [sym_dec_expression] = "dec_expression", - [sym_or_block_expression] = "or_block_expression", - [sym_option_propagation_expression] = "option_propagation_expression", - [sym_result_propagation_expression] = "result_propagation_expression", - [sym_anon_struct_value_expression] = "anon_struct_value_expression", - [sym_go_expression] = "go_expression", - [sym_spawn_expression] = "spawn_expression", - [sym_parenthesized_expression] = "parenthesized_expression", - [sym_call_expression] = "call_expression", - [sym_type_parameters] = "type_parameters", - [sym_argument_list] = "argument_list", - [sym_argument] = "argument", - [sym_special_argument_list] = "special_argument_list", - [sym_type_initializer] = "type_initializer", - [sym_type_initializer_body] = "type_initializer_body", - [sym_element_list] = "element_list", - [sym_short_element_list] = "short_element_list", - [sym_element] = "element", - [sym_keyed_element] = "keyed_element", - [sym_field_name] = "field_name", - [sym_function_literal] = "function_literal", - [sym_capture_list] = "capture_list", - [sym_capture] = "capture", - [sym_reference_expression] = "reference_expression", - [sym_type_reference_expression] = "type_reference_expression", - [sym_unary_expression] = "unary_expression", - [sym_receive_expression] = "receive_expression", - [sym_binary_expression] = "binary_expression", - [sym_as_type_cast_expression] = "as_type_cast_expression", - [sym_compile_time_selector_expression] = "compile_time_selector_expression", - [sym_or_block] = "or_block", - [sym__max_group] = "_max_group", - [sym_literal] = "literal", - [sym_spread_expression] = "spread_expression", - [sym_map_init_expression] = "map_init_expression", - [sym_map_keyed_element] = "map_keyed_element", - [sym_array_creation] = "array_creation", - [sym_fixed_array_creation] = "fixed_array_creation", - [sym_selector_expression] = "selector_expression", - [sym_index_expression] = "index_expression", - [sym_slice_expression] = "slice_expression", - [sym_if_expression] = "if_expression", - [sym_else_branch] = "else_branch", - [sym_compile_time_if_expression] = "compile_time_if_expression", - [sym_is_expression] = "is_expression", - [sym_not_is_expression] = "not_is_expression", - [sym_in_expression] = "in_expression", - [sym_not_in_expression] = "not_in_expression", - [sym_enum_fetch] = "enum_fetch", - [sym_match_expression] = "match_expression", - [sym_match_arms] = "match_arms", - [sym_match_arm] = "match_arm", - [sym_match_expression_list] = "match_expression_list", - [sym_match_arm_type] = "match_arm_type", - [sym_match_else_arm_clause] = "match_else_arm_clause", - [sym_select_expression] = "select_expression", - [sym_select_arm] = "select_arm", - [sym_select_arm_statement] = "select_arm_statement", - [sym__select_arm_assignment_statement] = "_select_arm_assignment_statement", - [sym_select_var_declaration] = "var_declaration", - [sym_select_else_arn_clause] = "select_else_arn_clause", - [sym_lock_expression] = "lock_expression", - [sym_unsafe_expression] = "unsafe_expression", - [sym_sql_expression] = "sql_expression", - [sym_c_string_literal] = "c_string_literal", - [sym_raw_string_literal] = "raw_string_literal", - [sym_interpreted_string_literal] = "interpreted_string_literal", - [sym_string_interpolation] = "string_interpolation", - [sym_format_specifier] = "format_specifier", - [sym_pseudo_compile_time_identifier] = "pseudo_compile_time_identifier", - [sym_visibility_modifiers] = "visibility_modifiers", - [sym_mutability_modifiers] = "mutability_modifiers", - [sym_mutable_identifier] = "mutable_identifier", - [sym_mutable_expression] = "mutable_expression", - [sym_identifier_list] = "identifier_list", - [sym_expression_list] = "expression_list", - [sym_expression_without_blocks_list] = "expression_list", - [sym_plain_type] = "plain_type", - [sym__plain_type_without_special] = "_plain_type_without_special", - [sym_anon_struct_type] = "anon_struct_type", - [sym_multi_return_type] = "multi_return_type", - [sym_result_type] = "result_type", - [sym_option_type] = "option_type", - [sym_qualified_type] = "qualified_type", - [sym_fixed_array_type] = "fixed_array_type", - [sym_array_type] = "array_type", - [sym_pointer_type] = "pointer_type", - [sym_wrong_pointer_type] = "wrong_pointer_type", - [sym_map_type] = "map_type", - [sym_channel_type] = "channel_type", - [sym_shared_type] = "shared_type", - [sym_thread_type] = "thread_type", - [sym_atomic_type] = "atomic_type", - [sym_generic_type] = "generic_type", - [sym_function_type] = "function_type", - [sym__statement_list] = "_statement_list", - [sym__statement] = "_statement", - [sym_simple_statement] = "simple_statement", - [sym_assert_statement] = "assert_statement", - [sym_append_statement] = "append_statement", - [sym_send_statement] = "send_statement", - [sym_var_declaration] = "var_declaration", - [sym_var_definition_list] = "var_definition_list", - [sym_var_definition] = "var_definition", - [sym_assignment_statement] = "assignment_statement", - [sym_block] = "block", - [sym_defer_statement] = "defer_statement", - [sym_label_reference] = "label_reference", - [sym_goto_statement] = "goto_statement", - [sym_break_statement] = "break_statement", - [sym_continue_statement] = "continue_statement", - [sym_return_statement] = "return_statement", - [sym_label_definition] = "label_definition", - [sym_labeled_statement] = "labeled_statement", - [sym_empty_labeled_statement] = "labeled_statement", - [sym_compile_time_for_statement] = "compile_time_for_statement", - [sym_for_statement] = "for_statement", - [sym_range_clause] = "range_clause", - [sym_for_clause] = "for_clause", - [sym__definite_range] = "range", - [sym_range] = "range", - [sym_hash_statement] = "hash_statement", - [sym_asm_statement] = "asm_statement", - [sym__content_block] = "_content_block", - [sym_attributes] = "attributes", - [sym_attribute] = "attribute", - [sym_attribute_expression] = "attribute_expression", - [sym_if_attribute] = "if_attribute", - [sym__plain_attribute] = "_plain_attribute", - [sym_literal_attribute] = "literal_attribute", - [sym_value_attribute] = "value_attribute", - [sym_key_value_attribute] = "key_value_attribute", - [sym___rcbr] = "interpolation_closing", - [aux_sym_source_file_repeat1] = "source_file_repeat1", - [aux_sym_import_list_repeat1] = "import_list_repeat1", - [aux_sym_import_path_repeat1] = "import_path_repeat1", - [aux_sym_selective_import_list_repeat1] = "selective_import_list_repeat1", - [aux_sym_const_declaration_repeat1] = "const_declaration_repeat1", - [aux_sym_global_var_declaration_repeat1] = "global_var_declaration_repeat1", - [aux_sym__type_union_list_repeat1] = "_type_union_list_repeat1", - [aux_sym_parameter_list_repeat1] = "parameter_list_repeat1", - [aux_sym_type_parameter_list_repeat1] = "type_parameter_list_repeat1", - [aux_sym_generic_parameters_repeat1] = "generic_parameters_repeat1", - [aux_sym__struct_body_repeat1] = "_struct_body_repeat1", - [aux_sym__enum_body_repeat1] = "_enum_body_repeat1", - [aux_sym__interface_body_repeat1] = "_interface_body_repeat1", - [aux_sym_strictly_expression_list_repeat1] = "strictly_expression_list_repeat1", - [aux_sym_type_parameters_repeat1] = "type_parameters_repeat1", - [aux_sym_argument_list_repeat1] = "argument_list_repeat1", - [aux_sym_element_list_repeat1] = "element_list_repeat1", - [aux_sym_short_element_list_repeat1] = "short_element_list_repeat1", - [aux_sym_capture_list_repeat1] = "capture_list_repeat1", - [aux_sym_map_init_expression_repeat1] = "map_init_expression_repeat1", - [aux_sym__array_repeat1] = "_array_repeat1", - [aux_sym_match_arms_repeat1] = "match_arms_repeat1", - [aux_sym_match_expression_list_repeat1] = "match_expression_list_repeat1", - [aux_sym_select_expression_repeat1] = "select_expression_repeat1", - [aux_sym_c_string_literal_repeat1] = "c_string_literal_repeat1", - [aux_sym_c_string_literal_repeat2] = "c_string_literal_repeat2", - [aux_sym_raw_string_literal_repeat1] = "raw_string_literal_repeat1", - [aux_sym_raw_string_literal_repeat2] = "raw_string_literal_repeat2", - [aux_sym_identifier_list_repeat1] = "identifier_list_repeat1", - [aux_sym_expression_without_blocks_list_repeat1] = "expression_without_blocks_list_repeat1", - [aux_sym__statement_list_repeat1] = "_statement_list_repeat1", - [aux_sym_var_definition_list_repeat1] = "var_definition_list_repeat1", - [aux_sym_attributes_repeat1] = "attributes_repeat1", - [aux_sym_attribute_repeat1] = "attribute_repeat1", - [alias_sym_interpolation_expression] = "interpolation_expression", -}; - -static const TSSymbol ts_symbol_map[] = { - [ts_builtin_sym_end] = ts_builtin_sym_end, - [sym_identifier] = sym_identifier, - [anon_sym_LF] = anon_sym_LF, - [anon_sym_CR] = anon_sym_CR, - [anon_sym_CR_LF] = anon_sym_CR_LF, - [sym_comment] = sym_comment, - [anon_sym_module] = anon_sym_module, - [anon_sym_import] = anon_sym_import, - [anon_sym_SEMI] = anon_sym_SEMI, - [anon_sym_DOT] = anon_sym_DOT, - [anon_sym_as] = anon_sym_as, - [anon_sym_LBRACE] = anon_sym_LBRACE, - [anon_sym_COMMA] = anon_sym_COMMA, - [anon_sym_RBRACE] = anon_sym_RBRACE, - [anon_sym_const] = anon_sym_const, - [anon_sym_LPAREN] = anon_sym_LPAREN, - [anon_sym_RPAREN] = anon_sym_RPAREN, - [anon_sym_EQ] = anon_sym_EQ, - [anon_sym___global] = anon_sym___global, - [anon_sym_type] = anon_sym_type, - [anon_sym_PIPE] = anon_sym_PIPE, - [anon_sym_fn] = anon_sym_fn, - [anon_sym_PLUS] = anon_sym_PLUS, - [anon_sym_DASH] = anon_sym_DASH, - [anon_sym_STAR] = anon_sym_STAR, - [anon_sym_SLASH] = anon_sym_SLASH, - [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_LT] = anon_sym_LT, - [anon_sym_GT] = anon_sym_GT, - [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, - [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, - [anon_sym_LT_EQ] = anon_sym_LT_EQ, - [anon_sym_GT_EQ] = anon_sym_GT_EQ, - [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, - [anon_sym_LBRACK] = anon_sym_LBRACK, - [anon_sym_LT2] = anon_sym_LT, - [anon_sym_RBRACK] = anon_sym_RBRACK, - [anon_sym_struct] = anon_sym_struct, - [anon_sym_union] = anon_sym_union, - [anon_sym_pub] = anon_sym_pub, - [anon_sym_mut] = anon_sym_mut, - [anon_sym_COLON] = anon_sym_COLON, - [anon_sym_enum] = anon_sym_enum, - [anon_sym_interface] = anon_sym_interface, - [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, - [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, - [anon_sym_QMARK] = anon_sym_QMARK, - [anon_sym_BANG] = anon_sym_BANG, - [anon_sym_go] = anon_sym_go, - [anon_sym_spawn] = anon_sym_spawn, - [anon_sym_json_DOTdecode] = anon_sym_json_DOTdecode, - [anon_sym_LBRACK2] = anon_sym_LBRACK, - [anon_sym_TILDE] = anon_sym_TILDE, - [anon_sym_CARET] = anon_sym_CARET, - [anon_sym_AMP] = anon_sym_AMP, - [anon_sym_LT_DASH] = anon_sym_LT_DASH, - [anon_sym_LT_LT] = anon_sym_LT_LT, - [anon_sym_GT_GT] = anon_sym_GT_GT, - [anon_sym_GT_GT_GT] = anon_sym_GT_GT_GT, - [anon_sym_AMP_CARET] = anon_sym_AMP_CARET, - [anon_sym_AMP_AMP] = anon_sym_AMP_AMP, - [anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE, - [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [anon_sym_or] = anon_sym_or, - [sym_escape_sequence] = sym_escape_sequence, - [sym_none] = sym_none, - [sym_true] = sym_true, - [sym_false] = sym_false, - [sym_nil] = sym_nil, - [anon_sym_QMARK_DOT] = anon_sym_QMARK_DOT, - [anon_sym_POUND_LBRACK] = anon_sym_POUND_LBRACK, - [anon_sym_if] = anon_sym_if, - [anon_sym_else] = anon_sym_else, - [anon_sym_DOLLARif] = anon_sym_DOLLARif, - [anon_sym_DOLLARelse] = anon_sym_DOLLARelse, - [anon_sym_is] = anon_sym_is, - [anon_sym_BANGis] = anon_sym_BANGis, - [anon_sym_in] = anon_sym_in, - [anon_sym_BANGin] = anon_sym_BANGin, - [anon_sym_match] = anon_sym_match, - [anon_sym_select] = anon_sym_select, - [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, - [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, - [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, - [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, - [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, - [anon_sym_GT_GT_GT_EQ] = anon_sym_GT_GT_GT_EQ, - [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, - [anon_sym_AMP_CARET_EQ] = anon_sym_AMP_CARET_EQ, - [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, - [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, - [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, - [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, - [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, - [anon_sym_lock] = anon_sym_lock, - [anon_sym_rlock] = anon_sym_rlock, - [anon_sym_unsafe] = anon_sym_unsafe, - [anon_sym_sql] = anon_sym_sql, - [sym_int_literal] = sym_int_literal, - [sym_float_literal] = sym_float_literal, - [sym_rune_literal] = sym_rune_literal, - [aux_sym_c_string_literal_token1] = aux_sym_c_string_literal_token1, - [aux_sym_c_string_literal_token2] = aux_sym_c_string_literal_token2, - [aux_sym_raw_string_literal_token1] = aux_sym_raw_string_literal_token1, - [aux_sym_raw_string_literal_token2] = aux_sym_raw_string_literal_token2, - [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, - [aux_sym_format_specifier_token2] = aux_sym_format_specifier_token2, - [anon_sym_0] = anon_sym_0, - [anon_sym_AT] = anon_sym_AT, - [aux_sym_pseudo_compile_time_identifier_token1] = sym_identifier, - [anon_sym_static] = anon_sym_static, - [anon_sym_volatile] = anon_sym_volatile, - [anon_sym_shared] = anon_sym_shared, - [anon_sym_map_LBRACK] = anon_sym_map_LBRACK, - [anon_sym_chan] = anon_sym_chan, - [anon_sym_thread] = anon_sym_thread, - [anon_sym_atomic] = anon_sym_atomic, - [anon_sym_assert] = anon_sym_assert, - [anon_sym_defer] = anon_sym_defer, - [anon_sym_goto] = anon_sym_goto, - [anon_sym_break] = anon_sym_break, - [anon_sym_continue] = anon_sym_continue, - [anon_sym_return] = anon_sym_return, - [anon_sym_DOLLARfor] = anon_sym_DOLLARfor, - [anon_sym_for] = anon_sym_for, - [anon_sym_DOT_DOT] = anon_sym_DOT_DOT, - [anon_sym_POUND] = anon_sym_POUND, - [aux_sym_hash_statement_token1] = aux_sym_hash_statement_token1, - [anon_sym_asm] = anon_sym_asm, - [aux_sym__content_block_token1] = aux_sym__content_block_token1, - [anon_sym_AT_LBRACK] = anon_sym_AT_LBRACK, - [sym___dolcbr] = sym___dolcbr, - [sym___double_quote] = sym___double_quote, - [sym___single_quote] = sym___single_quote, - [sym___c_double_quote] = sym___c_double_quote, - [sym___c_single_quote] = sym___c_single_quote, - [sym___r_double_quote] = sym___r_double_quote, - [sym___r_single_quote] = sym___r_single_quote, - [sym_source_file] = sym_source_file, - [sym_module_clause] = sym_module_clause, - [sym_import_list] = sym_import_list, - [sym_import_declaration] = sym_import_declaration, - [sym_import_spec] = sym_import_spec, - [sym_import_path] = sym_import_path, - [sym_import_name] = sym_import_name, - [sym_import_alias] = sym_import_alias, - [sym_selective_import_list] = sym_selective_import_list, - [sym_const_declaration] = sym_const_declaration, - [sym_const_definition] = sym_const_definition, - [sym_global_var_declaration] = sym_global_var_declaration, - [sym_global_var_definition] = sym_global_var_definition, - [sym__global_var_value] = sym__global_var_value, - [sym_type_declaration] = sym_type_declaration, - [sym__type_union_list] = sym__type_union_list, - [sym_function_declaration] = sym_function_declaration, - [sym_static_method_declaration] = sym_static_method_declaration, - [sym_static_receiver] = sym_static_receiver, - [sym__function_name] = sym__function_name, - [sym_overridable_operator] = sym_overridable_operator, - [sym_receiver] = sym_receiver, - [sym_signature] = sym_signature, - [sym_parameter_list] = sym_parameter_list, - [sym_parameter_declaration] = sym_parameter_declaration, - [sym_type_parameter_list] = sym_type_parameter_list, - [sym_type_parameter_declaration] = sym_type_parameter_declaration, - [sym_generic_parameters] = sym_generic_parameters, - [sym_generic_parameter] = sym_generic_parameter, - [sym_struct_declaration] = sym_struct_declaration, - [sym__struct_body] = sym__struct_body, - [sym_struct_field_scope] = sym_struct_field_scope, - [sym_struct_field_declaration] = sym_struct_field_declaration, - [sym__struct_field_definition] = sym__struct_field_definition, - [sym_embedded_definition] = sym_embedded_definition, - [sym_enum_declaration] = sym_enum_declaration, - [sym_enum_backed_type] = sym_enum_backed_type, - [sym__enum_body] = sym__enum_body, - [sym_enum_field_definition] = sym_enum_field_definition, - [sym_interface_declaration] = sym_interface_declaration, - [sym__interface_body] = sym__interface_body, - [sym_interface_method_definition] = sym_interface_method_definition, - [sym__expression] = sym__expression, - [sym__expression_without_blocks] = sym__expression_without_blocks, - [sym__expression_with_blocks] = sym__expression_with_blocks, - [sym_strictly_expression_list] = sym_expression_list, - [sym_inc_expression] = sym_inc_expression, - [sym_dec_expression] = sym_dec_expression, - [sym_or_block_expression] = sym_or_block_expression, - [sym_option_propagation_expression] = sym_option_propagation_expression, - [sym_result_propagation_expression] = sym_result_propagation_expression, - [sym_anon_struct_value_expression] = sym_anon_struct_value_expression, - [sym_go_expression] = sym_go_expression, - [sym_spawn_expression] = sym_spawn_expression, - [sym_parenthesized_expression] = sym_parenthesized_expression, - [sym_call_expression] = sym_call_expression, - [sym_type_parameters] = sym_type_parameters, - [sym_argument_list] = sym_argument_list, - [sym_argument] = sym_argument, - [sym_special_argument_list] = sym_special_argument_list, - [sym_type_initializer] = sym_type_initializer, - [sym_type_initializer_body] = sym_type_initializer_body, - [sym_element_list] = sym_element_list, - [sym_short_element_list] = sym_short_element_list, - [sym_element] = sym_element, - [sym_keyed_element] = sym_keyed_element, - [sym_field_name] = sym_field_name, - [sym_function_literal] = sym_function_literal, - [sym_capture_list] = sym_capture_list, - [sym_capture] = sym_capture, - [sym_reference_expression] = sym_reference_expression, - [sym_type_reference_expression] = sym_type_reference_expression, - [sym_unary_expression] = sym_unary_expression, - [sym_receive_expression] = sym_receive_expression, - [sym_binary_expression] = sym_binary_expression, - [sym_as_type_cast_expression] = sym_as_type_cast_expression, - [sym_compile_time_selector_expression] = sym_compile_time_selector_expression, - [sym_or_block] = sym_or_block, - [sym__max_group] = sym__max_group, - [sym_literal] = sym_literal, - [sym_spread_expression] = sym_spread_expression, - [sym_map_init_expression] = sym_map_init_expression, - [sym_map_keyed_element] = sym_map_keyed_element, - [sym_array_creation] = sym_array_creation, - [sym_fixed_array_creation] = sym_fixed_array_creation, - [sym_selector_expression] = sym_selector_expression, - [sym_index_expression] = sym_index_expression, - [sym_slice_expression] = sym_slice_expression, - [sym_if_expression] = sym_if_expression, - [sym_else_branch] = sym_else_branch, - [sym_compile_time_if_expression] = sym_compile_time_if_expression, - [sym_is_expression] = sym_is_expression, - [sym_not_is_expression] = sym_not_is_expression, - [sym_in_expression] = sym_in_expression, - [sym_not_in_expression] = sym_not_in_expression, - [sym_enum_fetch] = sym_enum_fetch, - [sym_match_expression] = sym_match_expression, - [sym_match_arms] = sym_match_arms, - [sym_match_arm] = sym_match_arm, - [sym_match_expression_list] = sym_match_expression_list, - [sym_match_arm_type] = sym_match_arm_type, - [sym_match_else_arm_clause] = sym_match_else_arm_clause, - [sym_select_expression] = sym_select_expression, - [sym_select_arm] = sym_select_arm, - [sym_select_arm_statement] = sym_select_arm_statement, - [sym__select_arm_assignment_statement] = sym__select_arm_assignment_statement, - [sym_select_var_declaration] = sym_var_declaration, - [sym_select_else_arn_clause] = sym_select_else_arn_clause, - [sym_lock_expression] = sym_lock_expression, - [sym_unsafe_expression] = sym_unsafe_expression, - [sym_sql_expression] = sym_sql_expression, - [sym_c_string_literal] = sym_c_string_literal, - [sym_raw_string_literal] = sym_raw_string_literal, - [sym_interpreted_string_literal] = sym_interpreted_string_literal, - [sym_string_interpolation] = sym_string_interpolation, - [sym_format_specifier] = sym_format_specifier, - [sym_pseudo_compile_time_identifier] = sym_pseudo_compile_time_identifier, - [sym_visibility_modifiers] = sym_visibility_modifiers, - [sym_mutability_modifiers] = sym_mutability_modifiers, - [sym_mutable_identifier] = sym_mutable_identifier, - [sym_mutable_expression] = sym_mutable_expression, - [sym_identifier_list] = sym_identifier_list, - [sym_expression_list] = sym_expression_list, - [sym_expression_without_blocks_list] = sym_expression_list, - [sym_plain_type] = sym_plain_type, - [sym__plain_type_without_special] = sym__plain_type_without_special, - [sym_anon_struct_type] = sym_anon_struct_type, - [sym_multi_return_type] = sym_multi_return_type, - [sym_result_type] = sym_result_type, - [sym_option_type] = sym_option_type, - [sym_qualified_type] = sym_qualified_type, - [sym_fixed_array_type] = sym_fixed_array_type, - [sym_array_type] = sym_array_type, - [sym_pointer_type] = sym_pointer_type, - [sym_wrong_pointer_type] = sym_wrong_pointer_type, - [sym_map_type] = sym_map_type, - [sym_channel_type] = sym_channel_type, - [sym_shared_type] = sym_shared_type, - [sym_thread_type] = sym_thread_type, - [sym_atomic_type] = sym_atomic_type, - [sym_generic_type] = sym_generic_type, - [sym_function_type] = sym_function_type, - [sym__statement_list] = sym__statement_list, - [sym__statement] = sym__statement, - [sym_simple_statement] = sym_simple_statement, - [sym_assert_statement] = sym_assert_statement, - [sym_append_statement] = sym_append_statement, - [sym_send_statement] = sym_send_statement, - [sym_var_declaration] = sym_var_declaration, - [sym_var_definition_list] = sym_var_definition_list, - [sym_var_definition] = sym_var_definition, - [sym_assignment_statement] = sym_assignment_statement, - [sym_block] = sym_block, - [sym_defer_statement] = sym_defer_statement, - [sym_label_reference] = sym_label_reference, - [sym_goto_statement] = sym_goto_statement, - [sym_break_statement] = sym_break_statement, - [sym_continue_statement] = sym_continue_statement, - [sym_return_statement] = sym_return_statement, - [sym_label_definition] = sym_label_definition, - [sym_labeled_statement] = sym_labeled_statement, - [sym_empty_labeled_statement] = sym_labeled_statement, - [sym_compile_time_for_statement] = sym_compile_time_for_statement, - [sym_for_statement] = sym_for_statement, - [sym_range_clause] = sym_range_clause, - [sym_for_clause] = sym_for_clause, - [sym__definite_range] = sym_range, - [sym_range] = sym_range, - [sym_hash_statement] = sym_hash_statement, - [sym_asm_statement] = sym_asm_statement, - [sym__content_block] = sym__content_block, - [sym_attributes] = sym_attributes, - [sym_attribute] = sym_attribute, - [sym_attribute_expression] = sym_attribute_expression, - [sym_if_attribute] = sym_if_attribute, - [sym__plain_attribute] = sym__plain_attribute, - [sym_literal_attribute] = sym_literal_attribute, - [sym_value_attribute] = sym_value_attribute, - [sym_key_value_attribute] = sym_key_value_attribute, - [sym___rcbr] = sym___rcbr, - [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, - [aux_sym_import_list_repeat1] = aux_sym_import_list_repeat1, - [aux_sym_import_path_repeat1] = aux_sym_import_path_repeat1, - [aux_sym_selective_import_list_repeat1] = aux_sym_selective_import_list_repeat1, - [aux_sym_const_declaration_repeat1] = aux_sym_const_declaration_repeat1, - [aux_sym_global_var_declaration_repeat1] = aux_sym_global_var_declaration_repeat1, - [aux_sym__type_union_list_repeat1] = aux_sym__type_union_list_repeat1, - [aux_sym_parameter_list_repeat1] = aux_sym_parameter_list_repeat1, - [aux_sym_type_parameter_list_repeat1] = aux_sym_type_parameter_list_repeat1, - [aux_sym_generic_parameters_repeat1] = aux_sym_generic_parameters_repeat1, - [aux_sym__struct_body_repeat1] = aux_sym__struct_body_repeat1, - [aux_sym__enum_body_repeat1] = aux_sym__enum_body_repeat1, - [aux_sym__interface_body_repeat1] = aux_sym__interface_body_repeat1, - [aux_sym_strictly_expression_list_repeat1] = aux_sym_strictly_expression_list_repeat1, - [aux_sym_type_parameters_repeat1] = aux_sym_type_parameters_repeat1, - [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, - [aux_sym_element_list_repeat1] = aux_sym_element_list_repeat1, - [aux_sym_short_element_list_repeat1] = aux_sym_short_element_list_repeat1, - [aux_sym_capture_list_repeat1] = aux_sym_capture_list_repeat1, - [aux_sym_map_init_expression_repeat1] = aux_sym_map_init_expression_repeat1, - [aux_sym__array_repeat1] = aux_sym__array_repeat1, - [aux_sym_match_arms_repeat1] = aux_sym_match_arms_repeat1, - [aux_sym_match_expression_list_repeat1] = aux_sym_match_expression_list_repeat1, - [aux_sym_select_expression_repeat1] = aux_sym_select_expression_repeat1, - [aux_sym_c_string_literal_repeat1] = aux_sym_c_string_literal_repeat1, - [aux_sym_c_string_literal_repeat2] = aux_sym_c_string_literal_repeat2, - [aux_sym_raw_string_literal_repeat1] = aux_sym_raw_string_literal_repeat1, - [aux_sym_raw_string_literal_repeat2] = aux_sym_raw_string_literal_repeat2, - [aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1, - [aux_sym_expression_without_blocks_list_repeat1] = aux_sym_expression_without_blocks_list_repeat1, - [aux_sym__statement_list_repeat1] = aux_sym__statement_list_repeat1, - [aux_sym_var_definition_list_repeat1] = aux_sym_var_definition_list_repeat1, - [aux_sym_attributes_repeat1] = aux_sym_attributes_repeat1, - [aux_sym_attribute_repeat1] = aux_sym_attribute_repeat1, - [alias_sym_interpolation_expression] = alias_sym_interpolation_expression, -}; - -static const TSSymbolMetadata ts_symbol_metadata[] = { - [ts_builtin_sym_end] = { - .visible = false, - .named = true, - }, - [sym_identifier] = { - .visible = true, - .named = true, - }, - [anon_sym_LF] = { - .visible = true, - .named = false, - }, - [anon_sym_CR] = { - .visible = true, - .named = false, - }, - [anon_sym_CR_LF] = { - .visible = true, - .named = false, - }, - [sym_comment] = { - .visible = true, - .named = true, - }, - [anon_sym_module] = { - .visible = true, - .named = false, - }, - [anon_sym_import] = { - .visible = true, - .named = false, - }, - [anon_sym_SEMI] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_as] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_COMMA] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACE] = { - .visible = true, - .named = false, - }, - [anon_sym_const] = { - .visible = true, - .named = false, - }, - [anon_sym_LPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_RPAREN] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym___global] = { - .visible = true, - .named = false, - }, - [anon_sym_type] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_fn] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT] = { - .visible = true, - .named = false, - }, - [anon_sym_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_EQ_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_LT2] = { - .visible = true, - .named = false, - }, - [anon_sym_RBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_struct] = { - .visible = true, - .named = false, - }, - [anon_sym_union] = { - .visible = true, - .named = false, - }, - [anon_sym_pub] = { - .visible = true, - .named = false, - }, - [anon_sym_mut] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON] = { - .visible = true, - .named = false, - }, - [anon_sym_enum] = { - .visible = true, - .named = false, - }, - [anon_sym_interface] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_PLUS] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_QMARK] = { - .visible = true, - .named = false, - }, - [anon_sym_BANG] = { - .visible = true, - .named = false, - }, - [anon_sym_go] = { - .visible = true, - .named = false, - }, - [anon_sym_spawn] = { - .visible = true, - .named = false, - }, - [anon_sym_json_DOTdecode] = { - .visible = true, - .named = false, - }, - [anon_sym_LBRACK2] = { - .visible = true, - .named = false, - }, - [anon_sym_TILDE] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_DASH] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT_GT] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_CARET] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_AMP] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_PIPE] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLAR] = { - .visible = true, - .named = false, - }, - [anon_sym_or] = { - .visible = true, - .named = false, - }, - [sym_escape_sequence] = { - .visible = true, - .named = true, - }, - [sym_none] = { - .visible = true, - .named = true, - }, - [sym_true] = { - .visible = true, - .named = true, - }, - [sym_false] = { - .visible = true, - .named = true, - }, - [sym_nil] = { - .visible = true, - .named = true, - }, - [anon_sym_QMARK_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_if] = { - .visible = true, - .named = false, - }, - [anon_sym_else] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLARif] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLARelse] = { - .visible = true, - .named = false, - }, - [anon_sym_is] = { - .visible = true, - .named = false, - }, - [anon_sym_BANGis] = { - .visible = true, - .named = false, - }, - [anon_sym_in] = { - .visible = true, - .named = false, - }, - [anon_sym_BANGin] = { - .visible = true, - .named = false, - }, - [anon_sym_match] = { - .visible = true, - .named = false, - }, - [anon_sym_select] = { - .visible = true, - .named = false, - }, - [anon_sym_STAR_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_SLASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PERCENT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_LT_LT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_GT_GT_GT_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_AMP_CARET_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PLUS_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_DASH_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_PIPE_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_CARET_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_COLON_EQ] = { - .visible = true, - .named = false, - }, - [anon_sym_lock] = { - .visible = true, - .named = false, - }, - [anon_sym_rlock] = { - .visible = true, - .named = false, - }, - [anon_sym_unsafe] = { - .visible = true, - .named = false, - }, - [anon_sym_sql] = { - .visible = true, - .named = false, - }, - [sym_int_literal] = { - .visible = true, - .named = true, - }, - [sym_float_literal] = { - .visible = true, - .named = true, - }, - [sym_rune_literal] = { - .visible = true, - .named = true, - }, - [aux_sym_c_string_literal_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_c_string_literal_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_raw_string_literal_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_raw_string_literal_token2] = { - .visible = false, - .named = false, - }, - [aux_sym_format_specifier_token1] = { - .visible = false, - .named = false, - }, - [aux_sym_format_specifier_token2] = { - .visible = false, - .named = false, - }, - [anon_sym_0] = { - .visible = true, - .named = false, - }, - [anon_sym_AT] = { - .visible = true, - .named = false, - }, - [aux_sym_pseudo_compile_time_identifier_token1] = { - .visible = true, - .named = true, - }, - [anon_sym_static] = { - .visible = true, - .named = false, - }, - [anon_sym_volatile] = { - .visible = true, - .named = false, - }, - [anon_sym_shared] = { - .visible = true, - .named = false, - }, - [anon_sym_map_LBRACK] = { - .visible = true, - .named = false, - }, - [anon_sym_chan] = { - .visible = true, - .named = false, - }, - [anon_sym_thread] = { - .visible = true, - .named = false, - }, - [anon_sym_atomic] = { - .visible = true, - .named = false, - }, - [anon_sym_assert] = { - .visible = true, - .named = false, - }, - [anon_sym_defer] = { - .visible = true, - .named = false, - }, - [anon_sym_goto] = { - .visible = true, - .named = false, - }, - [anon_sym_break] = { - .visible = true, - .named = false, - }, - [anon_sym_continue] = { - .visible = true, - .named = false, - }, - [anon_sym_return] = { - .visible = true, - .named = false, - }, - [anon_sym_DOLLARfor] = { - .visible = true, - .named = false, - }, - [anon_sym_for] = { - .visible = true, - .named = false, - }, - [anon_sym_DOT_DOT] = { - .visible = true, - .named = false, - }, - [anon_sym_POUND] = { - .visible = true, - .named = false, - }, - [aux_sym_hash_statement_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_asm] = { - .visible = true, - .named = false, - }, - [aux_sym__content_block_token1] = { - .visible = false, - .named = false, - }, - [anon_sym_AT_LBRACK] = { - .visible = true, - .named = false, - }, - [sym___dolcbr] = { - .visible = true, - .named = true, - }, - [sym___double_quote] = { - .visible = false, - .named = true, - }, - [sym___single_quote] = { - .visible = false, - .named = true, - }, - [sym___c_double_quote] = { - .visible = false, - .named = true, - }, - [sym___c_single_quote] = { - .visible = false, - .named = true, - }, - [sym___r_double_quote] = { - .visible = false, - .named = true, - }, - [sym___r_single_quote] = { - .visible = false, - .named = true, - }, - [sym_source_file] = { - .visible = true, - .named = true, - }, - [sym_module_clause] = { - .visible = true, - .named = true, - }, - [sym_import_list] = { - .visible = true, - .named = true, - }, - [sym_import_declaration] = { - .visible = true, - .named = true, - }, - [sym_import_spec] = { - .visible = true, - .named = true, - }, - [sym_import_path] = { - .visible = true, - .named = true, - }, - [sym_import_name] = { - .visible = true, - .named = true, - }, - [sym_import_alias] = { - .visible = true, - .named = true, - }, - [sym_selective_import_list] = { - .visible = true, - .named = true, - }, - [sym_const_declaration] = { - .visible = true, - .named = true, - }, - [sym_const_definition] = { - .visible = true, - .named = true, - }, - [sym_global_var_declaration] = { - .visible = true, - .named = true, - }, - [sym_global_var_definition] = { - .visible = true, - .named = true, - }, - [sym__global_var_value] = { - .visible = false, - .named = true, - }, - [sym_type_declaration] = { - .visible = true, - .named = true, - }, - [sym__type_union_list] = { - .visible = false, - .named = true, - }, - [sym_function_declaration] = { - .visible = true, - .named = true, - }, - [sym_static_method_declaration] = { - .visible = true, - .named = true, - }, - [sym_static_receiver] = { - .visible = true, - .named = true, - }, - [sym__function_name] = { - .visible = false, - .named = true, - }, - [sym_overridable_operator] = { - .visible = true, - .named = true, - }, - [sym_receiver] = { - .visible = true, - .named = true, - }, - [sym_signature] = { - .visible = true, - .named = true, - }, - [sym_parameter_list] = { - .visible = true, - .named = true, - }, - [sym_parameter_declaration] = { - .visible = true, - .named = true, - }, - [sym_type_parameter_list] = { - .visible = true, - .named = true, - }, - [sym_type_parameter_declaration] = { - .visible = true, - .named = true, - }, - [sym_generic_parameters] = { - .visible = true, - .named = true, - }, - [sym_generic_parameter] = { - .visible = true, - .named = true, - }, - [sym_struct_declaration] = { - .visible = true, - .named = true, - }, - [sym__struct_body] = { - .visible = false, - .named = true, - }, - [sym_struct_field_scope] = { - .visible = true, - .named = true, - }, - [sym_struct_field_declaration] = { - .visible = true, - .named = true, - }, - [sym__struct_field_definition] = { - .visible = false, - .named = true, - }, - [sym_embedded_definition] = { - .visible = true, - .named = true, - }, - [sym_enum_declaration] = { - .visible = true, - .named = true, - }, - [sym_enum_backed_type] = { - .visible = true, - .named = true, - }, - [sym__enum_body] = { - .visible = false, - .named = true, - }, - [sym_enum_field_definition] = { - .visible = true, - .named = true, - }, - [sym_interface_declaration] = { - .visible = true, - .named = true, - }, - [sym__interface_body] = { - .visible = false, - .named = true, - }, - [sym_interface_method_definition] = { - .visible = true, - .named = true, - }, - [sym__expression] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym__expression_without_blocks] = { - .visible = false, - .named = true, - }, - [sym__expression_with_blocks] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_strictly_expression_list] = { - .visible = true, - .named = true, - }, - [sym_inc_expression] = { - .visible = true, - .named = true, - }, - [sym_dec_expression] = { - .visible = true, - .named = true, - }, - [sym_or_block_expression] = { - .visible = true, - .named = true, - }, - [sym_option_propagation_expression] = { - .visible = true, - .named = true, - }, - [sym_result_propagation_expression] = { - .visible = true, - .named = true, - }, - [sym_anon_struct_value_expression] = { - .visible = true, - .named = true, - }, - [sym_go_expression] = { - .visible = true, - .named = true, - }, - [sym_spawn_expression] = { - .visible = true, - .named = true, - }, - [sym_parenthesized_expression] = { - .visible = true, - .named = true, - }, - [sym_call_expression] = { - .visible = true, - .named = true, - }, - [sym_type_parameters] = { - .visible = true, - .named = true, - }, - [sym_argument_list] = { - .visible = true, - .named = true, - }, - [sym_argument] = { - .visible = true, - .named = true, - }, - [sym_special_argument_list] = { - .visible = true, - .named = true, - }, - [sym_type_initializer] = { - .visible = true, - .named = true, - }, - [sym_type_initializer_body] = { - .visible = true, - .named = true, - }, - [sym_element_list] = { - .visible = true, - .named = true, - }, - [sym_short_element_list] = { - .visible = true, - .named = true, - }, - [sym_element] = { - .visible = true, - .named = true, - }, - [sym_keyed_element] = { - .visible = true, - .named = true, - }, - [sym_field_name] = { - .visible = true, - .named = true, - }, - [sym_function_literal] = { - .visible = true, - .named = true, - }, - [sym_capture_list] = { - .visible = true, - .named = true, - }, - [sym_capture] = { - .visible = true, - .named = true, - }, - [sym_reference_expression] = { - .visible = true, - .named = true, - }, - [sym_type_reference_expression] = { - .visible = true, - .named = true, - }, - [sym_unary_expression] = { - .visible = true, - .named = true, - }, - [sym_receive_expression] = { - .visible = true, - .named = true, - }, - [sym_binary_expression] = { - .visible = true, - .named = true, - }, - [sym_as_type_cast_expression] = { - .visible = true, - .named = true, - }, - [sym_compile_time_selector_expression] = { - .visible = true, - .named = true, - }, - [sym_or_block] = { - .visible = true, - .named = true, - }, - [sym__max_group] = { - .visible = false, - .named = true, - }, - [sym_literal] = { - .visible = true, - .named = true, - }, - [sym_spread_expression] = { - .visible = true, - .named = true, - }, - [sym_map_init_expression] = { - .visible = true, - .named = true, - }, - [sym_map_keyed_element] = { - .visible = true, - .named = true, - }, - [sym_array_creation] = { - .visible = true, - .named = true, - }, - [sym_fixed_array_creation] = { - .visible = true, - .named = true, - }, - [sym_selector_expression] = { - .visible = true, - .named = true, - }, - [sym_index_expression] = { - .visible = true, - .named = true, - }, - [sym_slice_expression] = { - .visible = true, - .named = true, - }, - [sym_if_expression] = { - .visible = true, - .named = true, - }, - [sym_else_branch] = { - .visible = true, - .named = true, - }, - [sym_compile_time_if_expression] = { - .visible = true, - .named = true, - }, - [sym_is_expression] = { - .visible = true, - .named = true, - }, - [sym_not_is_expression] = { - .visible = true, - .named = true, - }, - [sym_in_expression] = { - .visible = true, - .named = true, - }, - [sym_not_in_expression] = { - .visible = true, - .named = true, - }, - [sym_enum_fetch] = { - .visible = true, - .named = true, - }, - [sym_match_expression] = { - .visible = true, - .named = true, - }, - [sym_match_arms] = { - .visible = true, - .named = true, - }, - [sym_match_arm] = { - .visible = true, - .named = true, - }, - [sym_match_expression_list] = { - .visible = true, - .named = true, - }, - [sym_match_arm_type] = { - .visible = true, - .named = true, - }, - [sym_match_else_arm_clause] = { - .visible = true, - .named = true, - }, - [sym_select_expression] = { - .visible = true, - .named = true, - }, - [sym_select_arm] = { - .visible = true, - .named = true, - }, - [sym_select_arm_statement] = { - .visible = true, - .named = true, - }, - [sym__select_arm_assignment_statement] = { - .visible = false, - .named = true, - }, - [sym_select_var_declaration] = { - .visible = true, - .named = true, - }, - [sym_select_else_arn_clause] = { - .visible = true, - .named = true, - }, - [sym_lock_expression] = { - .visible = true, - .named = true, - }, - [sym_unsafe_expression] = { - .visible = true, - .named = true, - }, - [sym_sql_expression] = { - .visible = true, - .named = true, - }, - [sym_c_string_literal] = { - .visible = true, - .named = true, - }, - [sym_raw_string_literal] = { - .visible = true, - .named = true, - }, - [sym_interpreted_string_literal] = { - .visible = true, - .named = true, - }, - [sym_string_interpolation] = { - .visible = true, - .named = true, - }, - [sym_format_specifier] = { - .visible = true, - .named = true, - }, - [sym_pseudo_compile_time_identifier] = { - .visible = true, - .named = true, - }, - [sym_visibility_modifiers] = { - .visible = true, - .named = true, - }, - [sym_mutability_modifiers] = { - .visible = true, - .named = true, - }, - [sym_mutable_identifier] = { - .visible = true, - .named = true, - }, - [sym_mutable_expression] = { - .visible = true, - .named = true, - }, - [sym_identifier_list] = { - .visible = true, - .named = true, - }, - [sym_expression_list] = { - .visible = true, - .named = true, - }, - [sym_expression_without_blocks_list] = { - .visible = true, - .named = true, - }, - [sym_plain_type] = { - .visible = true, - .named = true, - }, - [sym__plain_type_without_special] = { - .visible = false, - .named = true, - }, - [sym_anon_struct_type] = { - .visible = true, - .named = true, - }, - [sym_multi_return_type] = { - .visible = true, - .named = true, - }, - [sym_result_type] = { - .visible = true, - .named = true, - }, - [sym_option_type] = { - .visible = true, - .named = true, - }, - [sym_qualified_type] = { - .visible = true, - .named = true, - }, - [sym_fixed_array_type] = { - .visible = true, - .named = true, - }, - [sym_array_type] = { - .visible = true, - .named = true, - }, - [sym_pointer_type] = { - .visible = true, - .named = true, - }, - [sym_wrong_pointer_type] = { - .visible = true, - .named = true, - }, - [sym_map_type] = { - .visible = true, - .named = true, - }, - [sym_channel_type] = { - .visible = true, - .named = true, - }, - [sym_shared_type] = { - .visible = true, - .named = true, - }, - [sym_thread_type] = { - .visible = true, - .named = true, - }, - [sym_atomic_type] = { - .visible = true, - .named = true, - }, - [sym_generic_type] = { - .visible = true, - .named = true, - }, - [sym_function_type] = { - .visible = true, - .named = true, - }, - [sym__statement_list] = { - .visible = false, - .named = true, - }, - [sym__statement] = { - .visible = false, - .named = true, - .supertype = true, - }, - [sym_simple_statement] = { - .visible = true, - .named = true, - }, - [sym_assert_statement] = { - .visible = true, - .named = true, - }, - [sym_append_statement] = { - .visible = true, - .named = true, - }, - [sym_send_statement] = { - .visible = true, - .named = true, - }, - [sym_var_declaration] = { - .visible = true, - .named = true, - }, - [sym_var_definition_list] = { - .visible = true, - .named = true, - }, - [sym_var_definition] = { - .visible = true, - .named = true, - }, - [sym_assignment_statement] = { - .visible = true, - .named = true, - }, - [sym_block] = { - .visible = true, - .named = true, - }, - [sym_defer_statement] = { - .visible = true, - .named = true, - }, - [sym_label_reference] = { - .visible = true, - .named = true, - }, - [sym_goto_statement] = { - .visible = true, - .named = true, - }, - [sym_break_statement] = { - .visible = true, - .named = true, - }, - [sym_continue_statement] = { - .visible = true, - .named = true, - }, - [sym_return_statement] = { - .visible = true, - .named = true, - }, - [sym_label_definition] = { - .visible = true, - .named = true, - }, - [sym_labeled_statement] = { - .visible = true, - .named = true, - }, - [sym_empty_labeled_statement] = { - .visible = true, - .named = true, - }, - [sym_compile_time_for_statement] = { - .visible = true, - .named = true, - }, - [sym_for_statement] = { - .visible = true, - .named = true, - }, - [sym_range_clause] = { - .visible = true, - .named = true, - }, - [sym_for_clause] = { - .visible = true, - .named = true, - }, - [sym__definite_range] = { - .visible = true, - .named = true, - }, - [sym_range] = { - .visible = true, - .named = true, - }, - [sym_hash_statement] = { - .visible = true, - .named = true, - }, - [sym_asm_statement] = { - .visible = true, - .named = true, - }, - [sym__content_block] = { - .visible = false, - .named = true, - }, - [sym_attributes] = { - .visible = true, - .named = true, - }, - [sym_attribute] = { - .visible = true, - .named = true, - }, - [sym_attribute_expression] = { - .visible = true, - .named = true, - }, - [sym_if_attribute] = { - .visible = true, - .named = true, - }, - [sym__plain_attribute] = { - .visible = false, - .named = true, - }, - [sym_literal_attribute] = { - .visible = true, - .named = true, - }, - [sym_value_attribute] = { - .visible = true, - .named = true, - }, - [sym_key_value_attribute] = { - .visible = true, - .named = true, - }, - [sym___rcbr] = { - .visible = true, - .named = true, - }, - [aux_sym_source_file_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_import_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_import_path_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_selective_import_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_const_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_global_var_declaration_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__type_union_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_parameter_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_parameter_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_generic_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__struct_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__enum_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__interface_body_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_strictly_expression_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_type_parameters_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_argument_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_element_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_short_element_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_capture_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_map_init_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__array_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_match_arms_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_match_expression_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_select_expression_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_c_string_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_c_string_literal_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_raw_string_literal_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_raw_string_literal_repeat2] = { - .visible = false, - .named = false, - }, - [aux_sym_identifier_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_expression_without_blocks_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym__statement_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_var_definition_list_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attributes_repeat1] = { - .visible = false, - .named = false, - }, - [aux_sym_attribute_repeat1] = { - .visible = false, - .named = false, - }, - [alias_sym_interpolation_expression] = { - .visible = true, - .named = true, - }, -}; - -enum ts_field_identifiers { - field_arguments = 1, - field_attributes = 2, - field_block = 3, - field_body = 4, - field_capture_list = 5, - field_channel = 6, - field_condition = 7, - field_default_value = 8, - field_element = 9, - field_element_list = 10, - field_else_branch = 11, - field_end = 12, - field_expression = 13, - field_expression_list = 14, - field_field = 15, - field_function = 16, - field_generic_parameters = 17, - field_guard = 18, - field_index = 19, - field_initializer = 20, - field_key = 21, - field_left = 22, - field_locked_variables = 23, - field_modifiers = 24, - field_module = 25, - field_mutability = 26, - field_name = 27, - field_operand = 28, - field_operator = 29, - field_parameters = 30, - field_receiver = 31, - field_result = 32, - field_right = 33, - field_selected_variables = 34, - field_short_element_list = 35, - field_signature = 36, - field_size = 37, - field_start = 38, - field_static_receiver = 39, - field_type = 40, - field_type_parameters = 41, - field_types = 42, - field_update = 43, - field_value = 44, - field_var_list = 45, - field_variadic = 46, -}; - -static const char * const ts_field_names[] = { - [0] = NULL, - [field_arguments] = "arguments", - [field_attributes] = "attributes", - [field_block] = "block", - [field_body] = "body", - [field_capture_list] = "capture_list", - [field_channel] = "channel", - [field_condition] = "condition", - [field_default_value] = "default_value", - [field_element] = "element", - [field_element_list] = "element_list", - [field_else_branch] = "else_branch", - [field_end] = "end", - [field_expression] = "expression", - [field_expression_list] = "expression_list", - [field_field] = "field", - [field_function] = "function", - [field_generic_parameters] = "generic_parameters", - [field_guard] = "guard", - [field_index] = "index", - [field_initializer] = "initializer", - [field_key] = "key", - [field_left] = "left", - [field_locked_variables] = "locked_variables", - [field_modifiers] = "modifiers", - [field_module] = "module", - [field_mutability] = "mutability", - [field_name] = "name", - [field_operand] = "operand", - [field_operator] = "operator", - [field_parameters] = "parameters", - [field_receiver] = "receiver", - [field_result] = "result", - [field_right] = "right", - [field_selected_variables] = "selected_variables", - [field_short_element_list] = "short_element_list", - [field_signature] = "signature", - [field_size] = "size", - [field_start] = "start", - [field_static_receiver] = "static_receiver", - [field_type] = "type", - [field_type_parameters] = "type_parameters", - [field_types] = "types", - [field_update] = "update", - [field_value] = "value", - [field_var_list] = "var_list", - [field_variadic] = "variadic", -}; - -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { - [1] = {.index = 0, .length = 1}, - [2] = {.index = 1, .length = 1}, - [3] = {.index = 2, .length = 2}, - [4] = {.index = 4, .length = 2}, - [5] = {.index = 6, .length = 1}, - [6] = {.index = 6, .length = 1}, - [7] = {.index = 7, .length = 1}, - [8] = {.index = 8, .length = 1}, - [9] = {.index = 9, .length = 2}, - [10] = {.index = 11, .length = 2}, - [11] = {.index = 13, .length = 1}, - [12] = {.index = 14, .length = 2}, - [13] = {.index = 16, .length = 1}, - [14] = {.index = 17, .length = 2}, - [15] = {.index = 19, .length = 2}, - [16] = {.index = 21, .length = 2}, - [17] = {.index = 23, .length = 4}, - [18] = {.index = 27, .length = 1}, - [19] = {.index = 28, .length = 1}, - [20] = {.index = 29, .length = 2}, - [21] = {.index = 31, .length = 2}, - [22] = {.index = 33, .length = 2}, - [23] = {.index = 35, .length = 2}, - [24] = {.index = 37, .length = 1}, - [25] = {.index = 38, .length = 2}, - [26] = {.index = 40, .length = 3}, - [27] = {.index = 43, .length = 1}, - [28] = {.index = 44, .length = 2}, - [29] = {.index = 46, .length = 2}, - [30] = {.index = 48, .length = 1}, - [31] = {.index = 49, .length = 3}, - [32] = {.index = 52, .length = 2}, - [33] = {.index = 54, .length = 2}, - [34] = {.index = 56, .length = 1}, - [35] = {.index = 57, .length = 2}, - [36] = {.index = 59, .length = 2}, - [37] = {.index = 61, .length = 1}, - [38] = {.index = 62, .length = 2}, - [39] = {.index = 64, .length = 2}, - [40] = {.index = 66, .length = 2}, - [41] = {.index = 68, .length = 1}, - [42] = {.index = 69, .length = 3}, - [43] = {.index = 72, .length = 3}, - [44] = {.index = 75, .length = 3}, - [45] = {.index = 78, .length = 3}, - [46] = {.index = 81, .length = 3}, - [47] = {.index = 84, .length = 1}, - [48] = {.index = 85, .length = 1}, - [49] = {.index = 86, .length = 2}, - [51] = {.index = 88, .length = 2}, - [52] = {.index = 90, .length = 1}, - [53] = {.index = 91, .length = 3}, - [54] = {.index = 94, .length = 1}, - [55] = {.index = 95, .length = 3}, - [56] = {.index = 98, .length = 1}, - [57] = {.index = 99, .length = 2}, - [58] = {.index = 101, .length = 5}, - [59] = {.index = 106, .length = 1}, - [60] = {.index = 107, .length = 1}, - [62] = {.index = 108, .length = 2}, - [63] = {.index = 110, .length = 2}, - [64] = {.index = 112, .length = 2}, - [65] = {.index = 114, .length = 1}, - [66] = {.index = 115, .length = 2}, - [67] = {.index = 117, .length = 1}, - [68] = {.index = 118, .length = 3}, - [69] = {.index = 121, .length = 1}, - [70] = {.index = 122, .length = 1}, - [71] = {.index = 123, .length = 3}, - [72] = {.index = 126, .length = 2}, - [73] = {.index = 128, .length = 3}, - [74] = {.index = 131, .length = 3}, - [75] = {.index = 134, .length = 2}, - [76] = {.index = 136, .length = 2}, - [77] = {.index = 138, .length = 3}, - [78] = {.index = 141, .length = 3}, - [79] = {.index = 144, .length = 4}, - [80] = {.index = 148, .length = 4}, - [81] = {.index = 152, .length = 4}, - [82] = {.index = 156, .length = 4}, - [83] = {.index = 160, .length = 3}, - [84] = {.index = 163, .length = 2}, - [85] = {.index = 165, .length = 2}, - [86] = {.index = 167, .length = 1}, - [87] = {.index = 168, .length = 3}, - [88] = {.index = 171, .length = 2}, - [89] = {.index = 173, .length = 2}, - [90] = {.index = 175, .length = 2}, - [91] = {.index = 177, .length = 2}, - [92] = {.index = 179, .length = 3}, - [93] = {.index = 182, .length = 2}, - [94] = {.index = 184, .length = 3}, - [95] = {.index = 187, .length = 3}, - [96] = {.index = 190, .length = 3}, - [97] = {.index = 193, .length = 2}, - [98] = {.index = 195, .length = 4}, - [99] = {.index = 199, .length = 4}, - [100] = {.index = 203, .length = 4}, - [101] = {.index = 207, .length = 3}, - [102] = {.index = 210, .length = 3}, - [103] = {.index = 213, .length = 2}, - [104] = {.index = 215, .length = 4}, - [105] = {.index = 219, .length = 3}, - [106] = {.index = 222, .length = 4}, - [107] = {.index = 226, .length = 4}, - [108] = {.index = 230, .length = 5}, - [109] = {.index = 235, .length = 3}, - [110] = {.index = 238, .length = 3}, - [111] = {.index = 241, .length = 3}, - [112] = {.index = 244, .length = 4}, - [113] = {.index = 248, .length = 3}, - [114] = {.index = 251, .length = 3}, - [115] = {.index = 254, .length = 3}, - [116] = {.index = 257, .length = 3}, - [117] = {.index = 260, .length = 4}, - [118] = {.index = 264, .length = 4}, - [119] = {.index = 268, .length = 4}, - [120] = {.index = 272, .length = 4}, - [121] = {.index = 276, .length = 5}, - [122] = {.index = 281, .length = 5}, - [123] = {.index = 286, .length = 5}, - [124] = {.index = 291, .length = 4}, - [125] = {.index = 295, .length = 4}, - [126] = {.index = 299, .length = 4}, - [127] = {.index = 303, .length = 3}, - [128] = {.index = 306, .length = 5}, - [129] = {.index = 311, .length = 4}, - [130] = {.index = 315, .length = 3}, - [131] = {.index = 318, .length = 4}, - [132] = {.index = 322, .length = 4}, - [133] = {.index = 326, .length = 4}, - [134] = {.index = 330, .length = 5}, - [135] = {.index = 335, .length = 5}, - [136] = {.index = 340, .length = 5}, - [137] = {.index = 345, .length = 6}, - [138] = {.index = 351, .length = 4}, - [139] = {.index = 355, .length = 5}, - [140] = {.index = 360, .length = 5}, - [141] = {.index = 365, .length = 5}, - [142] = {.index = 370, .length = 5}, - [143] = {.index = 375, .length = 6}, - [144] = {.index = 381, .length = 5}, - [145] = {.index = 386, .length = 5}, - [146] = {.index = 391, .length = 6}, - [147] = {.index = 397, .length = 6}, -}; - -static const TSFieldMapEntry ts_field_map_entries[] = { - [0] = - {field_signature, 1}, - [1] = - {field_parameters, 0}, - [2] = - {field_operand, 1}, - {field_operator, 0}, - [4] = - {field_arguments, 1}, - {field_function, 0}, - [6] = - {field_name, 0}, - [7] = - {field_body, 1}, - [8] = - {field_expression_list, 1}, - [9] = - {field_arguments, 1}, - {field_name, 0}, - [11] = - {field_body, 1}, - {field_type, 0}, - [13] = - {field_expression, 1}, - [14] = - {field_name, 0}, - {field_value, 1, .inherited = true}, - [16] = - {field_type, 0}, - [17] = - {field_name, 1}, - {field_signature, 2}, - [19] = - {field_body, 2}, - {field_signature, 1}, - [21] = - {field_parameters, 0}, - {field_result, 1}, - [23] = - {field_attributes, 0, .inherited = true}, - {field_default_value, 0, .inherited = true}, - {field_name, 0, .inherited = true}, - {field_type, 0, .inherited = true}, - [27] = - {field_name, 1}, - [28] = - {field_element, 2}, - [29] = - {field_block, 2}, - {field_condition, 1}, - [31] = - {field_block, 2}, - {field_guard, 1}, - [33] = - {field_body, 2}, - {field_locked_variables, 1}, - [35] = - {field_modifiers, 0}, - {field_name, 1}, - [37] = - {field_body, 2}, - [38] = - {field_field, 2}, - {field_operand, 0}, - [40] = - {field_left, 0}, - {field_operator, 1}, - {field_right, 2}, - [43] = - {field_operator, 0}, - [44] = - {field_channel, 0}, - {field_value, 2}, - [46] = - {field_left, 0}, - {field_right, 2}, - [48] = - {field_block, 1}, - [49] = - {field_arguments, 2}, - {field_name, 0}, - {field_type_parameters, 1}, - [52] = - {field_module, 0}, - {field_name, 2}, - [54] = - {field_expression_list, 2}, - {field_var_list, 0}, - [56] = - {field_attributes, 0}, - [57] = - {field_key, 0}, - {field_value, 2}, - [59] = - {field_name, 0}, - {field_value, 2}, - [61] = - {field_value, 1}, - [62] = - {field_name, 1}, - {field_types, 3}, - [64] = - {field_type, 1}, - {field_variadic, 0}, - [66] = - {field_name, 0}, - {field_type, 1}, - [68] = - {field_type, 1}, - [69] = - {field_body, 3}, - {field_name, 1}, - {field_signature, 2}, - [72] = - {field_generic_parameters, 2}, - {field_name, 1}, - {field_signature, 3}, - [75] = - {field_name, 2}, - {field_receiver, 1}, - {field_signature, 3}, - [78] = - {field_body, 3}, - {field_generic_parameters, 1}, - {field_signature, 2}, - [81] = - {field_body, 3}, - {field_capture_list, 1}, - {field_signature, 2}, - [84] = - {field_element_list, 2}, - [85] = - {field_short_element_list, 2}, - [86] = - {field_generic_parameters, 2}, - {field_name, 1}, - [88] = - {field_element, 3}, - {field_size, 1}, - [90] = - {field_value, 2}, - [91] = - {field_block, 3}, - {field_condition, 1}, - {field_condition, 2}, - [94] = - {field_condition, 1}, - [95] = - {field_end, 0, .inherited = true}, - {field_operator, 0, .inherited = true}, - {field_start, 0, .inherited = true}, - [98] = - {field_selected_variables, 1}, - [99] = - {field_key, 1}, - {field_value, 3}, - [101] = - {field_end, 2, .inherited = true}, - {field_left, 0}, - {field_operator, 2, .inherited = true}, - {field_right, 2}, - {field_start, 2, .inherited = true}, - [106] = - {field_update, 2}, - [107] = - {field_initializer, 0}, - [108] = - {field_end, 1}, - {field_operator, 0}, - [110] = - {field_index, 2}, - {field_operand, 0}, - [112] = - {field_operator, 1}, - {field_start, 0}, - [114] = - {field_operand, 0}, - [115] = - {field_name, 2}, - {field_signature, 3}, - [117] = - {field_name, 2}, - [118] = - {field_left, 0}, - {field_left, 1}, - {field_right, 3}, - [121] = - {field_element_list, 1}, - [122] = - {field_short_element_list, 1}, - [123] = - {field_attributes, 0}, - {field_name, 2}, - {field_signature, 3}, - [126] = - {field_attributes, 0}, - {field_name, 2}, - [128] = - {field_generic_parameters, 2}, - {field_name, 1}, - {field_types, 4}, - [131] = - {field_name, 0}, - {field_type, 2}, - {field_variadic, 1}, - [134] = - {field_name, 1}, - {field_type, 2}, - [136] = - {field_type, 2}, - {field_variadic, 1}, - [138] = - {field_mutability, 0}, - {field_name, 1}, - {field_type, 2}, - [141] = - {field_name, 3}, - {field_signature, 4}, - {field_static_receiver, 1}, - [144] = - {field_body, 4}, - {field_generic_parameters, 2}, - {field_name, 1}, - {field_signature, 3}, - [148] = - {field_body, 4}, - {field_name, 2}, - {field_receiver, 1}, - {field_signature, 3}, - [152] = - {field_generic_parameters, 3}, - {field_name, 2}, - {field_receiver, 1}, - {field_signature, 4}, - [156] = - {field_body, 4}, - {field_capture_list, 1}, - {field_generic_parameters, 2}, - {field_signature, 3}, - [160] = - {field_attributes, 2}, - {field_name, 0}, - {field_type, 1}, - [163] = - {field_attributes, 1}, - {field_name, 0}, - [165] = - {field_name, 0}, - {field_signature, 1}, - [167] = - {field_else_branch, 1}, - [168] = - {field_block, 2}, - {field_condition, 1}, - {field_else_branch, 4}, - [171] = - {field_block, 1}, - {field_value, 0}, - [173] = - {field_condition, 1}, - {field_update, 3}, - [175] = - {field_initializer, 0}, - {field_update, 3}, - [177] = - {field_condition, 2}, - {field_initializer, 0}, - [179] = - {field_end, 2}, - {field_operator, 1}, - {field_start, 0}, - [182] = - {field_name, 2}, - {field_types, 4}, - [184] = - {field_body, 4}, - {field_name, 2}, - {field_signature, 3}, - [187] = - {field_generic_parameters, 3}, - {field_name, 2}, - {field_signature, 4}, - [190] = - {field_name, 3}, - {field_receiver, 2}, - {field_signature, 4}, - [193] = - {field_generic_parameters, 3}, - {field_name, 2}, - [195] = - {field_attributes, 0}, - {field_body, 4}, - {field_name, 2}, - {field_signature, 3}, - [199] = - {field_attributes, 0}, - {field_generic_parameters, 3}, - {field_name, 2}, - {field_signature, 4}, - [203] = - {field_attributes, 0}, - {field_name, 3}, - {field_receiver, 2}, - {field_signature, 4}, - [207] = - {field_attributes, 0}, - {field_generic_parameters, 3}, - {field_name, 2}, - [210] = - {field_attributes, 0}, - {field_name, 3}, - {field_signature, 4}, - [213] = - {field_attributes, 0}, - {field_name, 3}, - [215] = - {field_mutability, 0}, - {field_name, 1}, - {field_type, 3}, - {field_variadic, 2}, - [219] = - {field_mutability, 1}, - {field_name, 2}, - {field_type, 3}, - [222] = - {field_body, 5}, - {field_name, 3}, - {field_signature, 4}, - {field_static_receiver, 1}, - [226] = - {field_generic_parameters, 4}, - {field_name, 3}, - {field_signature, 5}, - {field_static_receiver, 1}, - [230] = - {field_body, 5}, - {field_generic_parameters, 3}, - {field_name, 2}, - {field_receiver, 1}, - {field_signature, 4}, - [235] = - {field_default_value, 3}, - {field_name, 0}, - {field_type, 1}, - [238] = - {field_attributes, 2}, - {field_name, 0}, - {field_signature, 1}, - [241] = - {field_generic_parameters, 1}, - {field_name, 0}, - {field_signature, 2}, - [244] = - {field_block, 3}, - {field_condition, 1}, - {field_condition, 2}, - {field_else_branch, 5}, - [248] = - {field_end, 1, .inherited = true}, - {field_operator, 1, .inherited = true}, - {field_start, 1, .inherited = true}, - [251] = - {field_condition, 2}, - {field_initializer, 0}, - {field_update, 4}, - [254] = - {field_generic_parameters, 3}, - {field_name, 2}, - {field_types, 5}, - [257] = - {field_name, 4}, - {field_signature, 5}, - {field_static_receiver, 2}, - [260] = - {field_body, 5}, - {field_generic_parameters, 3}, - {field_name, 2}, - {field_signature, 4}, - [264] = - {field_body, 5}, - {field_name, 3}, - {field_receiver, 2}, - {field_signature, 4}, - [268] = - {field_generic_parameters, 4}, - {field_name, 3}, - {field_receiver, 2}, - {field_signature, 5}, - [272] = - {field_attributes, 0}, - {field_name, 4}, - {field_signature, 5}, - {field_static_receiver, 2}, - [276] = - {field_attributes, 0}, - {field_body, 5}, - {field_generic_parameters, 3}, - {field_name, 2}, - {field_signature, 4}, - [281] = - {field_attributes, 0}, - {field_body, 5}, - {field_name, 3}, - {field_receiver, 2}, - {field_signature, 4}, - [286] = - {field_attributes, 0}, - {field_generic_parameters, 4}, - {field_name, 3}, - {field_receiver, 2}, - {field_signature, 5}, - [291] = - {field_attributes, 0}, - {field_body, 5}, - {field_name, 3}, - {field_signature, 4}, - [295] = - {field_attributes, 0}, - {field_generic_parameters, 4}, - {field_name, 3}, - {field_signature, 5}, - [299] = - {field_attributes, 0}, - {field_name, 4}, - {field_receiver, 3}, - {field_signature, 5}, - [303] = - {field_attributes, 0}, - {field_generic_parameters, 4}, - {field_name, 3}, - [306] = - {field_body, 6}, - {field_generic_parameters, 4}, - {field_name, 3}, - {field_signature, 5}, - {field_static_receiver, 1}, - [311] = - {field_attributes, 4}, - {field_default_value, 3}, - {field_name, 0}, - {field_type, 1}, - [315] = - {field_attributes, 3}, - {field_name, 0}, - {field_value, 2}, - [318] = - {field_attributes, 3}, - {field_generic_parameters, 1}, - {field_name, 0}, - {field_signature, 2}, - [322] = - {field_body, 6}, - {field_name, 4}, - {field_signature, 5}, - {field_static_receiver, 2}, - [326] = - {field_generic_parameters, 5}, - {field_name, 4}, - {field_signature, 6}, - {field_static_receiver, 2}, - [330] = - {field_body, 6}, - {field_generic_parameters, 4}, - {field_name, 3}, - {field_receiver, 2}, - {field_signature, 5}, - [335] = - {field_attributes, 0}, - {field_body, 6}, - {field_name, 4}, - {field_signature, 5}, - {field_static_receiver, 2}, - [340] = - {field_attributes, 0}, - {field_generic_parameters, 5}, - {field_name, 4}, - {field_signature, 6}, - {field_static_receiver, 2}, - [345] = - {field_attributes, 0}, - {field_body, 6}, - {field_generic_parameters, 4}, - {field_name, 3}, - {field_receiver, 2}, - {field_signature, 5}, - [351] = - {field_attributes, 0}, - {field_name, 5}, - {field_signature, 6}, - {field_static_receiver, 3}, - [355] = - {field_attributes, 0}, - {field_body, 6}, - {field_generic_parameters, 4}, - {field_name, 3}, - {field_signature, 5}, - [360] = - {field_attributes, 0}, - {field_body, 6}, - {field_name, 4}, - {field_receiver, 3}, - {field_signature, 5}, - [365] = - {field_attributes, 0}, - {field_generic_parameters, 5}, - {field_name, 4}, - {field_receiver, 3}, - {field_signature, 6}, - [370] = - {field_body, 7}, - {field_generic_parameters, 5}, - {field_name, 4}, - {field_signature, 6}, - {field_static_receiver, 2}, - [375] = - {field_attributes, 0}, - {field_body, 7}, - {field_generic_parameters, 5}, - {field_name, 4}, - {field_signature, 6}, - {field_static_receiver, 2}, - [381] = - {field_attributes, 0}, - {field_body, 7}, - {field_name, 5}, - {field_signature, 6}, - {field_static_receiver, 3}, - [386] = - {field_attributes, 0}, - {field_generic_parameters, 6}, - {field_name, 5}, - {field_signature, 7}, - {field_static_receiver, 3}, - [391] = - {field_attributes, 0}, - {field_body, 7}, - {field_generic_parameters, 5}, - {field_name, 4}, - {field_receiver, 3}, - {field_signature, 6}, - [397] = - {field_attributes, 0}, - {field_body, 8}, - {field_generic_parameters, 6}, - {field_name, 5}, - {field_signature, 7}, - {field_static_receiver, 3}, -}; - -static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { - [0] = {0}, - [5] = { - [0] = sym_reference_expression, - }, - [50] = { - [1] = sym_plain_type, - }, - [61] = { - [1] = alias_sym_interpolation_expression, - }, - [75] = { - [2] = sym_plain_type, - }, - [105] = { - [3] = sym_plain_type, - }, -}; - -static const uint16_t ts_non_terminal_alias_map[] = { - sym__expression, 2, - sym__expression, - alias_sym_interpolation_expression, - sym__plain_type_without_special, 2, - sym__plain_type_without_special, - sym_plain_type, - 0, -}; - -static const TSStateId ts_primary_state_ids[STATE_COUNT] = { - [0] = 0, - [1] = 1, - [2] = 2, - [3] = 3, - [4] = 4, - [5] = 5, - [6] = 6, - [7] = 7, - [8] = 8, - [9] = 9, - [10] = 9, - [11] = 9, - [12] = 9, - [13] = 9, - [14] = 9, - [15] = 9, - [16] = 9, - [17] = 9, - [18] = 9, - [19] = 9, - [20] = 9, - [21] = 9, - [22] = 9, - [23] = 9, - [24] = 9, - [25] = 9, - [26] = 9, - [27] = 9, - [28] = 9, - [29] = 9, - [30] = 9, - [31] = 9, - [32] = 9, - [33] = 9, - [34] = 9, - [35] = 35, - [36] = 35, - [37] = 35, - [38] = 35, - [39] = 35, - [40] = 35, - [41] = 35, - [42] = 35, - [43] = 35, - [44] = 35, - [45] = 35, - [46] = 35, - [47] = 35, - [48] = 35, - [49] = 35, - [50] = 35, - [51] = 35, - [52] = 35, - [53] = 35, - [54] = 35, - [55] = 55, - [56] = 56, - [57] = 57, - [58] = 58, - [59] = 58, - [60] = 60, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 64, - [65] = 65, - [66] = 66, - [67] = 67, - [68] = 67, - [69] = 67, - [70] = 67, - [71] = 67, - [72] = 67, - [73] = 67, - [74] = 67, - [75] = 67, - [76] = 67, - [77] = 67, - [78] = 67, - [79] = 67, - [80] = 80, - [81] = 80, - [82] = 80, - [83] = 80, - [84] = 80, - [85] = 80, - [86] = 80, - [87] = 80, - [88] = 80, - [89] = 80, - [90] = 80, - [91] = 80, - [92] = 80, - [93] = 80, - [94] = 80, - [95] = 80, - [96] = 80, - [97] = 80, - [98] = 80, - [99] = 80, - [100] = 80, - [101] = 80, - [102] = 102, - [103] = 102, - [104] = 104, - [105] = 104, - [106] = 106, - [107] = 104, - [108] = 108, - [109] = 106, - [110] = 104, - [111] = 106, - [112] = 108, - [113] = 104, - [114] = 108, - [115] = 106, - [116] = 104, - [117] = 106, - [118] = 108, - [119] = 106, - [120] = 104, - [121] = 104, - [122] = 108, - [123] = 108, - [124] = 104, - [125] = 106, - [126] = 108, - [127] = 104, - [128] = 108, - [129] = 104, - [130] = 106, - [131] = 108, - [132] = 108, - [133] = 106, - [134] = 104, - [135] = 106, - [136] = 108, - [137] = 108, - [138] = 106, - [139] = 106, - [140] = 106, - [141] = 104, - [142] = 108, - [143] = 143, - [144] = 143, - [145] = 143, - [146] = 146, - [147] = 143, - [148] = 143, - [149] = 143, - [150] = 143, - [151] = 143, - [152] = 143, - [153] = 143, - [154] = 143, - [155] = 143, - [156] = 143, - [157] = 157, - [158] = 157, - [159] = 157, - [160] = 157, - [161] = 157, - [162] = 157, - [163] = 157, - [164] = 157, - [165] = 157, - [166] = 157, - [167] = 157, - [168] = 157, - [169] = 157, - [170] = 170, - [171] = 171, - [172] = 172, - [173] = 173, - [174] = 174, - [175] = 174, - [176] = 174, - [177] = 177, - [178] = 178, - [179] = 178, - [180] = 174, - [181] = 174, - [182] = 177, - [183] = 177, - [184] = 177, - [185] = 174, - [186] = 178, - [187] = 177, - [188] = 177, - [189] = 174, - [190] = 178, - [191] = 177, - [192] = 177, - [193] = 174, - [194] = 178, - [195] = 178, - [196] = 174, - [197] = 178, - [198] = 178, - [199] = 178, - [200] = 177, - [201] = 177, - [202] = 178, - [203] = 178, - [204] = 178, - [205] = 174, - [206] = 174, - [207] = 174, - [208] = 177, - [209] = 177, - [210] = 210, - [211] = 211, - [212] = 212, - [213] = 61, - [214] = 214, - [215] = 215, - [216] = 66, - [217] = 62, - [218] = 65, - [219] = 64, - [220] = 63, - [221] = 221, - [222] = 221, - [223] = 223, - [224] = 224, - [225] = 223, - [226] = 223, - [227] = 224, - [228] = 228, - [229] = 221, - [230] = 228, - [231] = 221, - [232] = 223, - [233] = 228, - [234] = 234, - [235] = 228, - [236] = 236, - [237] = 224, - [238] = 223, - [239] = 221, - [240] = 221, - [241] = 228, - [242] = 224, - [243] = 221, - [244] = 224, - [245] = 234, - [246] = 228, - [247] = 228, - [248] = 221, - [249] = 223, - [250] = 228, - [251] = 223, - [252] = 223, - [253] = 223, - [254] = 223, - [255] = 223, - [256] = 228, - [257] = 224, - [258] = 223, - [259] = 223, - [260] = 221, - [261] = 261, - [262] = 223, - [263] = 223, - [264] = 264, - [265] = 265, - [266] = 223, - [267] = 228, - [268] = 221, - [269] = 228, - [270] = 224, - [271] = 221, - [272] = 224, - [273] = 228, - [274] = 224, - [275] = 221, - [276] = 223, - [277] = 223, - [278] = 224, - [279] = 223, - [280] = 280, - [281] = 228, - [282] = 221, - [283] = 223, - [284] = 224, - [285] = 223, - [286] = 224, - [287] = 224, - [288] = 223, - [289] = 289, - [290] = 290, - [291] = 290, - [292] = 292, - [293] = 293, - [294] = 294, - [295] = 295, - [296] = 296, - [297] = 297, - [298] = 298, - [299] = 295, - [300] = 296, - [301] = 301, - [302] = 290, - [303] = 303, - [304] = 294, - [305] = 293, - [306] = 296, - [307] = 295, - [308] = 293, - [309] = 296, - [310] = 296, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 289, - [315] = 295, - [316] = 295, - [317] = 293, - [318] = 296, - [319] = 294, - [320] = 293, - [321] = 295, - [322] = 296, - [323] = 295, - [324] = 290, - [325] = 293, - [326] = 326, - [327] = 294, - [328] = 293, - [329] = 295, - [330] = 296, - [331] = 331, - [332] = 290, - [333] = 290, - [334] = 313, - [335] = 294, - [336] = 290, - [337] = 293, - [338] = 295, - [339] = 290, - [340] = 290, - [341] = 296, - [342] = 342, - [343] = 290, - [344] = 294, - [345] = 290, - [346] = 290, - [347] = 296, - [348] = 296, - [349] = 294, - [350] = 295, - [351] = 295, - [352] = 293, - [353] = 353, - [354] = 354, - [355] = 313, - [356] = 296, - [357] = 293, - [358] = 290, - [359] = 296, - [360] = 296, - [361] = 294, - [362] = 313, - [363] = 363, - [364] = 294, - [365] = 296, - [366] = 294, - [367] = 367, - [368] = 296, - [369] = 289, - [370] = 296, - [371] = 294, - [372] = 290, - [373] = 373, - [374] = 290, - [375] = 375, - [376] = 296, - [377] = 296, - [378] = 293, - [379] = 289, - [380] = 294, - [381] = 296, - [382] = 296, - [383] = 295, - [384] = 296, - [385] = 293, - [386] = 342, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, - [392] = 387, - [393] = 389, - [394] = 387, - [395] = 395, - [396] = 396, - [397] = 387, - [398] = 387, - [399] = 389, - [400] = 387, - [401] = 401, - [402] = 387, - [403] = 403, - [404] = 387, - [405] = 405, - [406] = 387, - [407] = 403, - [408] = 387, - [409] = 387, - [410] = 387, - [411] = 387, - [412] = 388, - [413] = 387, - [414] = 388, - [415] = 388, - [416] = 416, - [417] = 388, - [418] = 403, - [419] = 342, - [420] = 388, - [421] = 388, - [422] = 389, - [423] = 423, - [424] = 388, - [425] = 425, - [426] = 388, - [427] = 387, - [428] = 388, - [429] = 403, - [430] = 388, - [431] = 389, - [432] = 388, - [433] = 389, - [434] = 388, - [435] = 387, - [436] = 436, - [437] = 437, - [438] = 438, - [439] = 439, - [440] = 436, - [441] = 437, - [442] = 442, - [443] = 438, - [444] = 444, - [445] = 445, - [446] = 446, - [447] = 447, - [448] = 444, - [449] = 439, - [450] = 450, - [451] = 451, - [452] = 452, - [453] = 452, - [454] = 451, - [455] = 439, - [456] = 456, - [457] = 457, - [458] = 445, - [459] = 459, - [460] = 452, - [461] = 461, - [462] = 462, - [463] = 463, - [464] = 444, - [465] = 437, - [466] = 466, - [467] = 342, - [468] = 468, - [469] = 438, - [470] = 461, - [471] = 436, - [472] = 466, - [473] = 473, - [474] = 468, - [475] = 473, - [476] = 476, - [477] = 477, - [478] = 439, - [479] = 451, - [480] = 476, - [481] = 466, - [482] = 452, - [483] = 342, - [484] = 450, - [485] = 468, - [486] = 445, - [487] = 487, - [488] = 463, - [489] = 437, - [490] = 463, - [491] = 477, - [492] = 466, - [493] = 493, - [494] = 494, - [495] = 342, - [496] = 468, - [497] = 497, - [498] = 437, - [499] = 445, - [500] = 438, - [501] = 501, - [502] = 461, - [503] = 477, - [504] = 466, - [505] = 444, - [506] = 493, - [507] = 494, - [508] = 452, - [509] = 473, - [510] = 468, - [511] = 461, - [512] = 497, - [513] = 451, - [514] = 439, - [515] = 437, - [516] = 436, - [517] = 439, - [518] = 451, - [519] = 473, - [520] = 477, - [521] = 521, - [522] = 439, - [523] = 451, - [524] = 466, - [525] = 493, - [526] = 494, - [527] = 342, - [528] = 468, - [529] = 497, - [530] = 530, - [531] = 452, - [532] = 439, - [533] = 451, - [534] = 452, - [535] = 445, - [536] = 444, - [537] = 461, - [538] = 445, - [539] = 473, - [540] = 444, - [541] = 445, - [542] = 463, - [543] = 477, - [544] = 466, - [545] = 493, - [546] = 452, - [547] = 445, - [548] = 444, - [549] = 494, - [550] = 461, - [551] = 473, - [552] = 342, - [553] = 468, - [554] = 437, - [555] = 497, - [556] = 436, - [557] = 557, - [558] = 501, - [559] = 497, - [560] = 468, - [561] = 461, - [562] = 456, - [563] = 439, - [564] = 451, - [565] = 444, - [566] = 473, - [567] = 461, - [568] = 463, - [569] = 569, - [570] = 473, - [571] = 447, - [572] = 494, - [573] = 462, - [574] = 436, - [575] = 497, - [576] = 493, - [577] = 466, - [578] = 477, - [579] = 468, - [580] = 342, - [581] = 494, - [582] = 463, - [583] = 462, - [584] = 493, - [585] = 466, - [586] = 477, - [587] = 466, - [588] = 493, - [589] = 494, - [590] = 438, - [591] = 342, - [592] = 468, - [593] = 497, - [594] = 439, - [595] = 437, - [596] = 596, - [597] = 597, - [598] = 463, - [599] = 497, - [600] = 600, - [601] = 452, - [602] = 445, - [603] = 444, - [604] = 461, - [605] = 473, - [606] = 439, - [607] = 473, - [608] = 451, - [609] = 468, - [610] = 342, - [611] = 457, - [612] = 557, - [613] = 494, - [614] = 493, - [615] = 452, - [616] = 466, - [617] = 477, - [618] = 445, - [619] = 473, - [620] = 444, - [621] = 461, - [622] = 473, - [623] = 477, - [624] = 461, - [625] = 461, - [626] = 466, - [627] = 447, - [628] = 493, - [629] = 494, - [630] = 342, - [631] = 468, - [632] = 466, - [633] = 497, - [634] = 444, - [635] = 445, - [636] = 452, - [637] = 451, - [638] = 439, - [639] = 462, - [640] = 451, - [641] = 451, - [642] = 497, - [643] = 452, - [644] = 445, - [645] = 494, - [646] = 444, - [647] = 493, - [648] = 477, - [649] = 461, - [650] = 473, - [651] = 439, - [652] = 473, - [653] = 451, - [654] = 468, - [655] = 342, - [656] = 452, - [657] = 445, - [658] = 466, - [659] = 461, - [660] = 444, - [661] = 477, - [662] = 466, - [663] = 444, - [664] = 493, - [665] = 445, - [666] = 494, - [667] = 446, - [668] = 452, - [669] = 451, - [670] = 439, - [671] = 438, - [672] = 461, - [673] = 342, - [674] = 473, - [675] = 468, - [676] = 497, - [677] = 439, - [678] = 451, - [679] = 452, - [680] = 445, - [681] = 444, - [682] = 461, - [683] = 439, - [684] = 597, - [685] = 451, - [686] = 452, - [687] = 473, - [688] = 445, - [689] = 444, - [690] = 461, - [691] = 473, - [692] = 436, - [693] = 436, - [694] = 439, - [695] = 451, - [696] = 462, - [697] = 442, - [698] = 439, - [699] = 477, - [700] = 466, - [701] = 493, - [702] = 438, - [703] = 451, - [704] = 494, - [705] = 342, - [706] = 468, - [707] = 497, - [708] = 708, - [709] = 452, - [710] = 445, - [711] = 452, - [712] = 445, - [713] = 444, - [714] = 461, - [715] = 444, - [716] = 473, - [717] = 461, - [718] = 473, - [719] = 463, - [720] = 463, - [721] = 497, - [722] = 473, - [723] = 437, - [724] = 468, - [725] = 477, - [726] = 466, - [727] = 497, - [728] = 493, - [729] = 468, - [730] = 342, - [731] = 494, - [732] = 493, - [733] = 494, - [734] = 734, - [735] = 342, - [736] = 466, - [737] = 737, - [738] = 468, - [739] = 497, - [740] = 477, - [741] = 342, - [742] = 494, - [743] = 493, - [744] = 466, - [745] = 462, - [746] = 477, - [747] = 497, - [748] = 473, - [749] = 462, - [750] = 750, - [751] = 461, - [752] = 444, - [753] = 445, - [754] = 600, - [755] = 438, - [756] = 452, - [757] = 462, - [758] = 494, - [759] = 493, - [760] = 477, - [761] = 468, - [762] = 436, - [763] = 477, - [764] = 342, - [765] = 466, - [766] = 463, - [767] = 437, - [768] = 438, - [769] = 436, - [770] = 462, - [771] = 462, - [772] = 477, - [773] = 597, - [774] = 466, - [775] = 493, - [776] = 494, - [777] = 342, - [778] = 468, - [779] = 497, - [780] = 466, - [781] = 462, - [782] = 451, - [783] = 439, - [784] = 597, - [785] = 493, - [786] = 750, - [787] = 597, - [788] = 459, - [789] = 597, - [790] = 494, - [791] = 439, - [792] = 792, - [793] = 463, - [794] = 342, - [795] = 597, - [796] = 437, - [797] = 438, - [798] = 597, - [799] = 436, - [800] = 468, - [801] = 436, - [802] = 451, - [803] = 477, - [804] = 466, - [805] = 487, - [806] = 497, - [807] = 497, - [808] = 468, - [809] = 493, - [810] = 463, - [811] = 494, - [812] = 342, - [813] = 342, - [814] = 439, - [815] = 462, - [816] = 494, - [817] = 597, - [818] = 493, - [819] = 477, - [820] = 466, - [821] = 493, - [822] = 494, - [823] = 342, - [824] = 468, - [825] = 497, - [826] = 451, - [827] = 597, - [828] = 452, - [829] = 829, - [830] = 597, - [831] = 452, - [832] = 468, - [833] = 437, - [834] = 497, - [835] = 597, - [836] = 438, - [837] = 597, - [838] = 436, - [839] = 445, - [840] = 438, - [841] = 445, - [842] = 444, - [843] = 462, - [844] = 444, - [845] = 461, - [846] = 477, - [847] = 847, - [848] = 848, - [849] = 849, - [850] = 850, - [851] = 851, - [852] = 852, - [853] = 853, - [854] = 854, - [855] = 855, - [856] = 856, - [857] = 857, - [858] = 858, - [859] = 859, - [860] = 860, - [861] = 861, - [862] = 862, - [863] = 863, - [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, - [868] = 868, - [869] = 869, - [870] = 870, - [871] = 871, - [872] = 872, - [873] = 873, - [874] = 874, - [875] = 875, - [876] = 876, - [877] = 877, - [878] = 878, - [879] = 879, - [880] = 880, - [881] = 881, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 885, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 890, - [891] = 891, - [892] = 892, - [893] = 893, - [894] = 894, - [895] = 708, - [896] = 896, - [897] = 897, - [898] = 898, - [899] = 899, - [900] = 900, - [901] = 901, - [902] = 902, - [903] = 903, - [904] = 904, - [905] = 905, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 925, - [926] = 926, - [927] = 927, - [928] = 928, - [929] = 929, - [930] = 930, - [931] = 931, - [932] = 932, - [933] = 893, - [934] = 889, - [935] = 908, - [936] = 936, - [937] = 937, - [938] = 938, - [939] = 939, - [940] = 940, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 944, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 889, - [950] = 893, - [951] = 951, - [952] = 952, - [953] = 953, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 303, - [960] = 373, - [961] = 363, - [962] = 962, - [963] = 354, - [964] = 297, - [965] = 292, - [966] = 353, - [967] = 65, - [968] = 301, - [969] = 62, - [970] = 311, - [971] = 312, - [972] = 63, - [973] = 973, - [974] = 64, - [975] = 66, - [976] = 367, - [977] = 326, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 981, - [982] = 311, - [983] = 301, - [984] = 363, - [985] = 367, - [986] = 391, - [987] = 390, - [988] = 303, - [989] = 353, - [990] = 297, - [991] = 312, - [992] = 501, - [993] = 596, - [994] = 521, - [995] = 501, - [996] = 557, - [997] = 569, - [998] = 557, - [999] = 893, - [1000] = 859, - [1001] = 906, - [1002] = 907, - [1003] = 885, - [1004] = 955, - [1005] = 863, - [1006] = 905, - [1007] = 904, - [1008] = 883, - [1009] = 869, - [1010] = 865, - [1011] = 708, - [1012] = 858, - [1013] = 879, - [1014] = 855, - [1015] = 852, - [1016] = 877, - [1017] = 871, - [1018] = 938, - [1019] = 870, - [1020] = 851, - [1021] = 940, - [1022] = 918, - [1023] = 897, - [1024] = 894, - [1025] = 922, - [1026] = 901, - [1027] = 868, - [1028] = 860, - [1029] = 849, - [1030] = 920, - [1031] = 932, - [1032] = 930, - [1033] = 924, - [1034] = 923, - [1035] = 848, - [1036] = 902, - [1037] = 900, - [1038] = 937, - [1039] = 919, - [1040] = 867, - [1041] = 853, - [1042] = 888, - [1043] = 927, - [1044] = 926, - [1045] = 880, - [1046] = 891, - [1047] = 942, - [1048] = 944, - [1049] = 854, - [1050] = 954, - [1051] = 953, - [1052] = 850, - [1053] = 856, - [1054] = 857, - [1055] = 952, - [1056] = 941, - [1057] = 917, - [1058] = 914, - [1059] = 898, - [1060] = 896, - [1061] = 908, - [1062] = 912, - [1063] = 910, - [1064] = 909, - [1065] = 890, - [1066] = 884, - [1067] = 943, - [1068] = 911, - [1069] = 956, - [1070] = 916, - [1071] = 915, - [1072] = 866, - [1073] = 913, - [1074] = 847, - [1075] = 862, - [1076] = 861, - [1077] = 945, - [1078] = 875, - [1079] = 893, - [1080] = 876, - [1081] = 872, - [1082] = 939, - [1083] = 921, - [1084] = 903, - [1085] = 899, - [1086] = 889, - [1087] = 887, - [1088] = 886, - [1089] = 892, - [1090] = 864, - [1091] = 882, - [1092] = 881, - [1093] = 878, - [1094] = 908, - [1095] = 951, - [1096] = 936, - [1097] = 874, - [1098] = 873, - [1099] = 889, - [1100] = 948, - [1101] = 892, - [1102] = 931, - [1103] = 946, - [1104] = 947, - [1105] = 925, - [1106] = 708, - [1107] = 929, - [1108] = 928, - [1109] = 64, - [1110] = 63, - [1111] = 65, - [1112] = 66, - [1113] = 62, - [1114] = 66, - [1115] = 62, - [1116] = 64, - [1117] = 63, - [1118] = 64, - [1119] = 65, - [1120] = 66, - [1121] = 62, - [1122] = 1122, - [1123] = 63, - [1124] = 65, - [1125] = 66, - [1126] = 62, - [1127] = 64, - [1128] = 297, - [1129] = 353, - [1130] = 312, - [1131] = 301, - [1132] = 303, - [1133] = 1133, - [1134] = 354, - [1135] = 363, - [1136] = 367, - [1137] = 373, - [1138] = 1138, - [1139] = 292, - [1140] = 311, - [1141] = 63, - [1142] = 63, - [1143] = 908, - [1144] = 63, - [1145] = 390, - [1146] = 65, - [1147] = 1147, - [1148] = 66, - [1149] = 64, - [1150] = 391, - [1151] = 62, - [1152] = 64, - [1153] = 66, - [1154] = 65, - [1155] = 1147, - [1156] = 62, - [1157] = 65, - [1158] = 501, - [1159] = 557, - [1160] = 596, - [1161] = 557, - [1162] = 569, - [1163] = 501, - [1164] = 521, - [1165] = 881, - [1166] = 900, - [1167] = 874, - [1168] = 938, - [1169] = 937, - [1170] = 927, - [1171] = 926, - [1172] = 901, - [1173] = 922, - [1174] = 859, - [1175] = 872, - [1176] = 876, - [1177] = 898, - [1178] = 896, - [1179] = 875, - [1180] = 890, - [1181] = 884, - [1182] = 913, - [1183] = 915, - [1184] = 916, - [1185] = 956, - [1186] = 943, - [1187] = 866, - [1188] = 847, - [1189] = 862, - [1190] = 861, - [1191] = 909, - [1192] = 910, - [1193] = 912, - [1194] = 914, - [1195] = 917, - [1196] = 941, - [1197] = 873, - [1198] = 952, - [1199] = 953, - [1200] = 954, - [1201] = 945, - [1202] = 944, - [1203] = 942, - [1204] = 864, - [1205] = 891, - [1206] = 921, - [1207] = 708, - [1208] = 929, - [1209] = 858, - [1210] = 851, - [1211] = 852, - [1212] = 855, - [1213] = 906, - [1214] = 928, - [1215] = 880, - [1216] = 931, - [1217] = 865, - [1218] = 903, - [1219] = 899, - [1220] = 887, - [1221] = 886, - [1222] = 882, - [1223] = 878, - [1224] = 888, - [1225] = 908, - [1226] = 907, - [1227] = 902, - [1228] = 848, - [1229] = 923, - [1230] = 924, - [1231] = 849, - [1232] = 860, - [1233] = 868, - [1234] = 892, - [1235] = 870, - [1236] = 871, - [1237] = 877, - [1238] = 869, - [1239] = 879, - [1240] = 946, - [1241] = 947, - [1242] = 911, - [1243] = 948, - [1244] = 885, - [1245] = 883, - [1246] = 889, - [1247] = 893, - [1248] = 925, - [1249] = 894, - [1250] = 904, - [1251] = 897, - [1252] = 905, - [1253] = 857, - [1254] = 856, - [1255] = 850, - [1256] = 854, - [1257] = 853, - [1258] = 951, - [1259] = 867, - [1260] = 919, - [1261] = 920, - [1262] = 930, - [1263] = 932, - [1264] = 939, - [1265] = 940, - [1266] = 918, - [1267] = 863, - [1268] = 955, - [1269] = 936, - [1270] = 354, - [1271] = 363, - [1272] = 367, - [1273] = 373, - [1274] = 297, - [1275] = 292, - [1276] = 353, - [1277] = 303, - [1278] = 301, - [1279] = 311, - [1280] = 312, - [1281] = 1281, - [1282] = 908, - [1283] = 390, - [1284] = 391, - [1285] = 1285, - [1286] = 923, - [1287] = 909, - [1288] = 63, - [1289] = 557, - [1290] = 501, - [1291] = 859, - [1292] = 1292, - [1293] = 1293, - [1294] = 521, - [1295] = 557, - [1296] = 596, - [1297] = 910, - [1298] = 912, - [1299] = 569, - [1300] = 924, - [1301] = 848, - [1302] = 501, - [1303] = 856, - [1304] = 708, - [1305] = 875, - [1306] = 911, - [1307] = 951, - [1308] = 926, - [1309] = 881, - [1310] = 927, - [1311] = 936, - [1312] = 882, - [1313] = 886, - [1314] = 887, - [1315] = 899, - [1316] = 903, - [1317] = 948, - [1318] = 913, - [1319] = 905, - [1320] = 921, - [1321] = 931, - [1322] = 929, - [1323] = 915, - [1324] = 916, - [1325] = 956, - [1326] = 943, - [1327] = 928, - [1328] = 937, - [1329] = 938, - [1330] = 945, - [1331] = 925, - [1332] = 893, - [1333] = 947, - [1334] = 914, - [1335] = 917, - [1336] = 941, - [1337] = 952, - [1338] = 889, - [1339] = 946, - [1340] = 872, - [1341] = 876, - [1342] = 953, - [1343] = 954, - [1344] = 898, - [1345] = 896, - [1346] = 944, - [1347] = 908, - [1348] = 1348, - [1349] = 904, - [1350] = 891, - [1351] = 874, - [1352] = 857, - [1353] = 880, - [1354] = 850, - [1355] = 854, - [1356] = 853, - [1357] = 867, - [1358] = 919, - [1359] = 920, - [1360] = 930, - [1361] = 932, - [1362] = 878, - [1363] = 939, - [1364] = 940, - [1365] = 888, - [1366] = 918, - [1367] = 890, - [1368] = 892, - [1369] = 900, - [1370] = 897, - [1371] = 902, - [1372] = 894, - [1373] = 66, - [1374] = 849, - [1375] = 860, - [1376] = 868, - [1377] = 64, - [1378] = 861, - [1379] = 885, - [1380] = 862, - [1381] = 847, - [1382] = 870, - [1383] = 871, - [1384] = 877, - [1385] = 866, - [1386] = 884, - [1387] = 879, - [1388] = 1388, - [1389] = 65, - [1390] = 883, - [1391] = 62, - [1392] = 869, - [1393] = 865, - [1394] = 942, - [1395] = 858, - [1396] = 863, - [1397] = 955, - [1398] = 855, - [1399] = 907, - [1400] = 864, - [1401] = 906, - [1402] = 873, - [1403] = 901, - [1404] = 922, - [1405] = 852, - [1406] = 851, - [1407] = 66, - [1408] = 64, - [1409] = 62, - [1410] = 63, - [1411] = 521, - [1412] = 63, - [1413] = 65, - [1414] = 62, - [1415] = 1415, - [1416] = 1416, - [1417] = 1417, - [1418] = 946, - [1419] = 947, - [1420] = 1420, - [1421] = 908, - [1422] = 1422, - [1423] = 1423, - [1424] = 1424, - [1425] = 64, - [1426] = 66, - [1427] = 896, - [1428] = 1428, - [1429] = 1429, - [1430] = 937, - [1431] = 1431, - [1432] = 890, - [1433] = 899, - [1434] = 1434, - [1435] = 882, - [1436] = 911, - [1437] = 884, - [1438] = 948, - [1439] = 1439, - [1440] = 1440, - [1441] = 1441, - [1442] = 921, - [1443] = 936, - [1444] = 945, - [1445] = 1445, - [1446] = 931, - [1447] = 1447, - [1448] = 65, - [1449] = 1449, - [1450] = 1450, - [1451] = 878, - [1452] = 1452, - [1453] = 1453, - [1454] = 887, - [1455] = 1455, - [1456] = 1456, - [1457] = 929, - [1458] = 928, - [1459] = 1459, - [1460] = 1460, - [1461] = 1461, - [1462] = 1462, - [1463] = 927, - [1464] = 926, - [1465] = 898, - [1466] = 925, - [1467] = 886, - [1468] = 1468, - [1469] = 1469, - [1470] = 866, - [1471] = 1471, - [1472] = 903, - [1473] = 1473, - [1474] = 862, - [1475] = 938, - [1476] = 847, - [1477] = 1477, - [1478] = 1478, - [1479] = 1479, - [1480] = 861, - [1481] = 951, - [1482] = 1482, - [1483] = 881, - [1484] = 1484, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1488, - [1489] = 1489, - [1490] = 1490, - [1491] = 1491, - [1492] = 858, - [1493] = 1493, - [1494] = 1494, - [1495] = 1495, - [1496] = 1496, - [1497] = 1497, - [1498] = 1498, - [1499] = 1499, - [1500] = 1500, - [1501] = 1501, - [1502] = 1502, - [1503] = 1503, - [1504] = 1504, - [1505] = 1505, - [1506] = 1506, - [1507] = 1507, - [1508] = 1508, - [1509] = 63, - [1510] = 1510, - [1511] = 1511, - [1512] = 1512, - [1513] = 1513, - [1514] = 1514, - [1515] = 1515, - [1516] = 1516, - [1517] = 1517, - [1518] = 1518, - [1519] = 1519, - [1520] = 1520, - [1521] = 1521, - [1522] = 1522, - [1523] = 1523, - [1524] = 1524, - [1525] = 1525, - [1526] = 501, - [1527] = 1527, - [1528] = 1528, - [1529] = 1529, - [1530] = 1530, - [1531] = 1531, - [1532] = 1532, - [1533] = 1533, - [1534] = 1534, - [1535] = 1535, - [1536] = 1536, - [1537] = 1537, - [1538] = 1538, - [1539] = 1539, - [1540] = 1540, - [1541] = 1541, - [1542] = 1542, - [1543] = 1543, - [1544] = 1544, - [1545] = 1545, - [1546] = 1546, - [1547] = 1547, - [1548] = 1548, - [1549] = 1549, - [1550] = 1550, - [1551] = 1551, - [1552] = 1552, - [1553] = 1553, - [1554] = 1554, - [1555] = 1555, - [1556] = 1556, - [1557] = 1557, - [1558] = 1558, - [1559] = 1559, - [1560] = 1560, - [1561] = 1561, - [1562] = 1562, - [1563] = 1563, - [1564] = 1564, - [1565] = 1565, - [1566] = 1566, - [1567] = 1567, - [1568] = 557, - [1569] = 1569, - [1570] = 1570, - [1571] = 1571, - [1572] = 1572, - [1573] = 1573, - [1574] = 1574, - [1575] = 1575, - [1576] = 1576, - [1577] = 1577, - [1578] = 1578, - [1579] = 1579, - [1580] = 1580, - [1581] = 63, - [1582] = 64, - [1583] = 62, - [1584] = 66, - [1585] = 65, - [1586] = 1586, - [1587] = 65, - [1588] = 1588, - [1589] = 1589, - [1590] = 65, - [1591] = 1591, - [1592] = 1592, - [1593] = 926, - [1594] = 911, - [1595] = 938, - [1596] = 937, - [1597] = 927, - [1598] = 911, - [1599] = 937, - [1600] = 938, - [1601] = 927, - [1602] = 926, - [1603] = 938, - [1604] = 911, - [1605] = 1605, - [1606] = 937, - [1607] = 927, - [1608] = 926, - [1609] = 926, - [1610] = 911, - [1611] = 927, - [1612] = 938, - [1613] = 937, - [1614] = 367, - [1615] = 303, - [1616] = 301, - [1617] = 363, - [1618] = 311, - [1619] = 312, - [1620] = 297, - [1621] = 298, - [1622] = 373, - [1623] = 261, - [1624] = 354, - [1625] = 353, - [1626] = 292, - [1627] = 501, - [1628] = 236, - [1629] = 557, - [1630] = 391, - [1631] = 390, - [1632] = 881, - [1633] = 925, - [1634] = 928, - [1635] = 929, - [1636] = 931, - [1637] = 936, - [1638] = 292, - [1639] = 878, - [1640] = 326, - [1641] = 896, - [1642] = 596, - [1643] = 882, - [1644] = 886, - [1645] = 297, - [1646] = 908, - [1647] = 887, - [1648] = 353, - [1649] = 303, - [1650] = 301, - [1651] = 311, - [1652] = 312, - [1653] = 899, - [1654] = 903, - [1655] = 921, - [1656] = 861, - [1657] = 862, - [1658] = 1658, - [1659] = 847, - [1660] = 866, - [1661] = 884, - [1662] = 1662, - [1663] = 890, - [1664] = 708, - [1665] = 898, - [1666] = 521, - [1667] = 792, - [1668] = 892, - [1669] = 569, - [1670] = 1662, - [1671] = 354, - [1672] = 363, - [1673] = 367, - [1674] = 373, - [1675] = 792, - [1676] = 865, - [1677] = 854, - [1678] = 932, - [1679] = 857, - [1680] = 951, - [1681] = 856, - [1682] = 850, - [1683] = 909, - [1684] = 853, - [1685] = 867, - [1686] = 557, - [1687] = 919, - [1688] = 920, - [1689] = 880, - [1690] = 501, - [1691] = 908, - [1692] = 930, - [1693] = 939, - [1694] = 940, - [1695] = 910, - [1696] = 918, - [1697] = 897, - [1698] = 894, - [1699] = 708, - [1700] = 893, - [1701] = 912, - [1702] = 876, - [1703] = 889, - [1704] = 914, - [1705] = 885, - [1706] = 891, - [1707] = 869, - [1708] = 875, - [1709] = 943, - [1710] = 956, - [1711] = 916, - [1712] = 952, - [1713] = 877, - [1714] = 948, - [1715] = 953, - [1716] = 954, - [1717] = 944, - [1718] = 915, - [1719] = 855, - [1720] = 852, - [1721] = 874, - [1722] = 851, - [1723] = 708, - [1724] = 922, - [1725] = 390, - [1726] = 864, - [1727] = 391, - [1728] = 947, - [1729] = 901, - [1730] = 906, - [1731] = 917, - [1732] = 907, - [1733] = 955, - [1734] = 873, - [1735] = 863, - [1736] = 942, - [1737] = 905, - [1738] = 858, - [1739] = 883, - [1740] = 913, - [1741] = 946, - [1742] = 879, - [1743] = 941, - [1744] = 945, - [1745] = 871, - [1746] = 870, - [1747] = 904, - [1748] = 889, - [1749] = 893, - [1750] = 868, - [1751] = 860, - [1752] = 859, - [1753] = 849, - [1754] = 924, - [1755] = 923, - [1756] = 848, - [1757] = 902, - [1758] = 900, - [1759] = 872, - [1760] = 888, - [1761] = 927, - [1762] = 292, - [1763] = 236, - [1764] = 292, - [1765] = 353, - [1766] = 303, - [1767] = 373, - [1768] = 301, - [1769] = 367, - [1770] = 363, - [1771] = 354, - [1772] = 708, - [1773] = 311, - [1774] = 312, - [1775] = 908, - [1776] = 892, - [1777] = 236, - [1778] = 354, - [1779] = 363, - [1780] = 367, - [1781] = 373, - [1782] = 911, - [1783] = 569, - [1784] = 926, - [1785] = 303, - [1786] = 297, - [1787] = 521, - [1788] = 297, - [1789] = 1789, - [1790] = 301, - [1791] = 938, - [1792] = 937, - [1793] = 596, - [1794] = 312, - [1795] = 311, - [1796] = 353, - [1797] = 847, - [1798] = 870, - [1799] = 932, - [1800] = 872, - [1801] = 859, - [1802] = 951, - [1803] = 930, - [1804] = 920, - [1805] = 919, - [1806] = 936, - [1807] = 948, - [1808] = 931, - [1809] = 942, - [1810] = 326, - [1811] = 326, - [1812] = 929, - [1813] = 928, - [1814] = 925, - [1815] = 891, - [1816] = 297, - [1817] = 944, - [1818] = 947, - [1819] = 946, - [1820] = 367, - [1821] = 908, - [1822] = 918, - [1823] = 880, - [1824] = 875, - [1825] = 893, - [1826] = 878, - [1827] = 889, - [1828] = 881, - [1829] = 897, - [1830] = 894, - [1831] = 882, - [1832] = 886, - [1833] = 885, - [1834] = 887, - [1835] = 869, - [1836] = 865, - [1837] = 856, - [1838] = 855, - [1839] = 852, - [1840] = 851, - [1841] = 922, - [1842] = 901, - [1843] = 906, - [1844] = 907, - [1845] = 955, - [1846] = 863, - [1847] = 905, - [1848] = 899, - [1849] = 903, - [1850] = 391, - [1851] = 390, - [1852] = 921, - [1853] = 904, - [1854] = 954, - [1855] = 883, - [1856] = 879, - [1857] = 557, - [1858] = 858, - [1859] = 877, - [1860] = 945, - [1861] = 953, - [1862] = 871, - [1863] = 864, - [1864] = 867, - [1865] = 853, - [1866] = 854, - [1867] = 861, - [1868] = 862, - [1869] = 391, - [1870] = 868, - [1871] = 913, - [1872] = 884, - [1873] = 860, - [1874] = 849, - [1875] = 501, - [1876] = 850, - [1877] = 924, - [1878] = 890, - [1879] = 923, - [1880] = 848, - [1881] = 857, - [1882] = 902, - [1883] = 876, - [1884] = 915, - [1885] = 896, - [1886] = 898, - [1887] = 363, - [1888] = 873, - [1889] = 916, - [1890] = 952, - [1891] = 353, - [1892] = 557, - [1893] = 874, - [1894] = 956, - [1895] = 893, - [1896] = 889, - [1897] = 900, - [1898] = 501, - [1899] = 303, - [1900] = 301, - [1901] = 943, - [1902] = 909, - [1903] = 312, - [1904] = 910, - [1905] = 912, - [1906] = 311, - [1907] = 940, - [1908] = 390, - [1909] = 939, - [1910] = 888, - [1911] = 866, - [1912] = 1912, - [1913] = 941, - [1914] = 914, - [1915] = 917, - [1916] = 596, - [1917] = 326, - [1918] = 973, - [1919] = 521, - [1920] = 569, - [1921] = 326, - [1922] = 1922, - [1923] = 521, - [1924] = 569, - [1925] = 596, - [1926] = 326, - [1927] = 857, - [1928] = 855, - [1929] = 944, - [1930] = 880, - [1931] = 928, - [1932] = 947, - [1933] = 946, - [1934] = 954, - [1935] = 953, - [1936] = 925, - [1937] = 902, - [1938] = 900, - [1939] = 1939, - [1940] = 897, - [1941] = 894, - [1942] = 896, - [1943] = 952, - [1944] = 926, - [1945] = 941, - [1946] = 955, - [1947] = 917, - [1948] = 914, - [1949] = 937, - [1950] = 885, - [1951] = 918, - [1952] = 857, - [1953] = 928, - [1954] = 850, - [1955] = 873, - [1956] = 856, - [1957] = 912, - [1958] = 929, - [1959] = 910, - [1960] = 892, - [1961] = 909, - [1962] = 940, - [1963] = 869, - [1964] = 865, - [1965] = 858, - [1966] = 878, - [1967] = 858, - [1968] = 939, - [1969] = 855, - [1970] = 852, - [1971] = 881, - [1972] = 851, - [1973] = 942, - [1974] = 853, - [1975] = 861, - [1976] = 922, - [1977] = 943, - [1978] = 956, - [1979] = 867, - [1980] = 901, - [1981] = 932, - [1982] = 882, - [1983] = 942, - [1984] = 906, - [1985] = 915, - [1986] = 907, - [1987] = 936, - [1988] = 930, - [1989] = 955, - [1990] = 948, - [1991] = 894, - [1992] = 913, - [1993] = 920, - [1994] = 944, - [1995] = 897, - [1996] = 951, - [1997] = 936, - [1998] = 919, - [1999] = 863, - [2000] = 886, - [2001] = 948, - [2002] = 905, - [2003] = 887, - [2004] = 904, - [2005] = 899, - [2006] = 903, - [2007] = 889, - [2008] = 889, - [2009] = 893, - [2010] = 893, - [2011] = 929, - [2012] = 919, - [2013] = 901, - [2014] = 867, - [2015] = 945, - [2016] = 927, - [2017] = 853, - [2018] = 922, - [2019] = 883, - [2020] = 898, - [2021] = 879, - [2022] = 848, - [2023] = 891, - [2024] = 923, - [2025] = 918, - [2026] = 854, - [2027] = 850, - [2028] = 920, - [2029] = 864, - [2030] = 859, - [2031] = 921, - [2032] = 872, - [2033] = 856, - [2034] = 902, - [2035] = 877, - [2036] = 873, - [2037] = 863, - [2038] = 945, - [2039] = 874, - [2040] = 849, - [2041] = 875, - [2042] = 871, - [2043] = 940, - [2044] = 921, - [2045] = 924, - [2046] = 862, - [2047] = 931, - [2048] = 870, - [2049] = 892, - [2050] = 868, - [2051] = 925, - [2052] = 903, - [2053] = 899, - [2054] = 913, - [2055] = 887, - [2056] = 893, - [2057] = 883, - [2058] = 886, - [2059] = 882, - [2060] = 889, - [2061] = 854, - [2062] = 943, - [2063] = 931, - [2064] = 947, - [2065] = 885, - [2066] = 852, - [2067] = 909, - [2068] = 910, - [2069] = 912, - [2070] = 881, - [2071] = 2071, - [2072] = 876, - [2073] = 914, - [2074] = 917, - [2075] = 941, - [2076] = 952, - [2077] = 946, - [2078] = 889, - [2079] = 939, - [2080] = 893, - [2081] = 953, - [2082] = 954, - [2083] = 851, - [2084] = 900, - [2085] = 869, - [2086] = 865, - [2087] = 874, - [2088] = 864, - [2089] = 891, - [2090] = 888, - [2091] = 875, - [2092] = 880, - [2093] = 911, - [2094] = 2094, - [2095] = 861, - [2096] = 862, - [2097] = 908, - [2098] = 847, - [2099] = 860, - [2100] = 847, - [2101] = 866, - [2102] = 859, - [2103] = 888, - [2104] = 872, - [2105] = 916, - [2106] = 708, - [2107] = 892, - [2108] = 878, - [2109] = 884, - [2110] = 708, - [2111] = 866, - [2112] = 848, - [2113] = 923, - [2114] = 924, - [2115] = 849, - [2116] = 860, - [2117] = 868, - [2118] = 908, - [2119] = 876, - [2120] = 908, - [2121] = 908, - [2122] = 951, - [2123] = 870, - [2124] = 871, - [2125] = 877, - [2126] = 898, - [2127] = 896, - [2128] = 879, - [2129] = 708, - [2130] = 908, - [2131] = 890, - [2132] = 890, - [2133] = 932, - [2134] = 930, - [2135] = 904, - [2136] = 905, - [2137] = 884, - [2138] = 907, - [2139] = 915, - [2140] = 906, - [2141] = 916, - [2142] = 956, - [2143] = 938, - [2144] = 292, - [2145] = 2145, - [2146] = 354, - [2147] = 373, - [2148] = 391, - [2149] = 390, - [2150] = 2150, - [2151] = 908, - [2152] = 2152, - [2153] = 557, - [2154] = 2154, - [2155] = 2155, - [2156] = 557, - [2157] = 501, - [2158] = 501, - [2159] = 521, - [2160] = 569, - [2161] = 2161, - [2162] = 2162, - [2163] = 501, - [2164] = 2164, - [2165] = 596, - [2166] = 557, - [2167] = 940, - [2168] = 882, - [2169] = 912, - [2170] = 943, - [2171] = 910, - [2172] = 915, - [2173] = 951, - [2174] = 2174, - [2175] = 857, - [2176] = 936, - [2177] = 909, - [2178] = 856, - [2179] = 956, - [2180] = 2180, - [2181] = 913, - [2182] = 850, - [2183] = 952, - [2184] = 908, - [2185] = 898, - [2186] = 896, - [2187] = 292, - [2188] = 854, - [2189] = 914, - [2190] = 917, - [2191] = 941, - [2192] = 911, - [2193] = 890, - [2194] = 875, - [2195] = 367, - [2196] = 853, - [2197] = 953, - [2198] = 884, - [2199] = 954, - [2200] = 944, - [2201] = 942, - [2202] = 864, - [2203] = 891, - [2204] = 373, - [2205] = 880, - [2206] = 893, - [2207] = 874, - [2208] = 889, - [2209] = 867, - [2210] = 866, - [2211] = 847, - [2212] = 862, - [2213] = 861, - [2214] = 938, - [2215] = 937, - [2216] = 927, - [2217] = 926, - [2218] = 2218, - [2219] = 888, - [2220] = 2220, - [2221] = 900, - [2222] = 948, - [2223] = 931, - [2224] = 902, - [2225] = 354, - [2226] = 919, - [2227] = 363, - [2228] = 848, - [2229] = 920, - [2230] = 945, - [2231] = 923, - [2232] = 873, - [2233] = 876, - [2234] = 312, - [2235] = 311, - [2236] = 301, - [2237] = 921, - [2238] = 303, - [2239] = 353, - [2240] = 903, - [2241] = 899, - [2242] = 887, - [2243] = 886, - [2244] = 916, - [2245] = 872, - [2246] = 881, - [2247] = 297, - [2248] = 878, - [2249] = 859, - [2250] = 930, - [2251] = 924, - [2252] = 849, - [2253] = 860, - [2254] = 929, - [2255] = 868, - [2256] = 932, - [2257] = 858, - [2258] = 2258, - [2259] = 870, - [2260] = 871, - [2261] = 877, - [2262] = 879, - [2263] = 883, - [2264] = 928, - [2265] = 904, - [2266] = 905, - [2267] = 863, - [2268] = 955, - [2269] = 907, - [2270] = 906, - [2271] = 901, - [2272] = 922, - [2273] = 851, - [2274] = 852, - [2275] = 855, - [2276] = 946, - [2277] = 947, - [2278] = 865, - [2279] = 925, - [2280] = 869, - [2281] = 885, - [2282] = 894, - [2283] = 897, - [2284] = 918, - [2285] = 939, - [2286] = 367, - [2287] = 2287, - [2288] = 2288, - [2289] = 311, - [2290] = 301, - [2291] = 363, - [2292] = 501, - [2293] = 303, - [2294] = 312, - [2295] = 353, - [2296] = 297, - [2297] = 557, - [2298] = 2298, - [2299] = 391, - [2300] = 390, - [2301] = 2301, - [2302] = 892, - [2303] = 708, - [2304] = 301, - [2305] = 312, - [2306] = 569, - [2307] = 596, - [2308] = 326, - [2309] = 297, - [2310] = 373, - [2311] = 367, - [2312] = 363, - [2313] = 292, - [2314] = 353, - [2315] = 303, - [2316] = 354, - [2317] = 2317, - [2318] = 521, - [2319] = 311, - [2320] = 944, - [2321] = 945, - [2322] = 948, - [2323] = 931, - [2324] = 854, - [2325] = 857, - [2326] = 856, - [2327] = 850, - [2328] = 2288, - [2329] = 2298, - [2330] = 884, - [2331] = 390, - [2332] = 391, - [2333] = 879, - [2334] = 853, - [2335] = 929, - [2336] = 859, - [2337] = 557, - [2338] = 872, - [2339] = 867, - [2340] = 876, - [2341] = 873, - [2342] = 936, - [2343] = 919, - [2344] = 928, - [2345] = 920, - [2346] = 925, - [2347] = 875, - [2348] = 930, - [2349] = 932, - [2350] = 913, - [2351] = 939, - [2352] = 940, - [2353] = 915, - [2354] = 947, - [2355] = 946, - [2356] = 918, - [2357] = 897, - [2358] = 2358, - [2359] = 894, - [2360] = 893, - [2361] = 889, - [2362] = 885, - [2363] = 869, - [2364] = 865, - [2365] = 958, - [2366] = 858, - [2367] = 855, - [2368] = 501, - [2369] = 852, - [2370] = 851, - [2371] = 908, - [2372] = 922, - [2373] = 892, - [2374] = 878, - [2375] = 881, - [2376] = 901, - [2377] = 956, - [2378] = 882, - [2379] = 886, - [2380] = 887, - [2381] = 899, - [2382] = 906, - [2383] = 903, - [2384] = 907, - [2385] = 951, - [2386] = 955, - [2387] = 943, - [2388] = 908, - [2389] = 921, - [2390] = 864, - [2391] = 863, - [2392] = 905, - [2393] = 890, - [2394] = 904, - [2395] = 909, - [2396] = 874, - [2397] = 883, - [2398] = 910, - [2399] = 912, - [2400] = 914, - [2401] = 917, - [2402] = 941, - [2403] = 952, - [2404] = 953, - [2405] = 916, - [2406] = 708, - [2407] = 861, - [2408] = 954, - [2409] = 862, - [2410] = 847, - [2411] = 866, - [2412] = 877, - [2413] = 871, - [2414] = 870, - [2415] = 868, - [2416] = 942, - [2417] = 860, - [2418] = 849, - [2419] = 924, - [2420] = 923, - [2421] = 848, - [2422] = 902, - [2423] = 900, - [2424] = 896, - [2425] = 888, - [2426] = 880, - [2427] = 891, - [2428] = 898, - [2429] = 2429, - [2430] = 892, - [2431] = 2429, - [2432] = 708, - [2433] = 962, - [2434] = 297, - [2435] = 353, - [2436] = 303, - [2437] = 301, - [2438] = 311, - [2439] = 312, - [2440] = 2429, - [2441] = 2429, - [2442] = 2429, - [2443] = 596, - [2444] = 908, - [2445] = 708, - [2446] = 2429, - [2447] = 363, - [2448] = 367, - [2449] = 2429, - [2450] = 312, - [2451] = 311, - [2452] = 301, - [2453] = 2429, - [2454] = 2429, - [2455] = 367, - [2456] = 303, - [2457] = 521, - [2458] = 353, - [2459] = 2429, - [2460] = 569, - [2461] = 363, - [2462] = 2429, - [2463] = 2429, - [2464] = 2429, - [2465] = 892, - [2466] = 973, - [2467] = 297, - [2468] = 939, - [2469] = 869, - [2470] = 877, - [2471] = 871, - [2472] = 870, - [2473] = 868, - [2474] = 860, - [2475] = 849, - [2476] = 924, - [2477] = 923, - [2478] = 848, - [2479] = 874, - [2480] = 908, - [2481] = 981, - [2482] = 902, - [2483] = 900, - [2484] = 301, - [2485] = 980, - [2486] = 888, - [2487] = 979, - [2488] = 878, - [2489] = 354, - [2490] = 881, - [2491] = 978, - [2492] = 882, - [2493] = 363, - [2494] = 367, - [2495] = 928, - [2496] = 946, - [2497] = 947, - [2498] = 373, - [2499] = 886, - [2500] = 887, - [2501] = 303, - [2502] = 883, - [2503] = 899, - [2504] = 903, - [2505] = 880, - [2506] = 921, - [2507] = 925, - [2508] = 904, - [2509] = 905, - [2510] = 66, - [2511] = 864, - [2512] = 942, - [2513] = 64, - [2514] = 62, - [2515] = 863, - [2516] = 353, - [2517] = 297, - [2518] = 944, - [2519] = 945, - [2520] = 954, - [2521] = 312, - [2522] = 2522, - [2523] = 953, - [2524] = 952, - [2525] = 2525, - [2526] = 941, - [2527] = 917, - [2528] = 914, - [2529] = 892, - [2530] = 912, - [2531] = 910, - [2532] = 955, - [2533] = 909, - [2534] = 861, - [2535] = 862, - [2536] = 847, - [2537] = 866, - [2538] = 858, - [2539] = 943, - [2540] = 956, - [2541] = 916, - [2542] = 893, - [2543] = 889, - [2544] = 915, - [2545] = 907, - [2546] = 929, - [2547] = 906, - [2548] = 913, - [2549] = 901, - [2550] = 884, - [2551] = 708, - [2552] = 2525, - [2553] = 922, - [2554] = 311, - [2555] = 851, - [2556] = 852, - [2557] = 873, - [2558] = 855, - [2559] = 292, - [2560] = 931, - [2561] = 957, - [2562] = 890, - [2563] = 908, - [2564] = 893, - [2565] = 865, - [2566] = 875, - [2567] = 889, - [2568] = 879, - [2569] = 896, - [2570] = 898, - [2571] = 876, - [2572] = 872, - [2573] = 948, - [2574] = 885, - [2575] = 894, - [2576] = 897, - [2577] = 936, - [2578] = 859, - [2579] = 918, - [2580] = 940, - [2581] = 857, - [2582] = 891, - [2583] = 932, - [2584] = 930, - [2585] = 856, - [2586] = 920, - [2587] = 919, - [2588] = 867, - [2589] = 951, - [2590] = 853, - [2591] = 854, - [2592] = 850, - [2593] = 297, - [2594] = 367, - [2595] = 312, - [2596] = 311, - [2597] = 363, - [2598] = 301, - [2599] = 367, - [2600] = 363, - [2601] = 303, - [2602] = 893, - [2603] = 889, - [2604] = 501, - [2605] = 958, - [2606] = 557, - [2607] = 353, - [2608] = 297, - [2609] = 312, - [2610] = 311, - [2611] = 391, - [2612] = 2612, - [2613] = 390, - [2614] = 301, - [2615] = 973, - [2616] = 303, - [2617] = 353, - [2618] = 958, - [2619] = 363, - [2620] = 367, - [2621] = 312, - [2622] = 311, - [2623] = 301, - [2624] = 303, - [2625] = 353, - [2626] = 297, - [2627] = 892, - [2628] = 2628, - [2629] = 2629, - [2630] = 2628, - [2631] = 2631, - [2632] = 2632, - [2633] = 973, - [2634] = 2628, - [2635] = 521, - [2636] = 326, - [2637] = 2632, - [2638] = 2632, - [2639] = 2628, - [2640] = 2632, - [2641] = 2628, - [2642] = 2628, - [2643] = 2632, - [2644] = 2632, - [2645] = 2628, - [2646] = 326, - [2647] = 908, - [2648] = 2628, - [2649] = 2649, - [2650] = 2632, - [2651] = 2651, - [2652] = 2632, - [2653] = 2653, - [2654] = 2628, - [2655] = 569, - [2656] = 2632, - [2657] = 596, - [2658] = 2632, - [2659] = 2628, - [2660] = 2628, - [2661] = 2632, - [2662] = 2632, - [2663] = 326, - [2664] = 708, - [2665] = 2628, - [2666] = 2628, - [2667] = 897, - [2668] = 2668, - [2669] = 873, - [2670] = 875, - [2671] = 942, - [2672] = 864, - [2673] = 2673, - [2674] = 859, - [2675] = 2673, - [2676] = 2676, - [2677] = 2677, - [2678] = 2673, - [2679] = 2676, - [2680] = 2668, - [2681] = 2677, - [2682] = 913, - [2683] = 892, - [2684] = 900, - [2685] = 2677, - [2686] = 902, - [2687] = 943, - [2688] = 2668, - [2689] = 909, - [2690] = 883, - [2691] = 2691, - [2692] = 863, - [2693] = 955, - [2694] = 910, - [2695] = 2677, - [2696] = 901, - [2697] = 922, - [2698] = 851, - [2699] = 852, - [2700] = 855, - [2701] = 912, - [2702] = 2677, - [2703] = 2673, - [2704] = 914, - [2705] = 894, - [2706] = 2706, - [2707] = 2668, - [2708] = 917, - [2709] = 940, - [2710] = 939, - [2711] = 932, - [2712] = 930, - [2713] = 920, - [2714] = 919, - [2715] = 2676, - [2716] = 854, - [2717] = 850, - [2718] = 941, - [2719] = 326, - [2720] = 952, - [2721] = 953, - [2722] = 954, - [2723] = 898, - [2724] = 896, - [2725] = 874, - [2726] = 891, - [2727] = 880, - [2728] = 363, - [2729] = 890, - [2730] = 367, - [2731] = 888, - [2732] = 391, - [2733] = 390, - [2734] = 884, - [2735] = 2668, - [2736] = 2673, - [2737] = 866, - [2738] = 847, - [2739] = 862, - [2740] = 861, - [2741] = 945, - [2742] = 2676, - [2743] = 2677, - [2744] = 921, - [2745] = 2676, - [2746] = 903, - [2747] = 899, - [2748] = 887, - [2749] = 886, - [2750] = 882, - [2751] = 892, - [2752] = 881, - [2753] = 2676, - [2754] = 878, - [2755] = 2755, - [2756] = 557, - [2757] = 2668, - [2758] = 501, - [2759] = 946, - [2760] = 947, - [2761] = 925, - [2762] = 2673, - [2763] = 2673, - [2764] = 928, - [2765] = 929, - [2766] = 858, - [2767] = 931, - [2768] = 948, - [2769] = 2668, - [2770] = 956, - [2771] = 936, - [2772] = 916, - [2773] = 915, - [2774] = 951, - [2775] = 848, - [2776] = 708, - [2777] = 2777, - [2778] = 923, - [2779] = 924, - [2780] = 849, - [2781] = 860, - [2782] = 868, - [2783] = 2673, - [2784] = 2676, - [2785] = 2668, - [2786] = 708, - [2787] = 870, - [2788] = 2677, - [2789] = 871, - [2790] = 877, - [2791] = 879, - [2792] = 2677, - [2793] = 2668, - [2794] = 2677, - [2795] = 876, - [2796] = 872, - [2797] = 2668, - [2798] = 2673, - [2799] = 2676, - [2800] = 904, - [2801] = 905, - [2802] = 2802, - [2803] = 857, - [2804] = 856, - [2805] = 297, - [2806] = 2677, - [2807] = 853, - [2808] = 2653, - [2809] = 2809, - [2810] = 353, - [2811] = 2668, - [2812] = 2812, - [2813] = 303, - [2814] = 867, - [2815] = 312, - [2816] = 301, - [2817] = 892, - [2818] = 2676, - [2819] = 311, - [2820] = 312, - [2821] = 311, - [2822] = 908, - [2823] = 2676, - [2824] = 944, - [2825] = 918, - [2826] = 907, - [2827] = 708, - [2828] = 2676, - [2829] = 301, - [2830] = 2677, - [2831] = 303, - [2832] = 981, - [2833] = 353, - [2834] = 297, - [2835] = 908, - [2836] = 908, - [2837] = 906, - [2838] = 2838, - [2839] = 2677, - [2840] = 2673, - [2841] = 885, - [2842] = 2673, - [2843] = 869, - [2844] = 892, - [2845] = 865, - [2846] = 708, - [2847] = 363, - [2848] = 367, - [2849] = 2676, - [2850] = 2850, - [2851] = 2677, - [2852] = 2676, - [2853] = 2676, - [2854] = 2854, - [2855] = 2673, - [2856] = 2668, - [2857] = 596, - [2858] = 2858, - [2859] = 2859, - [2860] = 2858, - [2861] = 2858, - [2862] = 2862, - [2863] = 2858, - [2864] = 1293, - [2865] = 2858, - [2866] = 2866, - [2867] = 569, - [2868] = 2858, - [2869] = 1922, - [2870] = 2859, - [2871] = 2858, - [2872] = 2872, - [2873] = 2858, - [2874] = 2874, - [2875] = 2858, - [2876] = 2876, - [2877] = 2858, - [2878] = 2858, - [2879] = 893, - [2880] = 2858, - [2881] = 889, - [2882] = 2859, - [2883] = 2858, - [2884] = 864, - [2885] = 942, - [2886] = 894, - [2887] = 2887, - [2888] = 66, - [2889] = 2889, - [2890] = 872, - [2891] = 855, - [2892] = 2889, - [2893] = 852, - [2894] = 851, - [2895] = 66, - [2896] = 2889, - [2897] = 897, - [2898] = 64, - [2899] = 2889, - [2900] = 2145, - [2901] = 2889, - [2902] = 876, - [2903] = 858, - [2904] = 940, - [2905] = 939, - [2906] = 2889, - [2907] = 930, - [2908] = 922, - [2909] = 901, - [2910] = 920, - [2911] = 955, - [2912] = 62, - [2913] = 863, - [2914] = 883, - [2915] = 915, - [2916] = 2889, - [2917] = 2889, - [2918] = 902, - [2919] = 919, - [2920] = 2889, - [2921] = 854, - [2922] = 900, - [2923] = 62, - [2924] = 64, - [2925] = 2889, - [2926] = 944, - [2927] = 850, - [2928] = 932, - [2929] = 2889, - [2930] = 2889, - [2931] = 2889, - [2932] = 916, - [2933] = 956, - [2934] = 2934, - [2935] = 1348, - [2936] = 2936, - [2937] = 1348, - [2938] = 1388, - [2939] = 1348, - [2940] = 1292, - [2941] = 1292, - [2942] = 1348, - [2943] = 2936, - [2944] = 2934, - [2945] = 2934, - [2946] = 1388, - [2947] = 1388, - [2948] = 1348, - [2949] = 1292, - [2950] = 1292, - [2951] = 1388, - [2952] = 1348, - [2953] = 1292, - [2954] = 1388, - [2955] = 2934, - [2956] = 2936, - [2957] = 1348, - [2958] = 1292, - [2959] = 1388, - [2960] = 1348, - [2961] = 1292, - [2962] = 1292, - [2963] = 2934, - [2964] = 1388, - [2965] = 2934, - [2966] = 2936, - [2967] = 1348, - [2968] = 1388, - [2969] = 1292, - [2970] = 1292, - [2971] = 1348, - [2972] = 1388, - [2973] = 2934, - [2974] = 2936, - [2975] = 2934, - [2976] = 1292, - [2977] = 1388, - [2978] = 1348, - [2979] = 2936, - [2980] = 1292, - [2981] = 2936, - [2982] = 1388, - [2983] = 1388, - [2984] = 1388, - [2985] = 1388, - [2986] = 1292, - [2987] = 2934, - [2988] = 2936, - [2989] = 2936, - [2990] = 2934, - [2991] = 2934, - [2992] = 2936, - [2993] = 1348, - [2994] = 2936, - [2995] = 1292, - [2996] = 1348, - [2997] = 1292, - [2998] = 1388, - [2999] = 1348, - [3000] = 1292, - [3001] = 1388, - [3002] = 2934, - [3003] = 1348, - [3004] = 1348, - [3005] = 2936, - [3006] = 3006, - [3007] = 3006, - [3008] = 3008, - [3009] = 3009, - [3010] = 3010, - [3011] = 3011, - [3012] = 3011, - [3013] = 3009, - [3014] = 3009, - [3015] = 3015, - [3016] = 3011, - [3017] = 3009, - [3018] = 3009, - [3019] = 3011, - [3020] = 3009, - [3021] = 3011, - [3022] = 3009, - [3023] = 3009, - [3024] = 3024, - [3025] = 3025, - [3026] = 3011, - [3027] = 3009, - [3028] = 3028, - [3029] = 3009, - [3030] = 3009, - [3031] = 3031, - [3032] = 3011, - [3033] = 3009, - [3034] = 3009, - [3035] = 3035, - [3036] = 3011, - [3037] = 3037, - [3038] = 3011, - [3039] = 3011, - [3040] = 3011, - [3041] = 3011, - [3042] = 3011, - [3043] = 1589, - [3044] = 3011, - [3045] = 3009, - [3046] = 3046, - [3047] = 3046, - [3048] = 3048, - [3049] = 3049, - [3050] = 3050, - [3051] = 3048, - [3052] = 3052, - [3053] = 3049, - [3054] = 3052, - [3055] = 3055, - [3056] = 3056, - [3057] = 3049, - [3058] = 3046, - [3059] = 3056, - [3060] = 3060, - [3061] = 3048, - [3062] = 3052, - [3063] = 3050, - [3064] = 3048, - [3065] = 3055, - [3066] = 3066, - [3067] = 3055, - [3068] = 3068, - [3069] = 3060, - [3070] = 3046, - [3071] = 3060, - [3072] = 3072, - [3073] = 3073, - [3074] = 3068, - [3075] = 3052, - [3076] = 3073, - [3077] = 3072, - [3078] = 3055, - [3079] = 3052, - [3080] = 3048, - [3081] = 3081, - [3082] = 3073, - [3083] = 3046, - [3084] = 3084, - [3085] = 3068, - [3086] = 3056, - [3087] = 3060, - [3088] = 3088, - [3089] = 3089, - [3090] = 3081, - [3091] = 3081, - [3092] = 3066, - [3093] = 3089, - [3094] = 3068, - [3095] = 3049, - [3096] = 3055, - [3097] = 3081, - [3098] = 3060, - [3099] = 3060, - [3100] = 3081, - [3101] = 3055, - [3102] = 3049, - [3103] = 3073, - [3104] = 3066, - [3105] = 3048, - [3106] = 3072, - [3107] = 3049, - [3108] = 3088, - [3109] = 3072, - [3110] = 3068, - [3111] = 3050, - [3112] = 3084, - [3113] = 3052, - [3114] = 3046, - [3115] = 3056, - [3116] = 3066, - [3117] = 3066, - [3118] = 3046, - [3119] = 3052, - [3120] = 3048, - [3121] = 3073, - [3122] = 3122, - [3123] = 3068, - [3124] = 3056, - [3125] = 3081, - [3126] = 3060, - [3127] = 3073, - [3128] = 3073, - [3129] = 3056, - [3130] = 3049, - [3131] = 3046, - [3132] = 3050, - [3133] = 3048, - [3134] = 3049, - [3135] = 3084, - [3136] = 3055, - [3137] = 3088, - [3138] = 3089, - [3139] = 3060, - [3140] = 3056, - [3141] = 3066, - [3142] = 3073, - [3143] = 3072, - [3144] = 3052, - [3145] = 3068, - [3146] = 3081, - [3147] = 3049, - [3148] = 3055, - [3149] = 3046, - [3150] = 3068, - [3151] = 3066, - [3152] = 3060, - [3153] = 3055, - [3154] = 3049, - [3155] = 3055, - [3156] = 3060, - [3157] = 3157, - [3158] = 3084, - [3159] = 3055, - [3160] = 3060, - [3161] = 3049, - [3162] = 3162, - [3163] = 3056, - [3164] = 3049, - [3165] = 3073, - [3166] = 3052, - [3167] = 3048, - [3168] = 3052, - [3169] = 3046, - [3170] = 3052, - [3171] = 3046, - [3172] = 3048, - [3173] = 3072, - [3174] = 3072, - [3175] = 3088, - [3176] = 3050, - [3177] = 3089, - [3178] = 3084, - [3179] = 3088, - [3180] = 3084, - [3181] = 3073, - [3182] = 3056, - [3183] = 3066, - [3184] = 3073, - [3185] = 3072, - [3186] = 3046, - [3187] = 3081, - [3188] = 3056, - [3189] = 3088, - [3190] = 3089, - [3191] = 3068, - [3192] = 3060, - [3193] = 3048, - [3194] = 3052, - [3195] = 3055, - [3196] = 3073, - [3197] = 3084, - [3198] = 3050, - [3199] = 3049, - [3200] = 3088, - [3201] = 3089, - [3202] = 3162, - [3203] = 3055, - [3204] = 3072, - [3205] = 3046, - [3206] = 3068, - [3207] = 3055, - [3208] = 3089, - [3209] = 3066, - [3210] = 3089, - [3211] = 3048, - [3212] = 3052, - [3213] = 3088, - [3214] = 3081, - [3215] = 3084, - [3216] = 3066, - [3217] = 3048, - [3218] = 3060, - [3219] = 3052, - [3220] = 3066, - [3221] = 3050, - [3222] = 3068, - [3223] = 3072, - [3224] = 3056, - [3225] = 3046, - [3226] = 3048, - [3227] = 3068, - [3228] = 3068, - [3229] = 3073, - [3230] = 3052, - [3231] = 3048, - [3232] = 3068, - [3233] = 3052, - [3234] = 3049, - [3235] = 3081, - [3236] = 3050, - [3237] = 3055, - [3238] = 3056, - [3239] = 3239, - [3240] = 3060, - [3241] = 3052, - [3242] = 3073, - [3243] = 3050, - [3244] = 3072, - [3245] = 3089, - [3246] = 3048, - [3247] = 3088, - [3248] = 3066, - [3249] = 3066, - [3250] = 3084, - [3251] = 3056, - [3252] = 3073, - [3253] = 3072, - [3254] = 3254, - [3255] = 3046, - [3256] = 3081, - [3257] = 3081, - [3258] = 3258, - [3259] = 3048, - [3260] = 3052, - [3261] = 3072, - [3262] = 3056, - [3263] = 3089, - [3264] = 3088, - [3265] = 3072, - [3266] = 3066, - [3267] = 3162, - [3268] = 3072, - [3269] = 3056, - [3270] = 3084, - [3271] = 3271, - [3272] = 3048, - [3273] = 3052, - [3274] = 3052, - [3275] = 3048, - [3276] = 3081, - [3277] = 3048, - [3278] = 3060, - [3279] = 3084, - [3280] = 3055, - [3281] = 3088, - [3282] = 3089, - [3283] = 3049, - [3284] = 3050, - [3285] = 3049, - [3286] = 3081, - [3287] = 3052, - [3288] = 3050, - [3289] = 3048, - [3290] = 3048, - [3291] = 3050, - [3292] = 3292, - [3293] = 3060, - [3294] = 3050, - [3295] = 3068, - [3296] = 3066, - [3297] = 3046, - [3298] = 3052, - [3299] = 3066, - [3300] = 3081, - [3301] = 3050, - [3302] = 3072, - [3303] = 3073, - [3304] = 3304, - [3305] = 3084, - [3306] = 3068, - [3307] = 3056, - [3308] = 3088, - [3309] = 3089, - [3310] = 3081, - [3311] = 3311, - [3312] = 3311, - [3313] = 3311, - [3314] = 3314, - [3315] = 3311, - [3316] = 3311, - [3317] = 3317, - [3318] = 3311, - [3319] = 3311, - [3320] = 3320, - [3321] = 3311, - [3322] = 3311, - [3323] = 3311, - [3324] = 3311, - [3325] = 3325, - [3326] = 3311, - [3327] = 3327, - [3328] = 938, - [3329] = 926, - [3330] = 927, - [3331] = 937, - [3332] = 911, - [3333] = 1122, - [3334] = 927, - [3335] = 938, - [3336] = 937, - [3337] = 3337, - [3338] = 3338, - [3339] = 3339, - [3340] = 911, - [3341] = 3341, - [3342] = 926, - [3343] = 1428, - [3344] = 3344, - [3345] = 1122, - [3346] = 3346, - [3347] = 1122, - [3348] = 2162, - [3349] = 1423, - [3350] = 1417, - [3351] = 3351, - [3352] = 3352, - [3353] = 3352, - [3354] = 3352, - [3355] = 3355, - [3356] = 2258, - [3357] = 3352, - [3358] = 2287, - [3359] = 3359, - [3360] = 2301, - [3361] = 3361, - [3362] = 3362, - [3363] = 3363, - [3364] = 3364, - [3365] = 3365, - [3366] = 3366, - [3367] = 3367, - [3368] = 3367, - [3369] = 3365, - [3370] = 3367, - [3371] = 908, - [3372] = 3365, - [3373] = 3365, - [3374] = 3367, - [3375] = 3365, - [3376] = 3367, - [3377] = 3377, - [3378] = 3365, - [3379] = 3367, - [3380] = 3367, - [3381] = 3366, - [3382] = 3367, - [3383] = 3366, - [3384] = 3365, - [3385] = 3365, - [3386] = 3365, - [3387] = 3365, - [3388] = 3367, - [3389] = 3365, - [3390] = 521, - [3391] = 3367, - [3392] = 3392, - [3393] = 3367, - [3394] = 3394, - [3395] = 3366, - [3396] = 3365, - [3397] = 3365, - [3398] = 3398, - [3399] = 3399, - [3400] = 3400, - [3401] = 3401, - [3402] = 3402, - [3403] = 3367, - [3404] = 946, - [3405] = 3405, - [3406] = 3367, - [3407] = 947, - [3408] = 3365, - [3409] = 3367, - [3410] = 948, - [3411] = 3411, - [3412] = 945, - [3413] = 3413, - [3414] = 951, - [3415] = 3415, - [3416] = 3416, - [3417] = 3417, - [3418] = 881, - [3419] = 862, - [3420] = 884, - [3421] = 921, - [3422] = 928, - [3423] = 3423, - [3424] = 3424, - [3425] = 861, - [3426] = 931, - [3427] = 887, - [3428] = 890, - [3429] = 929, - [3430] = 936, - [3431] = 886, - [3432] = 3432, - [3433] = 847, - [3434] = 903, - [3435] = 866, - [3436] = 882, - [3437] = 925, - [3438] = 896, - [3439] = 878, - [3440] = 899, - [3441] = 3441, - [3442] = 898, - [3443] = 3443, - [3444] = 3444, - [3445] = 3445, - [3446] = 3446, - [3447] = 3446, - [3448] = 874, - [3449] = 3446, - [3450] = 3450, - [3451] = 3446, - [3452] = 3446, - [3453] = 3446, - [3454] = 3446, - [3455] = 3446, - [3456] = 3446, - [3457] = 3446, - [3458] = 3458, - [3459] = 3446, - [3460] = 3446, - [3461] = 3461, - [3462] = 3462, - [3463] = 3463, - [3464] = 3464, - [3465] = 3465, - [3466] = 3466, - [3467] = 3467, - [3468] = 3468, - [3469] = 3469, - [3470] = 3470, - [3471] = 3471, - [3472] = 3472, - [3473] = 3473, - [3474] = 3474, - [3475] = 3475, - [3476] = 3476, - [3477] = 3477, - [3478] = 3478, - [3479] = 3479, - [3480] = 3480, - [3481] = 3481, - [3482] = 3482, - [3483] = 3483, - [3484] = 3484, - [3485] = 3485, - [3486] = 3485, - [3487] = 3487, - [3488] = 3488, - [3489] = 3485, - [3490] = 3487, - [3491] = 3484, - [3492] = 3484, - [3493] = 3487, - [3494] = 3485, - [3495] = 3487, - [3496] = 3496, - [3497] = 3484, - [3498] = 3485, - [3499] = 3499, - [3500] = 3500, - [3501] = 3484, - [3502] = 3502, - [3503] = 3487, - [3504] = 3484, - [3505] = 3484, - [3506] = 3506, - [3507] = 3487, - [3508] = 3484, - [3509] = 3487, - [3510] = 3510, - [3511] = 3487, - [3512] = 3485, - [3513] = 3487, - [3514] = 3487, - [3515] = 3515, - [3516] = 3485, - [3517] = 3517, - [3518] = 3485, - [3519] = 3485, - [3520] = 3485, - [3521] = 3521, - [3522] = 3522, - [3523] = 3484, - [3524] = 3484, - [3525] = 3487, - [3526] = 3526, - [3527] = 3485, - [3528] = 3528, - [3529] = 3529, - [3530] = 3530, - [3531] = 3485, - [3532] = 3484, - [3533] = 3533, - [3534] = 3534, - [3535] = 3535, - [3536] = 3536, - [3537] = 3487, - [3538] = 3484, - [3539] = 3539, - [3540] = 3540, - [3541] = 3541, - [3542] = 3542, - [3543] = 3540, - [3544] = 3544, - [3545] = 3542, - [3546] = 3546, - [3547] = 3547, - [3548] = 3548, - [3549] = 3539, - [3550] = 1423, - [3551] = 3551, - [3552] = 3551, - [3553] = 3548, - [3554] = 3542, - [3555] = 3547, - [3556] = 3546, - [3557] = 3544, - [3558] = 3551, - [3559] = 3559, - [3560] = 3548, - [3561] = 3561, - [3562] = 3547, - [3563] = 3546, - [3564] = 3540, - [3565] = 3539, - [3566] = 1422, - [3567] = 908, - [3568] = 3568, - [3569] = 1424, - [3570] = 3570, - [3571] = 3571, - [3572] = 3540, - [3573] = 3546, - [3574] = 3547, - [3575] = 3548, - [3576] = 3551, - [3577] = 3539, - [3578] = 3540, - [3579] = 3544, - [3580] = 3542, - [3581] = 521, - [3582] = 3546, - [3583] = 3551, - [3584] = 3547, - [3585] = 3546, - [3586] = 3547, - [3587] = 3548, - [3588] = 3551, - [3589] = 3540, - [3590] = 3548, - [3591] = 3548, - [3592] = 3551, - [3593] = 3542, - [3594] = 3539, - [3595] = 3544, - [3596] = 3544, - [3597] = 3539, - [3598] = 3544, - [3599] = 3542, - [3600] = 3539, - [3601] = 3539, - [3602] = 3540, - [3603] = 3544, - [3604] = 3542, - [3605] = 3540, - [3606] = 3544, - [3607] = 3542, - [3608] = 3544, - [3609] = 3540, - [3610] = 3539, - [3611] = 3542, - [3612] = 3547, - [3613] = 3542, - [3614] = 3544, - [3615] = 3540, - [3616] = 3539, - [3617] = 3551, - [3618] = 3548, - [3619] = 3547, - [3620] = 3546, - [3621] = 3546, - [3622] = 3622, - [3623] = 3551, - [3624] = 3548, - [3625] = 3547, - [3626] = 3626, - [3627] = 3546, - [3628] = 3628, - [3629] = 3551, - [3630] = 3548, - [3631] = 3539, - [3632] = 3540, - [3633] = 3547, - [3634] = 3544, - [3635] = 3542, - [3636] = 1455, - [3637] = 3546, - [3638] = 1456, - [3639] = 3639, - [3640] = 1417, - [3641] = 3551, - [3642] = 3548, - [3643] = 3547, - [3644] = 3546, - [3645] = 3539, - [3646] = 3540, - [3647] = 3544, - [3648] = 3542, - [3649] = 3546, - [3650] = 3547, - [3651] = 3548, - [3652] = 3551, - [3653] = 3653, - [3654] = 3654, - [3655] = 3655, - [3656] = 3656, - [3657] = 3657, - [3658] = 3657, - [3659] = 3659, - [3660] = 3660, - [3661] = 3661, - [3662] = 3662, - [3663] = 3663, - [3664] = 3664, - [3665] = 1428, - [3666] = 3666, - [3667] = 3667, - [3668] = 3668, - [3669] = 3669, - [3670] = 3670, - [3671] = 3671, - [3672] = 3672, - [3673] = 3673, - [3674] = 3674, - [3675] = 3675, - [3676] = 3676, - [3677] = 3677, - [3678] = 3678, - [3679] = 3679, - [3680] = 3661, - [3681] = 3681, - [3682] = 3682, - [3683] = 3683, - [3684] = 3684, - [3685] = 3685, - [3686] = 3686, - [3687] = 3687, - [3688] = 3688, - [3689] = 3689, - [3690] = 3690, - [3691] = 3691, - [3692] = 3692, - [3693] = 3693, - [3694] = 3694, - [3695] = 3695, - [3696] = 1554, - [3697] = 1555, - [3698] = 1558, - [3699] = 3695, - [3700] = 3687, - [3701] = 3695, - [3702] = 1559, - [3703] = 3703, - [3704] = 1562, - [3705] = 3695, - [3706] = 3706, - [3707] = 3703, - [3708] = 3687, - [3709] = 3709, - [3710] = 3710, - [3711] = 3690, - [3712] = 1567, - [3713] = 3709, - [3714] = 3688, - [3715] = 3715, - [3716] = 3695, - [3717] = 3709, - [3718] = 1498, - [3719] = 3688, - [3720] = 3690, - [3721] = 3687, - [3722] = 3695, - [3723] = 3723, - [3724] = 3724, - [3725] = 3725, - [3726] = 3706, - [3727] = 3727, - [3728] = 3728, - [3729] = 3687, - [3730] = 3709, - [3731] = 1531, - [3732] = 3703, - [3733] = 3687, - [3734] = 1560, - [3735] = 1541, - [3736] = 1538, - [3737] = 3737, - [3738] = 3738, - [3739] = 3695, - [3740] = 3740, - [3741] = 3709, - [3742] = 3742, - [3743] = 3695, - [3744] = 3687, - [3745] = 3709, - [3746] = 3695, - [3747] = 3690, - [3748] = 3688, - [3749] = 3749, - [3750] = 3750, - [3751] = 1529, - [3752] = 3752, - [3753] = 3753, - [3754] = 3687, - [3755] = 3706, - [3756] = 3706, - [3757] = 3757, - [3758] = 3709, - [3759] = 3759, - [3760] = 3690, - [3761] = 3688, - [3762] = 3690, - [3763] = 3688, - [3764] = 3690, - [3765] = 1523, - [3766] = 1522, - [3767] = 1519, - [3768] = 1565, - [3769] = 3703, - [3770] = 3703, - [3771] = 3771, - [3772] = 3706, - [3773] = 3703, - [3774] = 3774, - [3775] = 3688, - [3776] = 3776, - [3777] = 3703, - [3778] = 3687, - [3779] = 3706, - [3780] = 3780, - [3781] = 3703, - [3782] = 3782, - [3783] = 3783, - [3784] = 3695, - [3785] = 3706, - [3786] = 3706, - [3787] = 3787, - [3788] = 3709, - [3789] = 3709, - [3790] = 3703, - [3791] = 3688, - [3792] = 3690, - [3793] = 3793, - [3794] = 3695, - [3795] = 3795, - [3796] = 1557, - [3797] = 3797, - [3798] = 3687, - [3799] = 3799, - [3800] = 3800, - [3801] = 3688, - [3802] = 3690, - [3803] = 3803, - [3804] = 3804, - [3805] = 3706, - [3806] = 3806, - [3807] = 3709, - [3808] = 3709, - [3809] = 1493, - [3810] = 3690, - [3811] = 3703, - [3812] = 3812, - [3813] = 3813, - [3814] = 3709, - [3815] = 3815, - [3816] = 3816, - [3817] = 3706, - [3818] = 3818, - [3819] = 3688, - [3820] = 3820, - [3821] = 3709, - [3822] = 3822, - [3823] = 3823, - [3824] = 3824, - [3825] = 3825, - [3826] = 3826, - [3827] = 3827, - [3828] = 3774, - [3829] = 3703, - [3830] = 3709, - [3831] = 3690, - [3832] = 3706, - [3833] = 3709, - [3834] = 3688, - [3835] = 3835, - [3836] = 3687, - [3837] = 3695, - [3838] = 3838, - [3839] = 3706, - [3840] = 3840, - [3841] = 3706, - [3842] = 3771, - [3843] = 3690, - [3844] = 3844, - [3845] = 3703, - [3846] = 3688, - [3847] = 3688, - [3848] = 3690, - [3849] = 3849, - [3850] = 3687, - [3851] = 3709, - [3852] = 3776, - [3853] = 3853, - [3854] = 3854, - [3855] = 3855, - [3856] = 3856, - [3857] = 3857, - [3858] = 3858, - [3859] = 3856, - [3860] = 3854, - [3861] = 3861, - [3862] = 3862, - [3863] = 3856, - [3864] = 3864, - [3865] = 3864, - [3866] = 3854, - [3867] = 874, - [3868] = 3854, - [3869] = 3864, - [3870] = 3864, - [3871] = 3871, - [3872] = 3872, - [3873] = 3861, - [3874] = 3874, - [3875] = 3875, - [3876] = 3861, - [3877] = 3877, - [3878] = 1422, - [3879] = 3879, - [3880] = 3880, - [3881] = 3881, - [3882] = 3882, - [3883] = 3883, - [3884] = 3884, - [3885] = 3885, - [3886] = 3886, - [3887] = 3871, - [3888] = 3888, - [3889] = 3874, - [3890] = 3862, - [3891] = 3875, - [3892] = 3892, - [3893] = 3888, - [3894] = 1423, - [3895] = 3858, - [3896] = 3881, - [3897] = 3864, - [3898] = 3881, - [3899] = 3886, - [3900] = 3883, - [3901] = 3875, - [3902] = 3864, - [3903] = 3903, - [3904] = 3888, - [3905] = 3874, - [3906] = 3871, - [3907] = 3907, - [3908] = 3883, - [3909] = 3888, - [3910] = 3864, - [3911] = 3858, - [3912] = 3862, - [3913] = 3913, - [3914] = 3856, - [3915] = 3854, - [3916] = 3861, - [3917] = 3917, - [3918] = 3861, - [3919] = 3919, - [3920] = 3854, - [3921] = 3888, - [3922] = 3856, - [3923] = 3923, - [3924] = 3862, - [3925] = 3883, - [3926] = 3886, - [3927] = 3871, - [3928] = 3858, - [3929] = 3862, - [3930] = 3888, - [3931] = 3858, - [3932] = 1417, - [3933] = 3874, - [3934] = 3875, - [3935] = 1423, - [3936] = 3936, - [3937] = 3937, - [3938] = 3938, - [3939] = 1422, - [3940] = 3856, - [3941] = 3854, - [3942] = 3861, - [3943] = 3943, - [3944] = 3881, - [3945] = 3883, - [3946] = 3862, - [3947] = 3864, - [3948] = 3858, - [3949] = 3886, - [3950] = 3950, - [3951] = 3951, - [3952] = 3888, - [3953] = 3953, - [3954] = 3954, - [3955] = 3955, - [3956] = 3888, - [3957] = 3881, - [3958] = 3886, - [3959] = 3871, - [3960] = 3886, - [3961] = 3883, - [3962] = 3864, - [3963] = 3883, - [3964] = 3881, - [3965] = 3874, - [3966] = 3875, - [3967] = 3967, - [3968] = 3968, - [3969] = 1424, - [3970] = 3864, - [3971] = 3971, - [3972] = 1423, - [3973] = 3973, - [3974] = 3871, - [3975] = 3875, - [3976] = 3881, - [3977] = 3874, - [3978] = 3886, - [3979] = 3886, - [3980] = 3883, - [3981] = 3871, - [3982] = 3858, - [3983] = 3862, - [3984] = 3984, - [3985] = 3985, - [3986] = 3986, - [3987] = 3856, - [3988] = 3875, - [3989] = 3874, - [3990] = 3871, - [3991] = 3991, - [3992] = 3861, - [3993] = 3993, - [3994] = 3861, - [3995] = 3888, - [3996] = 3854, - [3997] = 3871, - [3998] = 3998, - [3999] = 3856, - [4000] = 3861, - [4001] = 3886, - [4002] = 3883, - [4003] = 3862, - [4004] = 3854, - [4005] = 3874, - [4006] = 3875, - [4007] = 3856, - [4008] = 1422, - [4009] = 3679, - [4010] = 3677, - [4011] = 3858, - [4012] = 3881, - [4013] = 4013, - [4014] = 3862, - [4015] = 3675, - [4016] = 3858, - [4017] = 3684, - [4018] = 3864, - [4019] = 4019, - [4020] = 4020, - [4021] = 3881, - [4022] = 3875, - [4023] = 3874, - [4024] = 3888, - [4025] = 3858, - [4026] = 3871, - [4027] = 4027, - [4028] = 3886, - [4029] = 3861, - [4030] = 3858, - [4031] = 3862, - [4032] = 3854, - [4033] = 3862, - [4034] = 3856, - [4035] = 3883, - [4036] = 4036, - [4037] = 4037, - [4038] = 3874, - [4039] = 3881, - [4040] = 3883, - [4041] = 3886, - [4042] = 3856, - [4043] = 3854, - [4044] = 3861, - [4045] = 4045, - [4046] = 3864, - [4047] = 3875, - [4048] = 3856, - [4049] = 3854, - [4050] = 3888, - [4051] = 3874, - [4052] = 3883, - [4053] = 3861, - [4054] = 3886, - [4055] = 3858, - [4056] = 3871, - [4057] = 3888, - [4058] = 3862, - [4059] = 3875, - [4060] = 1417, - [4061] = 3871, - [4062] = 3861, - [4063] = 3864, - [4064] = 3854, - [4065] = 1417, - [4066] = 4066, - [4067] = 3874, - [4068] = 3875, - [4069] = 3856, - [4070] = 3871, - [4071] = 3881, - [4072] = 3874, - [4073] = 3875, - [4074] = 3881, - [4075] = 3856, - [4076] = 3854, - [4077] = 3351, - [4078] = 3881, - [4079] = 4079, - [4080] = 3861, - [4081] = 4081, - [4082] = 3875, - [4083] = 3874, - [4084] = 4084, - [4085] = 3881, - [4086] = 3355, - [4087] = 3888, - [4088] = 3871, - [4089] = 2162, - [4090] = 4090, - [4091] = 1424, - [4092] = 3864, - [4093] = 4093, - [4094] = 4094, - [4095] = 3679, - [4096] = 4096, - [4097] = 2258, - [4098] = 4098, - [4099] = 4099, - [4100] = 4100, - [4101] = 4101, - [4102] = 4102, - [4103] = 4103, - [4104] = 4104, - [4105] = 4105, - [4106] = 4106, - [4107] = 4107, - [4108] = 4108, - [4109] = 4109, - [4110] = 4110, - [4111] = 4111, - [4112] = 4112, - [4113] = 4113, - [4114] = 4101, - [4115] = 4096, - [4116] = 4096, - [4117] = 4117, - [4118] = 4096, - [4119] = 4103, - [4120] = 3677, - [4121] = 4121, - [4122] = 4113, - [4123] = 4123, - [4124] = 4108, - [4125] = 4125, - [4126] = 4099, - [4127] = 4112, - [4128] = 4094, - [4129] = 4129, - [4130] = 4107, - [4131] = 4131, - [4132] = 1557, - [4133] = 4121, - [4134] = 4101, - [4135] = 4111, - [4136] = 4099, - [4137] = 4103, - [4138] = 4138, - [4139] = 4109, - [4140] = 4104, - [4141] = 4100, - [4142] = 4113, - [4143] = 4107, - [4144] = 4144, - [4145] = 4106, - [4146] = 4104, - [4147] = 4100, - [4148] = 3684, - [4149] = 4113, - [4150] = 4150, - [4151] = 4151, - [4152] = 3675, - [4153] = 4153, - [4154] = 4104, - [4155] = 3677, - [4156] = 3675, - [4157] = 3679, - [4158] = 4123, - [4159] = 4104, - [4160] = 4160, - [4161] = 4106, - [4162] = 4162, - [4163] = 4109, - [4164] = 4113, - [4165] = 4100, - [4166] = 4123, - [4167] = 4108, - [4168] = 4108, - [4169] = 3679, - [4170] = 3677, - [4171] = 4104, - [4172] = 3675, - [4173] = 4111, - [4174] = 3684, - [4175] = 4099, - [4176] = 4111, - [4177] = 4106, - [4178] = 4109, - [4179] = 4109, - [4180] = 4111, - [4181] = 4121, - [4182] = 4182, - [4183] = 4183, - [4184] = 4184, - [4185] = 4112, - [4186] = 4106, - [4187] = 4187, - [4188] = 3684, - [4189] = 4104, - [4190] = 4094, - [4191] = 4108, - [4192] = 4123, - [4193] = 4106, - [4194] = 4096, - [4195] = 4113, - [4196] = 4196, - [4197] = 4197, - [4198] = 4108, - [4199] = 4123, - [4200] = 4113, - [4201] = 4100, - [4202] = 4101, - [4203] = 4107, - [4204] = 4109, - [4205] = 4205, - [4206] = 4111, - [4207] = 4101, - [4208] = 4103, - [4209] = 4111, - [4210] = 4107, - [4211] = 4103, - [4212] = 4107, - [4213] = 4213, - [4214] = 4101, - [4215] = 4099, - [4216] = 4109, - [4217] = 4121, - [4218] = 4218, - [4219] = 4103, - [4220] = 4100, - [4221] = 4113, - [4222] = 4123, - [4223] = 4096, - [4224] = 4106, - [4225] = 3684, - [4226] = 4107, - [4227] = 4112, - [4228] = 4205, - [4229] = 4111, - [4230] = 4230, - [4231] = 4197, - [4232] = 4109, - [4233] = 3675, - [4234] = 4187, - [4235] = 4106, - [4236] = 4104, - [4237] = 3684, - [4238] = 3677, - [4239] = 3675, - [4240] = 4240, - [4241] = 4104, - [4242] = 3677, - [4243] = 3679, - [4244] = 3679, - [4245] = 4096, - [4246] = 4096, - [4247] = 4247, - [4248] = 4100, - [4249] = 4100, - [4250] = 4250, - [4251] = 4251, - [4252] = 4112, - [4253] = 4253, - [4254] = 4099, - [4255] = 4121, - [4256] = 4099, - [4257] = 4094, - [4258] = 4258, - [4259] = 4259, - [4260] = 4094, - [4261] = 4121, - [4262] = 4262, - [4263] = 4103, - [4264] = 4112, - [4265] = 4112, - [4266] = 4266, - [4267] = 4267, - [4268] = 4258, - [4269] = 4100, - [4270] = 3679, - [4271] = 3677, - [4272] = 4108, - [4273] = 4101, - [4274] = 4104, - [4275] = 3675, - [4276] = 3684, - [4277] = 4106, - [4278] = 4109, - [4279] = 4096, - [4280] = 4121, - [4281] = 4281, - [4282] = 4113, - [4283] = 4123, - [4284] = 4284, - [4285] = 4285, - [4286] = 4111, - [4287] = 4108, - [4288] = 4099, - [4289] = 4108, - [4290] = 4094, - [4291] = 4123, - [4292] = 4267, - [4293] = 4113, - [4294] = 4108, - [4295] = 4123, - [4296] = 4113, - [4297] = 4100, - [4298] = 4094, - [4299] = 4111, - [4300] = 4300, - [4301] = 4103, - [4302] = 4302, - [4303] = 4109, - [4304] = 4094, - [4305] = 4107, - [4306] = 4101, - [4307] = 4106, - [4308] = 3679, - [4309] = 3684, - [4310] = 4113, - [4311] = 4311, - [4312] = 3677, - [4313] = 4123, - [4314] = 4108, - [4315] = 3675, - [4316] = 4104, - [4317] = 4101, - [4318] = 4103, - [4319] = 4111, - [4320] = 4109, - [4321] = 4106, - [4322] = 3684, - [4323] = 3675, - [4324] = 4104, - [4325] = 4104, - [4326] = 4326, - [4327] = 3677, - [4328] = 4328, - [4329] = 3679, - [4330] = 4107, - [4331] = 4331, - [4332] = 4332, - [4333] = 4100, - [4334] = 4334, - [4335] = 3675, - [4336] = 4336, - [4337] = 4337, - [4338] = 3677, - [4339] = 3679, - [4340] = 3684, - [4341] = 4099, - [4342] = 4099, - [4343] = 4343, - [4344] = 4121, - [4345] = 4345, - [4346] = 4106, - [4347] = 4112, - [4348] = 4094, - [4349] = 4121, - [4350] = 4096, - [4351] = 4351, - [4352] = 4352, - [4353] = 4100, - [4354] = 4103, - [4355] = 4355, - [4356] = 4109, - [4357] = 4111, - [4358] = 4099, - [4359] = 4094, - [4360] = 4112, - [4361] = 4121, - [4362] = 4362, - [4363] = 4107, - [4364] = 4101, - [4365] = 4096, - [4366] = 4099, - [4367] = 4094, - [4368] = 4099, - [4369] = 4121, - [4370] = 4370, - [4371] = 4371, - [4372] = 4121, - [4373] = 4094, - [4374] = 4374, - [4375] = 4112, - [4376] = 4112, - [4377] = 4103, - [4378] = 4105, - [4379] = 4107, - [4380] = 4101, - [4381] = 4094, - [4382] = 4382, - [4383] = 1522, - [4384] = 4096, - [4385] = 1519, - [4386] = 4112, - [4387] = 4103, - [4388] = 4113, - [4389] = 4123, - [4390] = 4108, - [4391] = 4391, - [4392] = 4107, - [4393] = 4101, - [4394] = 4111, - [4395] = 4395, - [4396] = 4109, - [4397] = 4113, - [4398] = 4106, - [4399] = 4123, - [4400] = 3684, - [4401] = 4401, - [4402] = 3675, - [4403] = 4104, - [4404] = 3677, - [4405] = 3679, - [4406] = 4406, - [4407] = 4100, - [4408] = 4408, - [4409] = 4409, - [4410] = 4410, - [4411] = 4411, - [4412] = 4412, - [4413] = 4413, - [4414] = 4414, - [4415] = 4415, - [4416] = 4409, - [4417] = 4417, - [4418] = 4418, - [4419] = 4419, - [4420] = 4414, - [4421] = 4415, - [4422] = 4417, - [4423] = 4409, - [4424] = 4424, - [4425] = 4425, - [4426] = 4414, - [4427] = 4415, - [4428] = 4417, - [4429] = 4429, - [4430] = 4430, - [4431] = 4431, - [4432] = 4432, - [4433] = 4433, - [4434] = 4434, - [4435] = 4435, - [4436] = 4436, - [4437] = 4437, - [4438] = 4438, - [4439] = 4439, - [4440] = 4440, - [4441] = 4441, - [4442] = 4408, - [4443] = 4443, - [4444] = 4409, - [4445] = 4417, - [4446] = 4415, - [4447] = 4414, - [4448] = 4415, - [4449] = 4417, - [4450] = 4414, - [4451] = 4451, - [4452] = 4452, - [4453] = 4408, - [4454] = 4441, - [4455] = 4439, - [4456] = 4451, - [4457] = 4457, - [4458] = 4458, - [4459] = 4459, - [4460] = 4409, - [4461] = 4461, - [4462] = 4437, - [4463] = 4436, - [4464] = 4411, - [4465] = 4409, - [4466] = 4435, - [4467] = 4433, - [4468] = 4414, - [4469] = 4415, - [4470] = 4417, - [4471] = 4471, - [4472] = 4413, - [4473] = 4412, - [4474] = 4434, - [4475] = 4475, - [4476] = 4476, - [4477] = 4477, - [4478] = 4478, - [4479] = 4436, - [4480] = 4480, - [4481] = 4413, - [4482] = 4411, - [4483] = 4483, - [4484] = 4425, - [4485] = 4430, - [4486] = 4409, - [4487] = 4411, - [4488] = 4413, - [4489] = 4414, - [4490] = 4415, - [4491] = 4417, - [4492] = 4492, - [4493] = 4412, - [4494] = 4494, - [4495] = 4412, - [4496] = 4496, - [4497] = 4433, - [4498] = 4435, - [4499] = 4433, - [4500] = 4430, - [4501] = 4436, - [4502] = 4432, - [4503] = 4437, - [4504] = 4417, - [4505] = 4415, - [4506] = 4439, - [4507] = 4409, - [4508] = 4414, - [4509] = 4441, - [4510] = 4414, - [4511] = 4415, - [4512] = 4417, - [4513] = 4408, - [4514] = 4425, - [4515] = 4409, - [4516] = 4451, - [4517] = 4451, - [4518] = 4518, - [4519] = 4519, - [4520] = 4434, - [4521] = 4521, - [4522] = 4522, - [4523] = 4523, - [4524] = 4524, - [4525] = 4434, - [4526] = 4451, - [4527] = 4436, - [4528] = 4409, - [4529] = 4425, - [4530] = 4408, - [4531] = 4414, - [4532] = 4415, - [4533] = 4417, - [4534] = 4534, - [4535] = 4435, - [4536] = 4441, - [4537] = 4439, - [4538] = 4538, - [4539] = 4425, - [4540] = 4425, - [4541] = 4541, - [4542] = 4542, - [4543] = 4430, - [4544] = 4425, - [4545] = 4545, - [4546] = 4436, - [4547] = 4437, - [4548] = 4548, - [4549] = 4409, - [4550] = 4434, - [4551] = 4437, - [4552] = 4414, - [4553] = 4415, - [4554] = 4417, - [4555] = 4425, - [4556] = 4556, - [4557] = 4435, - [4558] = 4433, - [4559] = 4412, - [4560] = 4560, - [4561] = 4413, - [4562] = 4430, - [4563] = 4411, - [4564] = 4411, - [4565] = 4413, - [4566] = 4409, - [4567] = 4430, - [4568] = 4414, - [4569] = 4415, - [4570] = 4417, - [4571] = 4412, - [4572] = 4417, - [4573] = 4433, - [4574] = 4409, - [4575] = 4417, - [4576] = 4435, - [4577] = 4425, - [4578] = 4415, - [4579] = 4436, - [4580] = 4580, - [4581] = 4414, - [4582] = 4582, - [4583] = 4583, - [4584] = 4437, - [4585] = 4585, - [4586] = 4430, - [4587] = 4439, - [4588] = 4441, - [4589] = 4408, - [4590] = 4425, - [4591] = 4523, - [4592] = 4451, - [4593] = 4430, - [4594] = 4594, - [4595] = 4434, - [4596] = 4433, - [4597] = 4430, - [4598] = 4425, - [4599] = 4425, - [4600] = 4409, - [4601] = 4451, - [4602] = 4425, - [4603] = 4408, - [4604] = 4441, - [4605] = 4439, - [4606] = 4437, - [4607] = 4411, - [4608] = 4430, - [4609] = 4609, - [4610] = 4433, - [4611] = 4412, - [4612] = 4413, - [4613] = 4613, - [4614] = 4413, - [4615] = 4430, - [4616] = 4411, - [4617] = 4413, - [4618] = 4425, - [4619] = 4425, - [4620] = 4433, - [4621] = 2287, - [4622] = 4451, - [4623] = 4435, - [4624] = 4624, - [4625] = 4436, - [4626] = 4626, - [4627] = 4408, - [4628] = 4441, - [4629] = 4437, - [4630] = 4451, - [4631] = 4439, - [4632] = 4439, - [4633] = 4441, - [4634] = 4408, - [4635] = 4441, - [4636] = 4437, - [4637] = 4436, - [4638] = 4518, - [4639] = 4439, - [4640] = 4451, - [4641] = 4435, - [4642] = 4433, - [4643] = 4412, - [4644] = 4437, - [4645] = 4413, - [4646] = 4411, - [4647] = 4436, - [4648] = 4425, - [4649] = 4435, - [4650] = 4650, - [4651] = 4433, - [4652] = 4412, - [4653] = 4653, - [4654] = 4434, - [4655] = 4413, - [4656] = 4411, - [4657] = 4657, - [4658] = 4425, - [4659] = 4659, - [4660] = 4430, - [4661] = 4430, - [4662] = 4425, - [4663] = 4430, - [4664] = 4411, - [4665] = 4434, - [4666] = 4411, - [4667] = 4412, - [4668] = 4668, - [4669] = 4433, - [4670] = 2301, - [4671] = 4671, - [4672] = 4435, - [4673] = 4436, - [4674] = 4451, - [4675] = 4437, - [4676] = 4412, - [4677] = 4408, - [4678] = 4441, - [4679] = 4439, - [4680] = 4439, - [4681] = 4408, - [4682] = 4437, - [4683] = 4436, - [4684] = 4523, - [4685] = 4519, - [4686] = 4686, - [4687] = 4435, - [4688] = 4686, - [4689] = 4523, - [4690] = 4451, - [4691] = 4433, - [4692] = 4412, - [4693] = 4523, - [4694] = 4413, - [4695] = 4411, - [4696] = 4696, - [4697] = 4523, - [4698] = 4434, - [4699] = 4434, - [4700] = 4430, - [4701] = 4523, - [4702] = 4434, - [4703] = 4425, - [4704] = 4704, - [4705] = 4523, - [4706] = 4706, - [4707] = 4707, - [4708] = 4425, - [4709] = 4523, - [4710] = 4441, - [4711] = 4430, - [4712] = 4712, - [4713] = 4523, - [4714] = 4714, - [4715] = 4434, - [4716] = 4408, - [4717] = 4523, - [4718] = 4718, - [4719] = 4441, - [4720] = 4720, - [4721] = 4523, - [4722] = 4722, - [4723] = 4451, - [4724] = 4724, - [4725] = 4408, - [4726] = 4441, - [4727] = 4439, - [4728] = 4437, - [4729] = 4436, - [4730] = 4435, - [4731] = 4433, - [4732] = 4439, - [4733] = 4412, - [4734] = 4413, -}; - -static inline bool sym_rune_literal_character_set_1(int32_t c) { - return (c < 'e' - ? (c < '\\' - ? (c < '\'' - ? c == '"' - : c <= '\'') - : (c <= '\\' || (c >= '`' && c <= 'b'))) - : (c <= 'f' || (c < 't' - ? (c < 'r' - ? c == 'n' - : c <= 'r') - : (c <= 't' || c == 'v')))); -} - -static inline bool sym_identifier_character_set_1(int32_t c) { - return (c < 'p' - ? (c < 'd' - ? (c < 'b' - ? (c >= 'A' && c <= '_') - : c <= 'b') - : (c <= 'h' || (c < 'n' - ? (c >= 'k' && c <= 'l') - : c <= 'n'))) - : (c <= 'q' || (c < 913 - ? (c < 181 - ? (c >= 's' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 'n' - ? (c < 'b' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'b' || (c < 'k' - ? (c >= 'd' && c <= 'h') - : c <= 'l'))) - : (c <= 'n' || (c < 181 - ? (c < 's' - ? (c >= 'p' && c <= 'q') - : c <= 'z') - : (c <= 181 || (c < 945 - ? (c >= 913 && c <= 937) - : c <= 969))))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < 'n' - ? (c < 'b' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'h' || (c >= 'j' && c <= 'l'))) - : (c <= 'n' || (c < 913 - ? (c < 181 - ? (c >= 'p' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); -} - -static inline bool sym_identifier_character_set_4(int32_t c) { - return (c < 'n' - ? (c < 'a' - ? (c < '_' - ? (c >= 'A' && c <= 'Z') - : c <= '_') - : (c <= 'b' || (c < 'k' - ? (c >= 'd' && c <= 'i') - : c <= 'l'))) - : (c <= 'q' || (c < 913 - ? (c < 181 - ? (c >= 's' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); -} - -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 'o' - ? (c < '_' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c >= 'a' && c <= 'm'))) - : (c <= 'r' || (c < 913 - ? (c < 181 - ? (c >= 't' && c <= 'z') - : c <= 181) - : (c <= 937 || (c >= 945 && c <= 969))))); -} - -static bool ts_lex(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (eof) ADVANCE(259); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(355); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(686); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(324); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '\\') ADVANCE(239); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(257) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 1: - if (lookahead == '\n') ADVANCE(359); - END_STATE(); - case 2: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 3: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(3) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 4: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 5: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(5) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 6: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(8) - END_STATE(); - case 7: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(9) - END_STATE(); - case 8: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(8) - END_STATE(); - case 9: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(9) - END_STATE(); - case 10: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(12) - END_STATE(); - case 11: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(13) - END_STATE(); - case 12: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(12) - END_STATE(); - case 13: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(13) - END_STATE(); - case 14: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(16) - END_STATE(); - case 15: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(17) - END_STATE(); - case 16: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(16) - END_STATE(); - case 17: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(17) - END_STATE(); - case 18: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(19) - END_STATE(); - case 19: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(19) - END_STATE(); - case 20: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(21) - END_STATE(); - case 21: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(21) - END_STATE(); - case 22: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(23) - END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(23) - END_STATE(); - case 24: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(25) - END_STATE(); - case 25: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(25) - END_STATE(); - case 26: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(27) - END_STATE(); - case 27: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(27) - END_STATE(); - case 28: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(29) - END_STATE(); - case 29: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(29) - END_STATE(); - case 30: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(30) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 31: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '<') ADVANCE(323); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(32) - END_STATE(); - case 32: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(32) - END_STATE(); - case 33: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '/') ADVANCE(100); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(33) - END_STATE(); - case 34: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '.') ADVANCE(158); - if (lookahead == '/') ADVANCE(100); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(34) - END_STATE(); - case 35: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(36) - END_STATE(); - case 36: - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(36) - END_STATE(); - case 37: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 38: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(38) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 39: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 40: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(177); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 41: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(397); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 42: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(397); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 43: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) - END_STATE(); - case 44: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44) - END_STATE(); - case 45: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) - END_STATE(); - case 46: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) - END_STATE(); - case 47: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(47) - END_STATE(); - case 48: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48) - END_STATE(); - case 49: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(51) - END_STATE(); - case 50: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52) - END_STATE(); - case 51: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(51) - END_STATE(); - case 52: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52) - END_STATE(); - case 53: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54) - END_STATE(); - case 54: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_3(lookahead)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54) - END_STATE(); - case 55: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56) - END_STATE(); - case 56: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(56) - END_STATE(); - case 57: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58) - END_STATE(); - case 58: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(58) - END_STATE(); - case 59: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) - END_STATE(); - case 60: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(60) - END_STATE(); - case 61: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62) - END_STATE(); - case 62: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(62) - END_STATE(); - case 63: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) - END_STATE(); - case 64: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(64) - END_STATE(); - case 65: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) - END_STATE(); - case 66: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(66) - END_STATE(); - case 67: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) - END_STATE(); - case 68: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(179); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(68) - END_STATE(); - case 69: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70) - END_STATE(); - case 70: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(194); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(310); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(70) - END_STATE(); - case 71: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) - END_STATE(); - case 72: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(305); - if (lookahead == ':') ADVANCE(328); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(72) - END_STATE(); - case 73: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) - END_STATE(); - case 74: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(279); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(74) - END_STATE(); - case 75: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(76) - END_STATE(); - case 76: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(168); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(311); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(76) - END_STATE(); - case 77: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(78) - END_STATE(); - case 78: - if (lookahead == '!') ADVANCE(334); - if (lookahead == '#') ADVANCE(80); - if (lookahead == '$') ADVANCE(193); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(304); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (lookahead == 'a') ADVANCE(202); - if (lookahead == 'i') ADVANCE(199); - if (lookahead == 'o') ADVANCE(201); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(78) - END_STATE(); - case 79: - if (lookahead == '!') ADVANCE(272); - END_STATE(); - case 80: - if (lookahead == '!') ADVANCE(272); - if (lookahead == '[') ADVANCE(365); - END_STATE(); - case 81: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(278); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(327); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(81) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 82: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(180); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(280); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(688); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(82) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 83: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '<') ADVANCE(323); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '{') ADVANCE(284); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(84) - END_STATE(); - case 84: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '{') ADVANCE(284); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(84) - END_STATE(); - case 85: - if (lookahead == '!') ADVANCE(333); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '.') ADVANCE(158); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'l') || - ('n' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == '{') ADVANCE(284); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(85) - END_STATE(); - case 86: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(314); - if (lookahead == '@') ADVANCE(98); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(86) - END_STATE(); - case 87: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(356); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(397); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(325); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(314); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == ']') ADVANCE(326); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 88: - if (lookahead == '!') ADVANCE(166); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(356); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(277); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(397); - if (lookahead == ':') ADVANCE(327); - if (lookahead == '<') ADVANCE(312); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(314); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(88) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 89: - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '.') ADVANCE(216); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - lookahead == 'a' || - lookahead == 'b' || - ('d' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'r') ADVANCE(690); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(89) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 90: - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(473); - if (lookahead == '$') ADVANCE(204); - if (lookahead == '/') ADVANCE(485); - if (lookahead == '\\') ADVANCE(239); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(474); - if (lookahead != 0) ADVANCE(542); - END_STATE(); - case 91: - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(615); - if (lookahead == '/') ADVANCE(627); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(616); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 92: - if (lookahead == '#') ADVANCE(79); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '.') ADVANCE(275); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(686); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '@') ADVANCE(99); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == ']') ADVANCE(326); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '+' || - lookahead == '-') ADVANCE(685); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(92) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 93: - if (lookahead == '#') ADVANCE(79); - if (lookahead == '/') ADVANCE(100); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(93) - END_STATE(); - case 94: - if (lookahead == '#') ADVANCE(402); - if (lookahead == '$') ADVANCE(204); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '/') ADVANCE(414); - if (lookahead == '\\') ADVANCE(239); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(403); - if (lookahead != 0) ADVANCE(471); - END_STATE(); - case 95: - if (lookahead == '#') ADVANCE(544); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '/') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(545); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(613); - END_STATE(); - case 96: - if (lookahead == '#') ADVANCE(789); - if (lookahead == '/') ADVANCE(801); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); - END_STATE(); - case 97: - if (lookahead == '#') ADVANCE(717); - if (lookahead == '/') ADVANCE(726); - if (lookahead == '\n' || - lookahead == '\r') SKIP(93) - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') ADVANCE(718); - if (lookahead != 0 && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 98: - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(859); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 99: - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 100: - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(271); - END_STATE(); - case 101: - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(271); - if (lookahead == '=') ADVANCE(377); - END_STATE(); - case 102: - if (lookahead == '*') ADVANCE(161); - if (lookahead == '/') ADVANCE(104); - if (lookahead != 0) ADVANCE(105); - END_STATE(); - case 103: - if (lookahead == '*') ADVANCE(162); - if (lookahead == '/') ADVANCE(110); - if (lookahead != 0) ADVANCE(103); - END_STATE(); - case 104: - if (lookahead == '*') ADVANCE(162); - if (lookahead != 0) ADVANCE(104); - END_STATE(); - case 105: - if (lookahead == '*') ADVANCE(162); - if (lookahead != 0) ADVANCE(103); - END_STATE(); - case 106: - if (lookahead == '*') ADVANCE(114); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(163); - END_STATE(); - case 107: - if (lookahead == '*') ADVANCE(241); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(117); - END_STATE(); - case 108: - if (lookahead == '*') ADVANCE(241); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(116); - END_STATE(); - case 109: - if (lookahead == '*') ADVANCE(241); - if (lookahead == '/') ADVANCE(144); - if (lookahead != 0) ADVANCE(145); - END_STATE(); - case 110: - if (lookahead == '*') ADVANCE(111); - if (lookahead == '/') ADVANCE(110); - if (lookahead != 0) ADVANCE(103); - END_STATE(); - case 111: - if (lookahead == '*') ADVANCE(113); - if (lookahead == '/') ADVANCE(262); - if (lookahead != 0) ADVANCE(242); - END_STATE(); - case 112: - if (lookahead == '*') ADVANCE(113); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(165); - END_STATE(); - case 113: - if (lookahead == '*') ADVANCE(113); - if (lookahead == '/') ADVANCE(107); - if (lookahead != 0) ADVANCE(107); - END_STATE(); - case 114: - if (lookahead == '*') ADVANCE(113); - if (lookahead != 0 && - lookahead != '/') ADVANCE(242); - END_STATE(); - case 115: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(127); - END_STATE(); - case 116: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); - END_STATE(); - case 117: - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(116); - if (lookahead != 0) ADVANCE(126); - END_STATE(); - case 118: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(119); - END_STATE(); - case 119: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(119); - END_STATE(); - case 120: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(164); - if (lookahead != 0) ADVANCE(119); - END_STATE(); - case 121: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(240); - if (lookahead != 0) ADVANCE(124); - END_STATE(); - case 122: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(107); - if (lookahead != 0) ADVANCE(125); - END_STATE(); - case 123: - if (lookahead == '*') ADVANCE(121); - if (lookahead == '/') ADVANCE(134); - if (lookahead != 0) ADVANCE(126); - END_STATE(); - case 124: - if (lookahead == '*') ADVANCE(121); - if (lookahead != 0 && - lookahead != '/') ADVANCE(124); - END_STATE(); - case 125: - if (lookahead == '*') ADVANCE(120); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(127); - END_STATE(); - case 126: - if (lookahead == '*') ADVANCE(120); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); - END_STATE(); - case 127: - if (lookahead == '*') ADVANCE(120); - if (lookahead == '/') ADVANCE(116); - if (lookahead != 0) ADVANCE(126); - END_STATE(); - case 128: - if (lookahead == '*') ADVANCE(152); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); - END_STATE(); - case 129: - if (lookahead == '*') ADVANCE(129); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(146); - END_STATE(); - case 130: - if (lookahead == '*') ADVANCE(129); - if (lookahead == '/') ADVANCE(266); - if (lookahead != 0) ADVANCE(147); - END_STATE(); - case 131: - if (lookahead == '*') ADVANCE(129); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(130); - END_STATE(); - case 132: - if (lookahead == '*') ADVANCE(133); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(148); - END_STATE(); - case 133: - if (lookahead == '*') ADVANCE(133); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(143); - END_STATE(); - case 134: - if (lookahead == '*') ADVANCE(112); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(116); - END_STATE(); - case 135: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(135); - END_STATE(); - case 136: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(266); - if (lookahead != 0) ADVANCE(136); - END_STATE(); - case 137: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(136); - END_STATE(); - case 138: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(263); - if (lookahead != 0) ADVANCE(135); - END_STATE(); - case 139: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(264); - if (lookahead != 0) ADVANCE(136); - END_STATE(); - case 140: - if (lookahead == '*') ADVANCE(138); - if (lookahead == '/') ADVANCE(265); - if (lookahead != 0) ADVANCE(136); - END_STATE(); - case 141: - if (lookahead == '*') ADVANCE(138); - if (lookahead != 0 && - lookahead != '/') ADVANCE(135); - END_STATE(); - case 142: - if (lookahead == '*') ADVANCE(132); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(130); - END_STATE(); - case 143: - if (lookahead == '*') ADVANCE(139); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(151); - END_STATE(); - case 144: - if (lookahead == '*') ADVANCE(139); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(151); - END_STATE(); - case 145: - if (lookahead == '*') ADVANCE(139); - if (lookahead == '/') ADVANCE(116); - if (lookahead != 0) ADVANCE(150); - END_STATE(); - case 146: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(273); - if (lookahead != 0) ADVANCE(135); - END_STATE(); - case 147: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(266); - if (lookahead != 0) ADVANCE(136); - END_STATE(); - case 148: - if (lookahead == '*') ADVANCE(135); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(149); - END_STATE(); - case 149: - if (lookahead == '*') ADVANCE(140); - if (lookahead == '/') ADVANCE(267); - if (lookahead != 0) ADVANCE(151); - END_STATE(); - case 150: - if (lookahead == '*') ADVANCE(140); - if (lookahead == '/') ADVANCE(269); - if (lookahead != 0) ADVANCE(150); - END_STATE(); - case 151: - if (lookahead == '*') ADVANCE(140); - if (lookahead == '/') ADVANCE(268); - if (lookahead != 0) ADVANCE(150); - END_STATE(); - case 152: - if (lookahead == '*') ADVANCE(153); - if (lookahead == '/') ADVANCE(163); - if (lookahead != 0) ADVANCE(123); - END_STATE(); - case 153: - if (lookahead == '*') ADVANCE(153); - if (lookahead == '/') ADVANCE(109); - if (lookahead != 0) ADVANCE(125); - END_STATE(); - case 154: - if (lookahead == '*') ADVANCE(153); - if (lookahead != 0 && - lookahead != '/') ADVANCE(122); - END_STATE(); - case 155: - if (lookahead == '-') ADVANCE(344); - END_STATE(); - case 156: - if (lookahead == '-') ADVANCE(344); - if (lookahead == '<') ADVANCE(172); - END_STATE(); - case 157: - if (lookahead == '.') ADVANCE(321); - END_STATE(); - case 158: - if (lookahead == '.') ADVANCE(157); - END_STATE(); - case 159: - if (lookahead == '.') ADVANCE(216); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == '_') ADVANCE(217); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(159); - END_STATE(); - case 160: - if (lookahead == '.') ADVANCE(224); - if (lookahead == '_') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); - END_STATE(); - case 161: - if (lookahead == '/') ADVANCE(270); - if (lookahead != 0 && - lookahead != '*') ADVANCE(163); - END_STATE(); - case 162: - if (lookahead == '/') ADVANCE(262); - END_STATE(); - case 163: - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0 && - lookahead != '*') ADVANCE(163); - END_STATE(); - case 164: - if (lookahead == '/') ADVANCE(142); - if (lookahead != 0 && - lookahead != '*') ADVANCE(131); - END_STATE(); - case 165: - if (lookahead == '/') ADVANCE(134); - if (lookahead != 0 && - lookahead != '*') ADVANCE(108); - END_STATE(); - case 166: - if (lookahead == '=') ADVANCE(318); - END_STATE(); - case 167: - if (lookahead == '=') ADVANCE(378); - END_STATE(); - case 168: - if (lookahead == '=') ADVANCE(388); - END_STATE(); - case 169: - if (lookahead == '=') ADVANCE(317); - END_STATE(); - case 170: - if (lookahead == '=') ADVANCE(386); - END_STATE(); - case 171: - if (lookahead == '=') ADVANCE(383); - END_STATE(); - case 172: - if (lookahead == '=') ADVANCE(379); - END_STATE(); - case 173: - if (lookahead == '=') ADVANCE(380); - if (lookahead == '>') ADVANCE(174); - END_STATE(); - case 174: - if (lookahead == '=') ADVANCE(381); - END_STATE(); - case 175: - if (lookahead == '>') ADVANCE(173); - END_STATE(); - case 176: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - lookahead == 'g' || - lookahead == 'h' || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(699); - if (lookahead == 'f') ADVANCE(702); - if (lookahead == 'i') ADVANCE(698); - END_STATE(); - case 177: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(699); - if (lookahead == 'i') ADVANCE(698); - END_STATE(); - case 178: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e') || - lookahead == 'g' || - lookahead == 'h' || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'f') ADVANCE(702); - if (lookahead == 'i') ADVANCE(698); - END_STATE(); - case 179: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(699); - END_STATE(); - case 180: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'h') || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'i') ADVANCE(698); - END_STATE(); - case 181: - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 182: - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 183: - if (lookahead == '_') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); - END_STATE(); - case 184: - if (lookahead == '_') ADVANCE(208); - if (lookahead == '0' || - lookahead == '1') ADVANCE(395); - END_STATE(); - case 185: - if (lookahead == '_') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); - END_STATE(); - case 186: - if (lookahead == '`') ADVANCE(400); - END_STATE(); - case 187: - if (lookahead == '`') ADVANCE(400); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(211); - END_STATE(); - case 188: - if (lookahead == 'c') ADVANCE(200); - END_STATE(); - case 189: - if (lookahead == 'd') ADVANCE(191); - END_STATE(); - case 190: - if (lookahead == 'd') ADVANCE(192); - END_STATE(); - case 191: - if (lookahead == 'e') ADVANCE(188); - END_STATE(); - case 192: - if (lookahead == 'e') ADVANCE(335); - END_STATE(); - case 193: - if (lookahead == 'e') ADVANCE(197); - END_STATE(); - case 194: - if (lookahead == 'e') ADVANCE(197); - if (lookahead == 'i') ADVANCE(196); - END_STATE(); - case 195: - if (lookahead == 'e') ADVANCE(368); - END_STATE(); - case 196: - if (lookahead == 'f') ADVANCE(366); - END_STATE(); - case 197: - if (lookahead == 'l') ADVANCE(203); - END_STATE(); - case 198: - if (lookahead == 'n') ADVANCE(375); - if (lookahead == 's') ADVANCE(372); - END_STATE(); - case 199: - if (lookahead == 'n') ADVANCE(373); - if (lookahead == 's') ADVANCE(370); - END_STATE(); - case 200: - if (lookahead == 'o') ADVANCE(190); - END_STATE(); - case 201: - if (lookahead == 'r') ADVANCE(357); - END_STATE(); - case 202: - if (lookahead == 's') ADVANCE(282); - END_STATE(); - case 203: - if (lookahead == 's') ADVANCE(195); - END_STATE(); - case 204: - if (lookahead == '{') ADVANCE(860); - END_STATE(); - case 205: - if (lookahead == '+' || - lookahead == '-') ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); - END_STATE(); - case 206: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(205); - if (lookahead == '_') ADVANCE(224); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); - END_STATE(); - case 207: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(205); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); - END_STATE(); - case 208: - if (lookahead == '0' || - lookahead == '1') ADVANCE(395); - END_STATE(); - case 209: - if (lookahead == '8' || - lookahead == '9') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(391); - END_STATE(); - case 210: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); - END_STATE(); - case 211: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(186); - END_STATE(); - case 212: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(211); - END_STATE(); - case 213: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 214: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(359); - END_STATE(); - case 215: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 216: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); - END_STATE(); - case 217: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(159); - END_STATE(); - case 218: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); - END_STATE(); - case 219: - if (sym_rune_literal_character_set_1(lookahead)) ADVANCE(186); - if (lookahead == '0') ADVANCE(187); - if (lookahead == 'U') ADVANCE(237); - if (lookahead == 'u') ADVANCE(230); - if (lookahead == 'x') ADVANCE(226); - if (('1' <= lookahead && lookahead <= '7')) ADVANCE(212); - END_STATE(); - case 220: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(359); - END_STATE(); - case 221: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(186); - END_STATE(); - case 222: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); - END_STATE(); - case 223: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); - END_STATE(); - case 224: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(206); - END_STATE(); - case 225: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); - END_STATE(); - case 226: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(221); - END_STATE(); - case 227: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(226); - END_STATE(); - case 228: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(225); - END_STATE(); - case 229: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(228); - END_STATE(); - case 230: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(227); - END_STATE(); - case 231: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(230); - END_STATE(); - case 232: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(229); - END_STATE(); - case 233: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(232); - END_STATE(); - case 234: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); - END_STATE(); - case 235: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(233); - END_STATE(); - case 236: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(234); - END_STATE(); - case 237: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); - END_STATE(); - case 238: - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 239: - if (lookahead != 0 && - lookahead != '\t' && - (lookahead < 11 || '\r' < lookahead) && - lookahead != ' ' && - (lookahead < '0' || '9' < lookahead) && - lookahead != 'U' && - lookahead != 'u' && - lookahead != 'x') ADVANCE(359); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == 'U') ADVANCE(361); - if (lookahead == 'u') ADVANCE(363); - if (lookahead == 'x') ADVANCE(362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(360); - END_STATE(); - case 240: - if (lookahead != 0 && - lookahead != '*') ADVANCE(243); - END_STATE(); - case 241: - if (lookahead != 0 && - lookahead != '*') ADVANCE(163); - END_STATE(); - case 242: - if (lookahead != 0 && - lookahead != '*') ADVANCE(107); - END_STATE(); - case 243: - if (lookahead != 0 && - lookahead != '/') ADVANCE(129); - END_STATE(); - case 244: - if (lookahead != 0 && - lookahead != '\\') ADVANCE(186); - if (lookahead == '\\') ADVANCE(219); - END_STATE(); - case 245: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 246: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(246) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 247: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 248: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(248) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 249: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 250: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(250) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 251: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 252: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(176); - if (lookahead == '%') ADVANCE(306); - if (lookahead == '&') ADVANCE(342); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(295); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(299); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(304); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(309); - if (lookahead == '=') ADVANCE(169); - if (lookahead == '>') ADVANCE(316); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_2(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(293); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(252) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 253: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '%') ADVANCE(167); - if (lookahead == '&') ADVANCE(343); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(297); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(301); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(101); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ':') ADVANCE(168); - if (lookahead == '<') ADVANCE(156); - if (lookahead == '=') ADVANCE(289); - if (lookahead == '>') ADVANCE(175); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(170); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(253) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 254: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(291); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(254) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 255: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(322); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(291); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(256) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 256: - if (eof) ADVANCE(259); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(291); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\f') || - lookahead == ' ') SKIP(256) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 257: - if (eof) ADVANCE(259); - if (lookahead == '!') ADVANCE(334); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(716); - if (lookahead == '$') ADVANCE(355); - if (lookahead == '%') ADVANCE(307); - if (lookahead == '&') ADVANCE(341); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == ')') ADVANCE(288); - if (lookahead == '*') ADVANCE(303); - if (lookahead == '+') ADVANCE(296); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(300); - if (lookahead == '.') ADVANCE(276); - if (lookahead == '/') ADVANCE(305); - if (lookahead == '0') ADVANCE(686); - if (lookahead == ':') ADVANCE(328); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(308); - if (lookahead == '=') ADVANCE(290); - if (lookahead == '>') ADVANCE(315); - if (lookahead == '?') ADVANCE(332); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == '\\') ADVANCE(239); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(339); - if (sym_identifier_character_set_1(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'a') ADVANCE(706); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'i') ADVANCE(696); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'o') ADVANCE(704); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '|') ADVANCE(292); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(257) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 258: - if (eof) ADVANCE(259); - if (lookahead == '!') ADVANCE(333); - if (lookahead == '"') ADVANCE(861); - if (lookahead == '#') ADVANCE(715); - if (lookahead == '$') ADVANCE(178); - if (lookahead == '&') ADVANCE(340); - if (lookahead == '\'') ADVANCE(862); - if (lookahead == '(') ADVANCE(287); - if (lookahead == '*') ADVANCE(302); - if (lookahead == '+') ADVANCE(294); - if (lookahead == ',') ADVANCE(285); - if (lookahead == '-') ADVANCE(298); - if (lookahead == '.') ADVANCE(281); - if (lookahead == '/') ADVANCE(100); - if (lookahead == '0') ADVANCE(390); - if (lookahead == ';') ADVANCE(274); - if (lookahead == '<') ADVANCE(155); - if (lookahead == '>') ADVANCE(313); - if (lookahead == '?') ADVANCE(331); - if (lookahead == '@') ADVANCE(687); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(336); - if (lookahead == ']') ADVANCE(326); - if (lookahead == '^') ADVANCE(338); - if (sym_identifier_character_set_4(lookahead)) ADVANCE(710); - if (lookahead == '`') ADVANCE(244); - if (lookahead == 'c') ADVANCE(689); - if (lookahead == 'j') ADVANCE(708); - if (lookahead == 'm') ADVANCE(709); - if (lookahead == 'r') ADVANCE(690); - if (lookahead == '{') ADVANCE(284); - if (lookahead == '}') ADVANCE(286); - if (lookahead == '~') ADVANCE(337); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(258) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 259: - ACCEPT_TOKEN(ts_builtin_sym_end); - END_STATE(); - case 260: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - END_STATE(); - case 261: - ACCEPT_TOKEN(anon_sym_CR); - if (lookahead == '\n') ADVANCE(260); - if (lookahead == '\r') ADVANCE(261); - END_STATE(); - case 262: - ACCEPT_TOKEN(sym_comment); - END_STATE(); - case 263: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(124); - if (lookahead == '/') ADVANCE(243); - if (lookahead != 0) ADVANCE(141); - END_STATE(); - case 264: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(124); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(119); - END_STATE(); - case 265: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(124); - if (lookahead == '/') ADVANCE(142); - if (lookahead != 0) ADVANCE(137); - END_STATE(); - case 266: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(154); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0) ADVANCE(119); - END_STATE(); - case 267: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(115); - if (lookahead != 0) ADVANCE(127); - END_STATE(); - case 268: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(118); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); - END_STATE(); - case 269: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '*') ADVANCE(152); - if (lookahead == '/') ADVANCE(128); - if (lookahead != 0) ADVANCE(126); - END_STATE(); - case 270: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '/') ADVANCE(106); - if (lookahead != 0 && - lookahead != '*') ADVANCE(163); - END_STATE(); - case 271: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(271); - END_STATE(); - case 272: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(272); - END_STATE(); - case 273: - ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '/') ADVANCE(124); - END_STATE(); - case 274: - ACCEPT_TOKEN(anon_sym_SEMI); - END_STATE(); - case 275: - ACCEPT_TOKEN(anon_sym_DOT); - END_STATE(); - case 276: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(714); - END_STATE(); - case 277: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(157); - END_STATE(); - case 278: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(157); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); - END_STATE(); - case 279: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(713); - END_STATE(); - case 280: - ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(713); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); - END_STATE(); - case 281: - ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); - END_STATE(); - case 282: - ACCEPT_TOKEN(anon_sym_as); - END_STATE(); - case 283: - ACCEPT_TOKEN(anon_sym_as); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 284: - ACCEPT_TOKEN(anon_sym_LBRACE); - END_STATE(); - case 285: - ACCEPT_TOKEN(anon_sym_COMMA); - END_STATE(); - case 286: - ACCEPT_TOKEN(anon_sym_RBRACE); - END_STATE(); - case 287: - ACCEPT_TOKEN(anon_sym_LPAREN); - END_STATE(); - case 288: - ACCEPT_TOKEN(anon_sym_RPAREN); - END_STATE(); - case 289: - ACCEPT_TOKEN(anon_sym_EQ); - END_STATE(); - case 290: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(317); - END_STATE(); - case 291: - ACCEPT_TOKEN(anon_sym_PIPE); - END_STATE(); - case 292: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '=') ADVANCE(386); - if (lookahead == '|') ADVANCE(354); - END_STATE(); - case 293: - ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(354); - END_STATE(); - case 294: - ACCEPT_TOKEN(anon_sym_PLUS); - END_STATE(); - case 295: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(329); - END_STATE(); - case 296: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(329); - if (lookahead == '=') ADVANCE(384); - END_STATE(); - case 297: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '=') ADVANCE(384); - END_STATE(); - case 298: - ACCEPT_TOKEN(anon_sym_DASH); - END_STATE(); - case 299: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(330); - END_STATE(); - case 300: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(330); - if (lookahead == '=') ADVANCE(385); - END_STATE(); - case 301: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '=') ADVANCE(385); - END_STATE(); - case 302: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 303: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '=') ADVANCE(376); - END_STATE(); - case 304: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(271); - END_STATE(); - case 305: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(102); - if (lookahead == '/') ADVANCE(271); - if (lookahead == '=') ADVANCE(377); - END_STATE(); - case 306: - ACCEPT_TOKEN(anon_sym_PERCENT); - END_STATE(); - case 307: - ACCEPT_TOKEN(anon_sym_PERCENT); - if (lookahead == '=') ADVANCE(378); - END_STATE(); - case 308: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(344); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(319); - END_STATE(); - case 309: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(344); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(319); - END_STATE(); - case 310: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(319); - END_STATE(); - case 311: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(345); - if (lookahead == '=') ADVANCE(319); - END_STATE(); - case 312: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(319); - END_STATE(); - case 313: - ACCEPT_TOKEN(anon_sym_GT); - END_STATE(); - case 314: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(320); - END_STATE(); - case 315: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(347); - END_STATE(); - case 316: - ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(320); - if (lookahead == '>') ADVANCE(348); - END_STATE(); - case 317: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - END_STATE(); - case 318: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - END_STATE(); - case 319: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 320: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 321: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - END_STATE(); - case 322: - ACCEPT_TOKEN(anon_sym_LBRACK); - END_STATE(); - case 323: - ACCEPT_TOKEN(anon_sym_LT2); - END_STATE(); - case 324: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '-') ADVANCE(344); - if (lookahead == '<') ADVANCE(346); - if (lookahead == '=') ADVANCE(319); - END_STATE(); - case 325: - ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(319); - END_STATE(); - case 326: - ACCEPT_TOKEN(anon_sym_RBRACK); - END_STATE(); - case 327: - ACCEPT_TOKEN(anon_sym_COLON); - END_STATE(); - case 328: - ACCEPT_TOKEN(anon_sym_COLON); - if (lookahead == '=') ADVANCE(388); - END_STATE(); - case 329: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - END_STATE(); - case 330: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - END_STATE(); - case 331: - ACCEPT_TOKEN(anon_sym_QMARK); - END_STATE(); - case 332: - ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '.') ADVANCE(364); - END_STATE(); - case 333: - ACCEPT_TOKEN(anon_sym_BANG); - END_STATE(); - case 334: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(318); - if (lookahead == 'i') ADVANCE(198); - END_STATE(); - case 335: - ACCEPT_TOKEN(anon_sym_json_DOTdecode); - END_STATE(); - case 336: - ACCEPT_TOKEN(anon_sym_LBRACK2); - END_STATE(); - case 337: - ACCEPT_TOKEN(anon_sym_TILDE); - END_STATE(); - case 338: - ACCEPT_TOKEN(anon_sym_CARET); - END_STATE(); - case 339: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '=') ADVANCE(387); - END_STATE(); - case 340: - ACCEPT_TOKEN(anon_sym_AMP); - END_STATE(); - case 341: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(353); - if (lookahead == '=') ADVANCE(382); - if (lookahead == '^') ADVANCE(352); - END_STATE(); - case 342: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(353); - if (lookahead == '^') ADVANCE(351); - END_STATE(); - case 343: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '=') ADVANCE(382); - if (lookahead == '^') ADVANCE(171); - END_STATE(); - case 344: - ACCEPT_TOKEN(anon_sym_LT_DASH); - END_STATE(); - case 345: - ACCEPT_TOKEN(anon_sym_LT_LT); - END_STATE(); - case 346: - ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '=') ADVANCE(379); - END_STATE(); - case 347: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '=') ADVANCE(380); - if (lookahead == '>') ADVANCE(350); - END_STATE(); - case 348: - ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(349); - END_STATE(); - case 349: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - END_STATE(); - case 350: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == '=') ADVANCE(381); - END_STATE(); - case 351: - ACCEPT_TOKEN(anon_sym_AMP_CARET); - END_STATE(); - case 352: - ACCEPT_TOKEN(anon_sym_AMP_CARET); - if (lookahead == '=') ADVANCE(383); - END_STATE(); - case 353: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - END_STATE(); - case 354: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - END_STATE(); - case 355: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - lookahead == 'g' || - lookahead == 'h' || - ('j' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(699); - if (lookahead == 'f') ADVANCE(702); - if (lookahead == 'i') ADVANCE(698); - if (lookahead == '{') ADVANCE(860); - END_STATE(); - case 356: - ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 357: - ACCEPT_TOKEN(anon_sym_or); - END_STATE(); - case 358: - ACCEPT_TOKEN(anon_sym_or); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 359: - ACCEPT_TOKEN(sym_escape_sequence); - END_STATE(); - case 360: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(214); - END_STATE(); - case 361: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); - END_STATE(); - case 362: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(220); - END_STATE(); - case 363: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(228); - END_STATE(); - case 364: - ACCEPT_TOKEN(anon_sym_QMARK_DOT); - END_STATE(); - case 365: - ACCEPT_TOKEN(anon_sym_POUND_LBRACK); - END_STATE(); - case 366: - ACCEPT_TOKEN(anon_sym_DOLLARif); - END_STATE(); - case 367: - ACCEPT_TOKEN(anon_sym_DOLLARif); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 368: - ACCEPT_TOKEN(anon_sym_DOLLARelse); - END_STATE(); - case 369: - ACCEPT_TOKEN(anon_sym_DOLLARelse); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 370: - ACCEPT_TOKEN(anon_sym_is); - END_STATE(); - case 371: - ACCEPT_TOKEN(anon_sym_is); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 372: - ACCEPT_TOKEN(anon_sym_BANGis); - END_STATE(); - case 373: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 374: - ACCEPT_TOKEN(anon_sym_in); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 375: - ACCEPT_TOKEN(anon_sym_BANGin); - END_STATE(); - case 376: - ACCEPT_TOKEN(anon_sym_STAR_EQ); - END_STATE(); - case 377: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); - END_STATE(); - case 378: - ACCEPT_TOKEN(anon_sym_PERCENT_EQ); - END_STATE(); - case 379: - ACCEPT_TOKEN(anon_sym_LT_LT_EQ); - END_STATE(); - case 380: - ACCEPT_TOKEN(anon_sym_GT_GT_EQ); - END_STATE(); - case 381: - ACCEPT_TOKEN(anon_sym_GT_GT_GT_EQ); - END_STATE(); - case 382: - ACCEPT_TOKEN(anon_sym_AMP_EQ); - END_STATE(); - case 383: - ACCEPT_TOKEN(anon_sym_AMP_CARET_EQ); - END_STATE(); - case 384: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); - END_STATE(); - case 385: - ACCEPT_TOKEN(anon_sym_DASH_EQ); - END_STATE(); - case 386: - ACCEPT_TOKEN(anon_sym_PIPE_EQ); - END_STATE(); - case 387: - ACCEPT_TOKEN(anon_sym_CARET_EQ); - END_STATE(); - case 388: - ACCEPT_TOKEN(anon_sym_COLON_EQ); - END_STATE(); - case 389: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(207); - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(205); - if (lookahead == '_') ADVANCE(223); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(389); - END_STATE(); - case 390: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(216); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(184); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(183); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(160); - if (lookahead == '_') ADVANCE(209); - if (lookahead == '8' || - lookahead == '9') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(391); - END_STATE(); - case 391: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(216); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == '_') ADVANCE(209); - if (lookahead == '8' || - lookahead == '9') ADVANCE(159); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(391); - END_STATE(); - case 392: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '.') ADVANCE(216); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == '_') ADVANCE(215); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(392); - END_STATE(); - case 393: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); - END_STATE(); - case 394: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(213); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); - END_STATE(); - case 395: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(208); - if (lookahead == '0' || - lookahead == '1') ADVANCE(395); - END_STATE(); - case 396: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == '_') ADVANCE(222); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(396); - END_STATE(); - case 397: - ACCEPT_TOKEN(sym_int_literal); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(184); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(183); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(185); - if (lookahead == '_') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); - END_STATE(); - case 398: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == '_') ADVANCE(218); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(398); - END_STATE(); - case 399: - ACCEPT_TOKEN(sym_float_literal); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(205); - if (lookahead == '_') ADVANCE(216); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(399); - END_STATE(); - case 400: - ACCEPT_TOKEN(sym_rune_literal); - END_STATE(); - case 401: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(401); - END_STATE(); - case 402: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '!') ADVANCE(401); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(471); - END_STATE(); - case 403: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '#') ADVANCE(402); - if (lookahead == '/') ADVANCE(414); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(403); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(471); - END_STATE(); - case 404: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(404); - END_STATE(); - case 405: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '/') ADVANCE(441); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(438); - END_STATE(); - case 406: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(404); - END_STATE(); - case 407: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead == '/') ADVANCE(442); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(417); - END_STATE(); - case 408: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(469); - END_STATE(); - case 409: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(416); - END_STATE(); - case 410: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(404); - END_STATE(); - case 411: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(467); - if (lookahead == '/') ADVANCE(420); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(411); - END_STATE(); - case 412: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(467); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(412); - END_STATE(); - case 413: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(467); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(411); - END_STATE(); - case 414: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(415); - if (lookahead == '/') ADVANCE(470); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(471); - END_STATE(); - case 415: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(406); - if (lookahead == '/') ADVANCE(412); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(413); - END_STATE(); - case 416: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(426); - END_STATE(); - case 417: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(425); - END_STATE(); - case 418: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(410); - if (lookahead == '/') ADVANCE(452); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(453); - END_STATE(); - case 419: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(421); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(404); - END_STATE(); - case 420: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(421); - if (lookahead == '/') ADVANCE(420); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(411); - END_STATE(); - case 421: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(409); - END_STATE(); - case 422: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(416); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(416); - END_STATE(); - case 423: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(422); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(407); - END_STATE(); - case 424: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(466); - END_STATE(); - case 425: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); - END_STATE(); - case 426: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(431); - if (lookahead == '/') ADVANCE(425); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); - END_STATE(); - case 427: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(427); - END_STATE(); - case 428: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); - END_STATE(); - case 429: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(408); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(427); - END_STATE(); - case 430: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(416); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(464); - END_STATE(); - case 431: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); - END_STATE(); - case 432: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(405); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); - END_STATE(); - case 433: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(429); - if (lookahead == '/') ADVANCE(442); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); - END_STATE(); - case 434: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(469); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(454); - END_STATE(); - case 435: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); - END_STATE(); - case 436: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(427); - if (lookahead == '/') ADVANCE(441); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(455); - END_STATE(); - case 437: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(448); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); - END_STATE(); - case 438: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(439); - END_STATE(); - case 439: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(446); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(443); - END_STATE(); - case 440: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(440); - if (lookahead == '/') ADVANCE(468); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(444); - END_STATE(); - case 441: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(450); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(439); - END_STATE(); - case 442: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(423); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(425); - END_STATE(); - case 443: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(446); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); - END_STATE(); - case 444: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(468); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(459); - END_STATE(); - case 445: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(459); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(461); - END_STATE(); - case 446: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(447); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(428); - END_STATE(); - case 447: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(430); - END_STATE(); - case 448: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(404); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(433); - END_STATE(); - case 449: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(449); - if (lookahead == '/') ADVANCE(418); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(464); - END_STATE(); - case 450: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(451); - if (lookahead == '/') ADVANCE(468); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(445); - END_STATE(); - case 451: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(451); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(452); - END_STATE(); - case 452: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(457); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(463); - END_STATE(); - case 453: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(457); - if (lookahead == '/') ADVANCE(425); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(462); - END_STATE(); - case 454: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(459); - END_STATE(); - case 455: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(419); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); - END_STATE(); - case 456: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(446); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); - END_STATE(); - case 457: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(435); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); - END_STATE(); - case 458: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(434); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(459); - END_STATE(); - case 459: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(468); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(459); - END_STATE(); - case 460: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(458); - if (lookahead == '/') ADVANCE(436); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(456); - END_STATE(); - case 461: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(463); - END_STATE(); - case 462: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(462); - END_STATE(); - case 463: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(460); - if (lookahead == '/') ADVANCE(425); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(462); - END_STATE(); - case 464: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(424); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(466); - END_STATE(); - case 465: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(437); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); - END_STATE(); - case 466: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '*') ADVANCE(432); - if (lookahead == '/') ADVANCE(425); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(465); - END_STATE(); - case 467: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(471); - END_STATE(); - case 468: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(427); - END_STATE(); - case 469: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '/') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(440); - END_STATE(); - case 470: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(471); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(470); - END_STATE(); - case 471: - ACCEPT_TOKEN(aux_sym_c_string_literal_token1); - if (lookahead != 0 && - lookahead != '$' && - lookahead != '\'' && - lookahead != '\\') ADVANCE(471); - END_STATE(); - case 472: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(472); - END_STATE(); - case 473: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '!') ADVANCE(472); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(542); - END_STATE(); - case 474: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '#') ADVANCE(473); - if (lookahead == '/') ADVANCE(485); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(474); - if (lookahead != 0 && - (lookahead < '"' || '$' < lookahead) && - lookahead != '\\') ADVANCE(542); - END_STATE(); - case 475: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(490); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(475); - END_STATE(); - case 476: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(512); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(509); - END_STATE(); - case 477: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(475); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(475); - END_STATE(); - case 478: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead == '/') ADVANCE(513); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(488); - END_STATE(); - case 479: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(540); - END_STATE(); - case 480: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(487); - END_STATE(); - case 481: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(475); - END_STATE(); - case 482: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(538); - if (lookahead == '/') ADVANCE(491); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(482); - END_STATE(); - case 483: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(538); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(483); - END_STATE(); - case 484: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(538); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(482); - END_STATE(); - case 485: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(486); - if (lookahead == '/') ADVANCE(541); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(542); - END_STATE(); - case 486: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(477); - if (lookahead == '/') ADVANCE(483); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(484); - END_STATE(); - case 487: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(481); - if (lookahead == '/') ADVANCE(495); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(497); - END_STATE(); - case 488: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(481); - if (lookahead == '/') ADVANCE(508); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(496); - END_STATE(); - case 489: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(481); - if (lookahead == '/') ADVANCE(523); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(524); - END_STATE(); - case 490: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(492); - if (lookahead == '/') ADVANCE(490); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(475); - END_STATE(); - case 491: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(492); - if (lookahead == '/') ADVANCE(491); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(482); - END_STATE(); - case 492: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(493); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(480); - END_STATE(); - case 493: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(493); - if (lookahead == '/') ADVANCE(487); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(487); - END_STATE(); - case 494: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(493); - if (lookahead == '/') ADVANCE(475); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(478); - END_STATE(); - case 495: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '/') ADVANCE(495); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(537); - END_STATE(); - case 496: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '/') ADVANCE(508); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(536); - END_STATE(); - case 497: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(502); - if (lookahead == '/') ADVANCE(496); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(536); - END_STATE(); - case 498: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(498); - END_STATE(); - case 499: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(490); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(499); - END_STATE(); - case 500: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(479); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(498); - END_STATE(); - case 501: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(487); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(535); - END_STATE(); - case 502: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(475); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(499); - END_STATE(); - case 503: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(476); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(499); - END_STATE(); - case 504: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(500); - if (lookahead == '/') ADVANCE(513); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(536); - END_STATE(); - case 505: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(540); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(525); - END_STATE(); - case 506: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(490); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(499); - END_STATE(); - case 507: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(498); - if (lookahead == '/') ADVANCE(512); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(526); - END_STATE(); - case 508: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(519); - if (lookahead == '/') ADVANCE(508); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(536); - END_STATE(); - case 509: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '/') ADVANCE(490); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(510); - END_STATE(); - case 510: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '/') ADVANCE(517); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(514); - END_STATE(); - case 511: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(511); - if (lookahead == '/') ADVANCE(539); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(515); - END_STATE(); - case 512: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(521); - if (lookahead == '/') ADVANCE(490); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(510); - END_STATE(); - case 513: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(494); - if (lookahead == '/') ADVANCE(508); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(496); - END_STATE(); - case 514: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(530); - if (lookahead == '/') ADVANCE(517); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(527); - END_STATE(); - case 515: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(530); - if (lookahead == '/') ADVANCE(539); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(530); - END_STATE(); - case 516: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(530); - if (lookahead == '/') ADVANCE(495); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(532); - END_STATE(); - case 517: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(518); - if (lookahead == '/') ADVANCE(490); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(499); - END_STATE(); - case 518: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(501); - END_STATE(); - case 519: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '/') ADVANCE(475); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(504); - END_STATE(); - case 520: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(520); - if (lookahead == '/') ADVANCE(489); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(535); - END_STATE(); - case 521: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(522); - if (lookahead == '/') ADVANCE(539); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(516); - END_STATE(); - case 522: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(522); - if (lookahead == '/') ADVANCE(495); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(523); - END_STATE(); - case 523: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '/') ADVANCE(495); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(534); - END_STATE(); - case 524: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(528); - if (lookahead == '/') ADVANCE(496); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(533); - END_STATE(); - case 525: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(530); - END_STATE(); - case 526: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(490); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(527); - END_STATE(); - case 527: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(517); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(527); - END_STATE(); - case 528: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(506); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(527); - END_STATE(); - case 529: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(505); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(530); - END_STATE(); - case 530: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(539); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(530); - END_STATE(); - case 531: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(529); - if (lookahead == '/') ADVANCE(507); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(527); - END_STATE(); - case 532: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(531); - if (lookahead == '/') ADVANCE(495); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(534); - END_STATE(); - case 533: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(531); - if (lookahead == '/') ADVANCE(508); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(533); - END_STATE(); - case 534: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(531); - if (lookahead == '/') ADVANCE(496); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(533); - END_STATE(); - case 535: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '/') ADVANCE(495); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(537); - END_STATE(); - case 536: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '/') ADVANCE(508); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(536); - END_STATE(); - case 537: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '*') ADVANCE(503); - if (lookahead == '/') ADVANCE(496); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(536); - END_STATE(); - case 538: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(542); - END_STATE(); - case 539: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(498); - END_STATE(); - case 540: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '/') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(511); - END_STATE(); - case 541: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(542); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(541); - END_STATE(); - case 542: - ACCEPT_TOKEN(aux_sym_c_string_literal_token2); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(542); - END_STATE(); - case 543: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(543); - END_STATE(); - case 544: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '!') ADVANCE(543); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); - END_STATE(); - case 545: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '#') ADVANCE(544); - if (lookahead == '/') ADVANCE(556); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(545); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); - END_STATE(); - case 546: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(561); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(546); - END_STATE(); - case 547: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(583); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(580); - END_STATE(); - case 548: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(546); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(546); - END_STATE(); - case 549: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead == '/') ADVANCE(584); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(559); - END_STATE(); - case 550: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(611); - END_STATE(); - case 551: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(558); - END_STATE(); - case 552: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(546); - END_STATE(); - case 553: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(609); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(553); - END_STATE(); - case 554: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(609); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(554); - END_STATE(); - case 555: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(609); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(553); - END_STATE(); - case 556: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(557); - if (lookahead == '/') ADVANCE(612); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); - END_STATE(); - case 557: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(548); - if (lookahead == '/') ADVANCE(554); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(555); - END_STATE(); - case 558: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(566); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(568); - END_STATE(); - case 559: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(579); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(567); - END_STATE(); - case 560: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(552); - if (lookahead == '/') ADVANCE(594); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(595); - END_STATE(); - case 561: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(563); - if (lookahead == '/') ADVANCE(561); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(546); - END_STATE(); - case 562: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(563); - if (lookahead == '/') ADVANCE(562); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(553); - END_STATE(); - case 563: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(564); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(551); - END_STATE(); - case 564: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(564); - if (lookahead == '/') ADVANCE(558); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(558); - END_STATE(); - case 565: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(564); - if (lookahead == '/') ADVANCE(546); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(549); - END_STATE(); - case 566: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(573); - if (lookahead == '/') ADVANCE(566); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(608); - END_STATE(); - case 567: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(573); - if (lookahead == '/') ADVANCE(579); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(607); - END_STATE(); - case 568: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(573); - if (lookahead == '/') ADVANCE(567); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(607); - END_STATE(); - case 569: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(569); - END_STATE(); - case 570: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(561); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(570); - END_STATE(); - case 571: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(550); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(569); - END_STATE(); - case 572: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(558); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(606); - END_STATE(); - case 573: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(546); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(570); - END_STATE(); - case 574: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(547); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(570); - END_STATE(); - case 575: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(571); - if (lookahead == '/') ADVANCE(584); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(607); - END_STATE(); - case 576: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(611); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(596); - END_STATE(); - case 577: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(561); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(570); - END_STATE(); - case 578: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(569); - if (lookahead == '/') ADVANCE(583); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(597); - END_STATE(); - case 579: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(590); - if (lookahead == '/') ADVANCE(579); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(607); - END_STATE(); - case 580: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(582); - if (lookahead == '/') ADVANCE(561); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(581); - END_STATE(); - case 581: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(582); - if (lookahead == '/') ADVANCE(588); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(585); - END_STATE(); - case 582: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(582); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(586); - END_STATE(); - case 583: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(592); - if (lookahead == '/') ADVANCE(561); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(581); - END_STATE(); - case 584: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(565); - if (lookahead == '/') ADVANCE(579); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(567); - END_STATE(); - case 585: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(601); - if (lookahead == '/') ADVANCE(588); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(598); - END_STATE(); - case 586: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(601); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(601); - END_STATE(); - case 587: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(601); - if (lookahead == '/') ADVANCE(566); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(603); - END_STATE(); - case 588: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(589); - if (lookahead == '/') ADVANCE(561); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(570); - END_STATE(); - case 589: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(591); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(572); - END_STATE(); - case 590: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(591); - if (lookahead == '/') ADVANCE(546); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(575); - END_STATE(); - case 591: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(591); - if (lookahead == '/') ADVANCE(560); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(606); - END_STATE(); - case 592: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(593); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(587); - END_STATE(); - case 593: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(593); - if (lookahead == '/') ADVANCE(566); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(594); - END_STATE(); - case 594: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(599); - if (lookahead == '/') ADVANCE(566); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(605); - END_STATE(); - case 595: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(599); - if (lookahead == '/') ADVANCE(567); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(604); - END_STATE(); - case 596: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(601); - END_STATE(); - case 597: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(561); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(598); - END_STATE(); - case 598: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(588); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(598); - END_STATE(); - case 599: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(577); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(598); - END_STATE(); - case 600: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(576); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(601); - END_STATE(); - case 601: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(610); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(601); - END_STATE(); - case 602: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(600); - if (lookahead == '/') ADVANCE(578); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(598); - END_STATE(); - case 603: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '/') ADVANCE(566); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(605); - END_STATE(); - case 604: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '/') ADVANCE(579); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(604); - END_STATE(); - case 605: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(602); - if (lookahead == '/') ADVANCE(567); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(604); - END_STATE(); - case 606: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(574); - if (lookahead == '/') ADVANCE(566); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(608); - END_STATE(); - case 607: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(574); - if (lookahead == '/') ADVANCE(579); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(607); - END_STATE(); - case 608: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '*') ADVANCE(574); - if (lookahead == '/') ADVANCE(567); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(607); - END_STATE(); - case 609: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); - END_STATE(); - case 610: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(569); - END_STATE(); - case 611: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '/') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(582); - END_STATE(); - case 612: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(613); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(612); - END_STATE(); - case 613: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token1); - if (lookahead != 0 && - lookahead != '\'' && - lookahead != '\\') ADVANCE(613); - END_STATE(); - case 614: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(614); - END_STATE(); - case 615: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '!') ADVANCE(614); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 616: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '#') ADVANCE(615); - if (lookahead == '/') ADVANCE(627); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(616); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 617: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(617); - END_STATE(); - case 618: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead == '/') ADVANCE(654); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(651); - END_STATE(); - case 619: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead == '/') ADVANCE(617); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(617); - END_STATE(); - case 620: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead == '/') ADVANCE(655); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(630); - END_STATE(); - case 621: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(682); - END_STATE(); - case 622: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(629); - END_STATE(); - case 623: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(617); - END_STATE(); - case 624: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(680); - if (lookahead == '/') ADVANCE(633); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(624); - END_STATE(); - case 625: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(680); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(625); - END_STATE(); - case 626: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(680); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(624); - END_STATE(); - case 627: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(628); - if (lookahead == '/') ADVANCE(683); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 628: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(619); - if (lookahead == '/') ADVANCE(625); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(626); - END_STATE(); - case 629: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(623); - if (lookahead == '/') ADVANCE(637); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(639); - END_STATE(); - case 630: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(623); - if (lookahead == '/') ADVANCE(650); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(638); - END_STATE(); - case 631: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(623); - if (lookahead == '/') ADVANCE(665); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(666); - END_STATE(); - case 632: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(634); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(617); - END_STATE(); - case 633: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(634); - if (lookahead == '/') ADVANCE(633); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(624); - END_STATE(); - case 634: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(635); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(622); - END_STATE(); - case 635: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(635); - if (lookahead == '/') ADVANCE(629); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(629); - END_STATE(); - case 636: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(635); - if (lookahead == '/') ADVANCE(617); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(620); - END_STATE(); - case 637: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(644); - if (lookahead == '/') ADVANCE(637); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(679); - END_STATE(); - case 638: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(644); - if (lookahead == '/') ADVANCE(650); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(678); - END_STATE(); - case 639: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(644); - if (lookahead == '/') ADVANCE(638); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(678); - END_STATE(); - case 640: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(640); - END_STATE(); - case 641: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(641); - END_STATE(); - case 642: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(621); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(640); - END_STATE(); - case 643: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(629); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(677); - END_STATE(); - case 644: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(617); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(641); - END_STATE(); - case 645: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(618); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(641); - END_STATE(); - case 646: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(642); - if (lookahead == '/') ADVANCE(655); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(678); - END_STATE(); - case 647: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '/') ADVANCE(682); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(667); - END_STATE(); - case 648: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(641); - END_STATE(); - case 649: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(640); - if (lookahead == '/') ADVANCE(654); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(668); - END_STATE(); - case 650: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(661); - if (lookahead == '/') ADVANCE(650); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(678); - END_STATE(); - case 651: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(652); - END_STATE(); - case 652: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(659); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(656); - END_STATE(); - case 653: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(653); - if (lookahead == '/') ADVANCE(681); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(657); - END_STATE(); - case 654: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(663); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(652); - END_STATE(); - case 655: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(636); - if (lookahead == '/') ADVANCE(650); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(638); - END_STATE(); - case 656: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(672); - if (lookahead == '/') ADVANCE(659); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(669); - END_STATE(); - case 657: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(672); - if (lookahead == '/') ADVANCE(681); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(672); - END_STATE(); - case 658: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(672); - if (lookahead == '/') ADVANCE(637); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(674); - END_STATE(); - case 659: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(660); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(641); - END_STATE(); - case 660: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(643); - END_STATE(); - case 661: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(617); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(646); - END_STATE(); - case 662: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(662); - if (lookahead == '/') ADVANCE(631); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(677); - END_STATE(); - case 663: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(664); - if (lookahead == '/') ADVANCE(681); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(658); - END_STATE(); - case 664: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(664); - if (lookahead == '/') ADVANCE(637); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(665); - END_STATE(); - case 665: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(670); - if (lookahead == '/') ADVANCE(637); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(676); - END_STATE(); - case 666: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(670); - if (lookahead == '/') ADVANCE(638); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(675); - END_STATE(); - case 667: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(672); - END_STATE(); - case 668: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(632); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(669); - END_STATE(); - case 669: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(659); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(669); - END_STATE(); - case 670: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(648); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(669); - END_STATE(); - case 671: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(647); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(672); - END_STATE(); - case 672: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(681); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(672); - END_STATE(); - case 673: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(671); - if (lookahead == '/') ADVANCE(649); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(669); - END_STATE(); - case 674: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(673); - if (lookahead == '/') ADVANCE(637); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(676); - END_STATE(); - case 675: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(673); - if (lookahead == '/') ADVANCE(650); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(675); - END_STATE(); - case 676: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(673); - if (lookahead == '/') ADVANCE(638); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(675); - END_STATE(); - case 677: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '/') ADVANCE(637); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(679); - END_STATE(); - case 678: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '/') ADVANCE(650); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(678); - END_STATE(); - case 679: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '*') ADVANCE(645); - if (lookahead == '/') ADVANCE(638); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(678); - END_STATE(); - case 680: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 681: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(640); - END_STATE(); - case 682: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '/') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(653); - END_STATE(); - case 683: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(684); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(683); - END_STATE(); - case 684: - ACCEPT_TOKEN(aux_sym_raw_string_literal_token2); - if (lookahead != 0 && - lookahead != '"' && - lookahead != '\\') ADVANCE(684); - END_STATE(); - case 685: - ACCEPT_TOKEN(aux_sym_format_specifier_token2); - END_STATE(); - case 686: - ACCEPT_TOKEN(anon_sym_0); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(184); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(183); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(185); - if (lookahead == '_') ADVANCE(210); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(393); - END_STATE(); - case 687: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (lookahead == '[') ADVANCE(859); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 688: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == '$') ADVANCE(181); - if (lookahead == 'C') ADVANCE(691); - if (lookahead == 'J') ADVANCE(694); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 689: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(863); - if (lookahead == '\'') ADVANCE(864); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 690: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '"') ADVANCE(865); - if (lookahead == '\'') ADVANCE(866); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 691: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(182); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 692: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(238); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 693: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '.') ADVANCE(189); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 694: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'S') ADVANCE(692); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 695: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '[') ADVANCE(711); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 696: - ACCEPT_TOKEN(sym_identifier); - if (sym_identifier_character_set_5(lookahead)) ADVANCE(710); - if (lookahead == 'n') ADVANCE(374); - if (lookahead == 's') ADVANCE(371); - END_STATE(); - case 697: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'd') || - ('f' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'e') ADVANCE(369); - END_STATE(); - case 698: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'e') || - ('g' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'f') ADVANCE(367); - END_STATE(); - case 699: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'k') || - ('m' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'l') ADVANCE(707); - END_STATE(); - case 700: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'm') || - ('o' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'n') ADVANCE(693); - END_STATE(); - case 701: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'o') ADVANCE(700); - END_STATE(); - case 702: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'n') || - ('p' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'o') ADVANCE(705); - END_STATE(); - case 703: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'o') || - ('q' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'p') ADVANCE(695); - END_STATE(); - case 704: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'r') ADVANCE(358); - END_STATE(); - case 705: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'q') || - ('s' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'r') ADVANCE(712); - END_STATE(); - case 706: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 's') ADVANCE(283); - END_STATE(); - case 707: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 's') ADVANCE(697); - END_STATE(); - case 708: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'r') || - ('t' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 's') ADVANCE(701); - END_STATE(); - case 709: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - if (lookahead == 'a') ADVANCE(703); - END_STATE(); - case 710: - ACCEPT_TOKEN(sym_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 711: - ACCEPT_TOKEN(anon_sym_map_LBRACK); - END_STATE(); - case 712: - ACCEPT_TOKEN(anon_sym_DOLLARfor); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z') || - lookahead == 181 || - (913 <= lookahead && lookahead <= 937) || - (945 <= lookahead && lookahead <= 969)) ADVANCE(710); - END_STATE(); - case 713: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - END_STATE(); - case 714: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(321); - END_STATE(); - case 715: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(272); - END_STATE(); - case 716: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(272); - if (lookahead == '[') ADVANCE(365); - END_STATE(); - case 717: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '!') ADVANCE(786); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 718: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '#') ADVANCE(717); - if (lookahead == '/') ADVANCE(726); - if (lookahead == '\t' || - lookahead == 11 || - lookahead == '\f' || - lookahead == ' ') ADVANCE(718); - if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 719: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(719); - END_STATE(); - case 720: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(762); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(131); - if (lookahead != 0) ADVANCE(760); - END_STATE(); - case 721: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(719); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(719); - END_STATE(); - case 722: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '/') ADVANCE(765); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(108); - if (lookahead != 0) ADVANCE(733); - END_STATE(); - case 723: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(243); - if (lookahead != 0) ADVANCE(783); - END_STATE(); - case 724: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(719); - END_STATE(); - case 725: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(107); - if (lookahead != 0) ADVANCE(731); - END_STATE(); - case 726: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(730); - if (lookahead == '/') ADVANCE(785); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 727: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(784); - if (lookahead == '/') ADVANCE(735); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(103); - if (lookahead != 0) ADVANCE(727); - END_STATE(); - case 728: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(784); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(104); - if (lookahead != 0) ADVANCE(728); - END_STATE(); - case 729: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(784); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(103); - if (lookahead != 0) ADVANCE(727); - END_STATE(); - case 730: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(721); - if (lookahead == '/') ADVANCE(728); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(105); - if (lookahead != 0) ADVANCE(729); - END_STATE(); - case 731: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(724); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(117); - if (lookahead != 0) ADVANCE(741); - END_STATE(); - case 732: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(724); - if (lookahead == '/') ADVANCE(767); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(145); - if (lookahead != 0) ADVANCE(768); - END_STATE(); - case 733: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(724); - if (lookahead == '/') ADVANCE(755); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(740); - END_STATE(); - case 734: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(736); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(163); - if (lookahead != 0) ADVANCE(719); - END_STATE(); - case 735: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(736); - if (lookahead == '/') ADVANCE(735); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(103); - if (lookahead != 0) ADVANCE(727); - END_STATE(); - case 736: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(242); - if (lookahead != 0) ADVANCE(725); - END_STATE(); - case 737: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(731); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(107); - if (lookahead != 0) ADVANCE(731); - END_STATE(); - case 738: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(737); - if (lookahead == '/') ADVANCE(719); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(165); - if (lookahead != 0) ADVANCE(722); - END_STATE(); - case 739: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(747); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(127); - if (lookahead != 0) ADVANCE(751); - END_STATE(); - case 740: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(747); - if (lookahead == '/') ADVANCE(755); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); - END_STATE(); - case 741: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(747); - if (lookahead == '/') ADVANCE(740); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); - END_STATE(); - case 742: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(124); - if (lookahead != 0) ADVANCE(742); - END_STATE(); - case 743: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); - END_STATE(); - case 744: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(723); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(124); - if (lookahead != 0) ADVANCE(742); - END_STATE(); - case 745: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(731); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(125); - if (lookahead != 0) ADVANCE(749); - END_STATE(); - case 746: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(720); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); - END_STATE(); - case 747: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(719); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); - END_STATE(); - case 748: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(744); - if (lookahead == '/') ADVANCE(765); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); - END_STATE(); - case 749: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(127); - if (lookahead != 0) ADVANCE(751); - END_STATE(); - case 750: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(755); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); - END_STATE(); - case 751: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(746); - if (lookahead == '/') ADVANCE(740); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); - END_STATE(); - case 752: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(783); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(141); - if (lookahead != 0) ADVANCE(769); - END_STATE(); - case 753: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); - END_STATE(); - case 754: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(742); - if (lookahead == '/') ADVANCE(762); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(137); - if (lookahead != 0) ADVANCE(771); - END_STATE(); - case 755: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(757); - if (lookahead == '/') ADVANCE(755); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(126); - if (lookahead != 0) ADVANCE(750); - END_STATE(); - case 756: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(758); - if (lookahead == '/') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(122); - if (lookahead != 0) ADVANCE(745); - END_STATE(); - case 757: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(758); - if (lookahead == '/') ADVANCE(719); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(123); - if (lookahead != 0) ADVANCE(748); - END_STATE(); - case 758: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(758); - if (lookahead == '/') ADVANCE(732); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(125); - if (lookahead != 0) ADVANCE(749); - END_STATE(); - case 759: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(759); - if (lookahead == '/') ADVANCE(782); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(146); - if (lookahead != 0) ADVANCE(779); - END_STATE(); - case 760: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(759); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(130); - if (lookahead != 0) ADVANCE(761); - END_STATE(); - case 761: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(759); - if (lookahead == '/') ADVANCE(766); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(147); - if (lookahead != 0) ADVANCE(781); - END_STATE(); - case 762: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(763); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(130); - if (lookahead != 0) ADVANCE(761); - END_STATE(); - case 763: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(764); - if (lookahead == '/') ADVANCE(782); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(148); - if (lookahead != 0) ADVANCE(780); - END_STATE(); - case 764: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(764); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(143); - if (lookahead != 0) ADVANCE(767); - END_STATE(); - case 765: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(738); - if (lookahead == '/') ADVANCE(755); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(116); - if (lookahead != 0) ADVANCE(740); - END_STATE(); - case 766: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(756); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(119); - if (lookahead != 0) ADVANCE(743); - END_STATE(); - case 767: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(773); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(151); - if (lookahead != 0) ADVANCE(778); - END_STATE(); - case 768: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(773); - if (lookahead == '/') ADVANCE(740); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(777); - END_STATE(); - case 769: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(135); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 770: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(782); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(135); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 771: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(734); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); - END_STATE(); - case 772: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(766); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); - END_STATE(); - case 773: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(753); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); - END_STATE(); - case 774: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(752); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(135); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 775: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(774); - if (lookahead == '/') ADVANCE(754); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); - END_STATE(); - case 776: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(775); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(151); - if (lookahead != 0) ADVANCE(778); - END_STATE(); - case 777: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(775); - if (lookahead == '/') ADVANCE(755); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(777); - END_STATE(); - case 778: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(775); - if (lookahead == '/') ADVANCE(740); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(150); - if (lookahead != 0) ADVANCE(777); - END_STATE(); - case 779: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(770); - if (lookahead == '/') ADVANCE(782); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(135); - if (lookahead != 0) ADVANCE(770); - END_STATE(); - case 780: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(770); - if (lookahead == '/') ADVANCE(739); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(149); - if (lookahead != 0) ADVANCE(776); - END_STATE(); - case 781: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '*') ADVANCE(770); - if (lookahead == '/') ADVANCE(766); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(136); - if (lookahead != 0) ADVANCE(772); - END_STATE(); - case 782: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(124); - if (lookahead != 0) ADVANCE(742); - END_STATE(); - case 783: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(787); - if (lookahead == '\n' || - lookahead == '\r' || - lookahead == '\\') ADVANCE(129); - if (lookahead != 0) ADVANCE(759); - END_STATE(); - case 784: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '/') ADVANCE(787); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 785: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\\') ADVANCE(271); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r') ADVANCE(785); - END_STATE(); - case 786: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead == '\r' || - lookahead == '\\') ADVANCE(272); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(786); - END_STATE(); - case 787: - ACCEPT_TOKEN(aux_sym_hash_statement_token1); - if (lookahead != 0 && - lookahead != '\n' && - lookahead != '\r' && - lookahead != '\\') ADVANCE(787); - END_STATE(); - case 788: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(788); - END_STATE(); - case 789: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '!') ADVANCE(788); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); - END_STATE(); - case 790: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '#') ADVANCE(789); - if (lookahead == '/') ADVANCE(801); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(790); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); - END_STATE(); - case 791: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(791); - END_STATE(); - case 792: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead == '/') ADVANCE(828); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(825); - END_STATE(); - case 793: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead == '/') ADVANCE(791); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(791); - END_STATE(); - case 794: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead == '/') ADVANCE(829); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(804); - END_STATE(); - case 795: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(856); - END_STATE(); - case 796: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(803); - END_STATE(); - case 797: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(791); - END_STATE(); - case 798: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead == '/') ADVANCE(807); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(798); - END_STATE(); - case 799: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(799); - END_STATE(); - case 800: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(854); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(798); - END_STATE(); - case 801: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(802); - if (lookahead == '/') ADVANCE(857); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); - END_STATE(); - case 802: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(793); - if (lookahead == '/') ADVANCE(799); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(800); - END_STATE(); - case 803: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(797); - if (lookahead == '/') ADVANCE(811); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(813); - END_STATE(); - case 804: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(797); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(812); - END_STATE(); - case 805: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(797); - if (lookahead == '/') ADVANCE(839); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(840); - END_STATE(); - case 806: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(791); - END_STATE(); - case 807: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(808); - if (lookahead == '/') ADVANCE(807); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(798); - END_STATE(); - case 808: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(796); - END_STATE(); - case 809: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(803); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(803); - END_STATE(); - case 810: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(809); - if (lookahead == '/') ADVANCE(791); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(794); - END_STATE(); - case 811: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(811); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(853); - END_STATE(); - case 812: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 813: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(818); - if (lookahead == '/') ADVANCE(812); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 814: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(814); - END_STATE(); - case 815: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(815); - END_STATE(); - case 816: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(795); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(814); - END_STATE(); - case 817: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(803); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(851); - END_STATE(); - case 818: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(791); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(815); - END_STATE(); - case 819: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(792); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(815); - END_STATE(); - case 820: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(816); - if (lookahead == '/') ADVANCE(829); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 821: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(856); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(841); - END_STATE(); - case 822: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(815); - END_STATE(); - case 823: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(814); - if (lookahead == '/') ADVANCE(828); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(842); - END_STATE(); - case 824: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(835); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 825: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(827); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(826); - END_STATE(); - case 826: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(827); - if (lookahead == '/') ADVANCE(833); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(830); - END_STATE(); - case 827: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(827); - if (lookahead == '/') ADVANCE(855); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(831); - END_STATE(); - case 828: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(837); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(826); - END_STATE(); - case 829: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(810); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(812); - END_STATE(); - case 830: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(846); - if (lookahead == '/') ADVANCE(833); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(843); - END_STATE(); - case 831: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(846); - if (lookahead == '/') ADVANCE(855); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(846); - END_STATE(); - case 832: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(846); - if (lookahead == '/') ADVANCE(811); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(848); - END_STATE(); - case 833: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(834); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(815); - END_STATE(); - case 834: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(836); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(817); - END_STATE(); - case 835: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(836); - if (lookahead == '/') ADVANCE(791); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(820); - END_STATE(); - case 836: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(836); - if (lookahead == '/') ADVANCE(805); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(851); - END_STATE(); - case 837: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(838); - if (lookahead == '/') ADVANCE(855); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(832); - END_STATE(); - case 838: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(838); - if (lookahead == '/') ADVANCE(811); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(839); - END_STATE(); - case 839: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(844); - if (lookahead == '/') ADVANCE(811); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(850); - END_STATE(); - case 840: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(844); - if (lookahead == '/') ADVANCE(812); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(849); - END_STATE(); - case 841: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(846); - END_STATE(); - case 842: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(806); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(843); - END_STATE(); - case 843: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(833); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(843); - END_STATE(); - case 844: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(822); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(843); - END_STATE(); - case 845: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(821); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(846); - END_STATE(); - case 846: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(855); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(846); - END_STATE(); - case 847: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(845); - if (lookahead == '/') ADVANCE(823); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(843); - END_STATE(); - case 848: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(847); - if (lookahead == '/') ADVANCE(811); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(850); - END_STATE(); - case 849: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(847); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(849); - END_STATE(); - case 850: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(847); - if (lookahead == '/') ADVANCE(812); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(849); - END_STATE(); - case 851: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(819); - if (lookahead == '/') ADVANCE(811); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(853); - END_STATE(); - case 852: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(819); - if (lookahead == '/') ADVANCE(824); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 853: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '*') ADVANCE(819); - if (lookahead == '/') ADVANCE(812); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(852); - END_STATE(); - case 854: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); - END_STATE(); - case 855: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(814); - END_STATE(); - case 856: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '/') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(827); - END_STATE(); - case 857: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead == '\n' || - lookahead == '\r') ADVANCE(858); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(857); - END_STATE(); - case 858: - ACCEPT_TOKEN(aux_sym__content_block_token1); - if (lookahead != 0 && - lookahead != '{' && - lookahead != '}') ADVANCE(858); - END_STATE(); - case 859: - ACCEPT_TOKEN(anon_sym_AT_LBRACK); - END_STATE(); - case 860: - ACCEPT_TOKEN(sym___dolcbr); - END_STATE(); - case 861: - ACCEPT_TOKEN(sym___double_quote); - END_STATE(); - case 862: - ACCEPT_TOKEN(sym___single_quote); - END_STATE(); - case 863: - ACCEPT_TOKEN(sym___c_double_quote); - END_STATE(); - case 864: - ACCEPT_TOKEN(sym___c_single_quote); - END_STATE(); - case 865: - ACCEPT_TOKEN(sym___r_double_quote); - END_STATE(); - case 866: - ACCEPT_TOKEN(sym___r_single_quote); - END_STATE(); - default: - return false; - } -} - -static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { - START_LEXER(); - eof = lexer->eof(lexer); - switch (state) { - case 0: - if (lookahead == '_') ADVANCE(1); - if (lookahead == 'a') ADVANCE(2); - if (lookahead == 'b') ADVANCE(3); - if (lookahead == 'c') ADVANCE(4); - if (lookahead == 'd') ADVANCE(5); - if (lookahead == 'e') ADVANCE(6); - if (lookahead == 'f') ADVANCE(7); - if (lookahead == 'g') ADVANCE(8); - if (lookahead == 'i') ADVANCE(9); - if (lookahead == 'l') ADVANCE(10); - if (lookahead == 'm') ADVANCE(11); - if (lookahead == 'n') ADVANCE(12); - if (lookahead == 'p') ADVANCE(13); - if (lookahead == 'r') ADVANCE(14); - if (lookahead == 's') ADVANCE(15); - if (lookahead == 't') ADVANCE(16); - if (lookahead == 'u') ADVANCE(17); - if (lookahead == 'v') ADVANCE(18); - if (lookahead == 'o' || - lookahead == 'x') ADVANCE(19); - if (('E' <= lookahead && lookahead <= 'G') || - lookahead == 'S' || - lookahead == 'X') ADVANCE(20); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(0) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(21); - END_STATE(); - case 1: - if (lookahead == '_') ADVANCE(22); - END_STATE(); - case 2: - if (lookahead == 's') ADVANCE(23); - if (lookahead == 't') ADVANCE(24); - END_STATE(); - case 3: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'r') ADVANCE(25); - END_STATE(); - case 4: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'h') ADVANCE(26); - if (lookahead == 'o') ADVANCE(27); - END_STATE(); - case 5: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'e') ADVANCE(28); - END_STATE(); - case 6: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'l') ADVANCE(29); - if (lookahead == 'n') ADVANCE(30); - END_STATE(); - case 7: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'a') ADVANCE(31); - if (lookahead == 'n') ADVANCE(32); - if (lookahead == 'o') ADVANCE(33); - END_STATE(); - case 8: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'o') ADVANCE(34); - END_STATE(); - case 9: - if (lookahead == 'f') ADVANCE(35); - if (lookahead == 'm') ADVANCE(36); - if (lookahead == 'n') ADVANCE(37); - END_STATE(); - case 10: - if (lookahead == 'o') ADVANCE(38); - END_STATE(); - case 11: - if (lookahead == 'a') ADVANCE(39); - if (lookahead == 'o') ADVANCE(40); - if (lookahead == 'u') ADVANCE(41); - END_STATE(); - case 12: - if (lookahead == 'i') ADVANCE(42); - if (lookahead == 'o') ADVANCE(43); - END_STATE(); - case 13: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'u') ADVANCE(44); - END_STATE(); - case 14: - if (lookahead == 'e') ADVANCE(45); - if (lookahead == 'l') ADVANCE(46); - END_STATE(); - case 15: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (lookahead == 'e') ADVANCE(47); - if (lookahead == 'h') ADVANCE(48); - if (lookahead == 'p') ADVANCE(49); - if (lookahead == 'q') ADVANCE(50); - if (lookahead == 't') ADVANCE(51); - END_STATE(); - case 16: - if (lookahead == 'h') ADVANCE(52); - if (lookahead == 'r') ADVANCE(53); - if (lookahead == 'y') ADVANCE(54); - END_STATE(); - case 17: - if (lookahead == 'n') ADVANCE(55); - END_STATE(); - case 18: - if (lookahead == 'o') ADVANCE(56); - END_STATE(); - case 19: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - END_STATE(); - case 20: - ACCEPT_TOKEN(aux_sym_format_specifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(57); - END_STATE(); - case 21: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(57); - END_STATE(); - case 22: - if (lookahead == 'g') ADVANCE(58); - END_STATE(); - case 23: - if (lookahead == 'm') ADVANCE(59); - if (lookahead == 's') ADVANCE(60); - END_STATE(); - case 24: - if (lookahead == 'o') ADVANCE(61); - END_STATE(); - case 25: - if (lookahead == 'e') ADVANCE(62); - END_STATE(); - case 26: - if (lookahead == 'a') ADVANCE(63); - END_STATE(); - case 27: - if (lookahead == 'n') ADVANCE(64); - END_STATE(); - case 28: - if (lookahead == 'f') ADVANCE(65); - END_STATE(); - case 29: - if (lookahead == 's') ADVANCE(66); - END_STATE(); - case 30: - if (lookahead == 'u') ADVANCE(67); - END_STATE(); - case 31: - if (lookahead == 'l') ADVANCE(68); - END_STATE(); - case 32: - ACCEPT_TOKEN(anon_sym_fn); - END_STATE(); - case 33: - if (lookahead == 'r') ADVANCE(69); - END_STATE(); - case 34: - ACCEPT_TOKEN(anon_sym_go); - if (lookahead == 't') ADVANCE(70); - END_STATE(); - case 35: - ACCEPT_TOKEN(anon_sym_if); - END_STATE(); - case 36: - if (lookahead == 'p') ADVANCE(71); - END_STATE(); - case 37: - if (lookahead == 't') ADVANCE(72); - END_STATE(); - case 38: - if (lookahead == 'c') ADVANCE(73); - END_STATE(); - case 39: - if (lookahead == 't') ADVANCE(74); - END_STATE(); - case 40: - if (lookahead == 'd') ADVANCE(75); - END_STATE(); - case 41: - if (lookahead == 't') ADVANCE(76); - END_STATE(); - case 42: - if (lookahead == 'l') ADVANCE(77); - END_STATE(); - case 43: - if (lookahead == 'n') ADVANCE(78); - END_STATE(); - case 44: - if (lookahead == 'b') ADVANCE(79); - END_STATE(); - case 45: - if (lookahead == 't') ADVANCE(80); - END_STATE(); - case 46: - if (lookahead == 'o') ADVANCE(81); - END_STATE(); - case 47: - if (lookahead == 'l') ADVANCE(82); - END_STATE(); - case 48: - if (lookahead == 'a') ADVANCE(83); - END_STATE(); - case 49: - if (lookahead == 'a') ADVANCE(84); - END_STATE(); - case 50: - if (lookahead == 'l') ADVANCE(85); - END_STATE(); - case 51: - if (lookahead == 'a') ADVANCE(86); - if (lookahead == 'r') ADVANCE(87); - END_STATE(); - case 52: - if (lookahead == 'r') ADVANCE(88); - END_STATE(); - case 53: - if (lookahead == 'u') ADVANCE(89); - END_STATE(); - case 54: - if (lookahead == 'p') ADVANCE(90); - END_STATE(); - case 55: - if (lookahead == 'i') ADVANCE(91); - if (lookahead == 's') ADVANCE(92); - END_STATE(); - case 56: - if (lookahead == 'l') ADVANCE(93); - END_STATE(); - case 57: - ACCEPT_TOKEN(aux_sym_pseudo_compile_time_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_') ADVANCE(57); - END_STATE(); - case 58: - if (lookahead == 'l') ADVANCE(94); - END_STATE(); - case 59: - ACCEPT_TOKEN(anon_sym_asm); - END_STATE(); - case 60: - if (lookahead == 'e') ADVANCE(95); - END_STATE(); - case 61: - if (lookahead == 'm') ADVANCE(96); - END_STATE(); - case 62: - if (lookahead == 'a') ADVANCE(97); - END_STATE(); - case 63: - if (lookahead == 'n') ADVANCE(98); - END_STATE(); - case 64: - if (lookahead == 's') ADVANCE(99); - if (lookahead == 't') ADVANCE(100); - END_STATE(); - case 65: - if (lookahead == 'e') ADVANCE(101); - END_STATE(); - case 66: - if (lookahead == 'e') ADVANCE(102); - END_STATE(); - case 67: - if (lookahead == 'm') ADVANCE(103); - END_STATE(); - case 68: - if (lookahead == 's') ADVANCE(104); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_for); - END_STATE(); - case 70: - if (lookahead == 'o') ADVANCE(105); - END_STATE(); - case 71: - if (lookahead == 'o') ADVANCE(106); - END_STATE(); - case 72: - if (lookahead == 'e') ADVANCE(107); - END_STATE(); - case 73: - if (lookahead == 'k') ADVANCE(108); - END_STATE(); - case 74: - if (lookahead == 'c') ADVANCE(109); - END_STATE(); - case 75: - if (lookahead == 'u') ADVANCE(110); - END_STATE(); - case 76: - ACCEPT_TOKEN(anon_sym_mut); - END_STATE(); - case 77: - ACCEPT_TOKEN(sym_nil); - END_STATE(); - case 78: - if (lookahead == 'e') ADVANCE(111); - END_STATE(); - case 79: - ACCEPT_TOKEN(anon_sym_pub); - END_STATE(); - case 80: - if (lookahead == 'u') ADVANCE(112); - END_STATE(); - case 81: - if (lookahead == 'c') ADVANCE(113); - END_STATE(); - case 82: - if (lookahead == 'e') ADVANCE(114); - END_STATE(); - case 83: - if (lookahead == 'r') ADVANCE(115); - END_STATE(); - case 84: - if (lookahead == 'w') ADVANCE(116); - END_STATE(); - case 85: - ACCEPT_TOKEN(anon_sym_sql); - END_STATE(); - case 86: - if (lookahead == 't') ADVANCE(117); - END_STATE(); - case 87: - if (lookahead == 'u') ADVANCE(118); - END_STATE(); - case 88: - if (lookahead == 'e') ADVANCE(119); - END_STATE(); - case 89: - if (lookahead == 'e') ADVANCE(120); - END_STATE(); - case 90: - if (lookahead == 'e') ADVANCE(121); - END_STATE(); - case 91: - if (lookahead == 'o') ADVANCE(122); - END_STATE(); - case 92: - if (lookahead == 'a') ADVANCE(123); - END_STATE(); - case 93: - if (lookahead == 'a') ADVANCE(124); - END_STATE(); - case 94: - if (lookahead == 'o') ADVANCE(125); - END_STATE(); - case 95: - if (lookahead == 'r') ADVANCE(126); - END_STATE(); - case 96: - if (lookahead == 'i') ADVANCE(127); - END_STATE(); - case 97: - if (lookahead == 'k') ADVANCE(128); - END_STATE(); - case 98: - ACCEPT_TOKEN(anon_sym_chan); - END_STATE(); - case 99: - if (lookahead == 't') ADVANCE(129); - END_STATE(); - case 100: - if (lookahead == 'i') ADVANCE(130); - END_STATE(); - case 101: - if (lookahead == 'r') ADVANCE(131); - END_STATE(); - case 102: - ACCEPT_TOKEN(anon_sym_else); - END_STATE(); - case 103: - ACCEPT_TOKEN(anon_sym_enum); - END_STATE(); - case 104: - if (lookahead == 'e') ADVANCE(132); - END_STATE(); - case 105: - ACCEPT_TOKEN(anon_sym_goto); - END_STATE(); - case 106: - if (lookahead == 'r') ADVANCE(133); - END_STATE(); - case 107: - if (lookahead == 'r') ADVANCE(134); - END_STATE(); - case 108: - ACCEPT_TOKEN(anon_sym_lock); - END_STATE(); - case 109: - if (lookahead == 'h') ADVANCE(135); - END_STATE(); - case 110: - if (lookahead == 'l') ADVANCE(136); - END_STATE(); - case 111: - ACCEPT_TOKEN(sym_none); - END_STATE(); - case 112: - if (lookahead == 'r') ADVANCE(137); - END_STATE(); - case 113: - if (lookahead == 'k') ADVANCE(138); - END_STATE(); - case 114: - if (lookahead == 'c') ADVANCE(139); - END_STATE(); - case 115: - if (lookahead == 'e') ADVANCE(140); - END_STATE(); - case 116: - if (lookahead == 'n') ADVANCE(141); - END_STATE(); - case 117: - if (lookahead == 'i') ADVANCE(142); - END_STATE(); - case 118: - if (lookahead == 'c') ADVANCE(143); - END_STATE(); - case 119: - if (lookahead == 'a') ADVANCE(144); - END_STATE(); - case 120: - ACCEPT_TOKEN(sym_true); - END_STATE(); - case 121: - ACCEPT_TOKEN(anon_sym_type); - END_STATE(); - case 122: - if (lookahead == 'n') ADVANCE(145); - END_STATE(); - case 123: - if (lookahead == 'f') ADVANCE(146); - END_STATE(); - case 124: - if (lookahead == 't') ADVANCE(147); - END_STATE(); - case 125: - if (lookahead == 'b') ADVANCE(148); - END_STATE(); - case 126: - if (lookahead == 't') ADVANCE(149); - END_STATE(); - case 127: - if (lookahead == 'c') ADVANCE(150); - END_STATE(); - case 128: - ACCEPT_TOKEN(anon_sym_break); - END_STATE(); - case 129: - ACCEPT_TOKEN(anon_sym_const); - END_STATE(); - case 130: - if (lookahead == 'n') ADVANCE(151); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_defer); - END_STATE(); - case 132: - ACCEPT_TOKEN(sym_false); - END_STATE(); - case 133: - if (lookahead == 't') ADVANCE(152); - END_STATE(); - case 134: - if (lookahead == 'f') ADVANCE(153); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_match); - END_STATE(); - case 136: - if (lookahead == 'e') ADVANCE(154); - END_STATE(); - case 137: - if (lookahead == 'n') ADVANCE(155); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_rlock); - END_STATE(); - case 139: - if (lookahead == 't') ADVANCE(156); - END_STATE(); - case 140: - if (lookahead == 'd') ADVANCE(157); - END_STATE(); - case 141: - ACCEPT_TOKEN(anon_sym_spawn); - END_STATE(); - case 142: - if (lookahead == 'c') ADVANCE(158); - END_STATE(); - case 143: - if (lookahead == 't') ADVANCE(159); - END_STATE(); - case 144: - if (lookahead == 'd') ADVANCE(160); - END_STATE(); - case 145: - ACCEPT_TOKEN(anon_sym_union); - END_STATE(); - case 146: - if (lookahead == 'e') ADVANCE(161); - END_STATE(); - case 147: - if (lookahead == 'i') ADVANCE(162); - END_STATE(); - case 148: - if (lookahead == 'a') ADVANCE(163); - END_STATE(); - case 149: - ACCEPT_TOKEN(anon_sym_assert); - END_STATE(); - case 150: - ACCEPT_TOKEN(anon_sym_atomic); - END_STATE(); - case 151: - if (lookahead == 'u') ADVANCE(164); - END_STATE(); - case 152: - ACCEPT_TOKEN(anon_sym_import); - END_STATE(); - case 153: - if (lookahead == 'a') ADVANCE(165); - END_STATE(); - case 154: - ACCEPT_TOKEN(anon_sym_module); - END_STATE(); - case 155: - ACCEPT_TOKEN(anon_sym_return); - END_STATE(); - case 156: - ACCEPT_TOKEN(anon_sym_select); - END_STATE(); - case 157: - ACCEPT_TOKEN(anon_sym_shared); - END_STATE(); - case 158: - ACCEPT_TOKEN(anon_sym_static); - END_STATE(); - case 159: - ACCEPT_TOKEN(anon_sym_struct); - END_STATE(); - case 160: - ACCEPT_TOKEN(anon_sym_thread); - END_STATE(); - case 161: - ACCEPT_TOKEN(anon_sym_unsafe); - END_STATE(); - case 162: - if (lookahead == 'l') ADVANCE(166); - END_STATE(); - case 163: - if (lookahead == 'l') ADVANCE(167); - END_STATE(); - case 164: - if (lookahead == 'e') ADVANCE(168); - END_STATE(); - case 165: - if (lookahead == 'c') ADVANCE(169); - END_STATE(); - case 166: - if (lookahead == 'e') ADVANCE(170); - END_STATE(); - case 167: - ACCEPT_TOKEN(anon_sym___global); - END_STATE(); - case 168: - ACCEPT_TOKEN(anon_sym_continue); - END_STATE(); - case 169: - if (lookahead == 'e') ADVANCE(171); - END_STATE(); - case 170: - ACCEPT_TOKEN(anon_sym_volatile); - END_STATE(); - case 171: - ACCEPT_TOKEN(anon_sym_interface); - END_STATE(); - default: - return false; - } -} - -static const TSLexMode ts_lex_modes[STATE_COUNT] = { - [0] = {.lex_state = 0}, - [1] = {.lex_state = 258}, - [2] = {.lex_state = 258}, - [3] = {.lex_state = 258}, - [4] = {.lex_state = 258}, - [5] = {.lex_state = 258}, - [6] = {.lex_state = 258}, - [7] = {.lex_state = 258}, - [8] = {.lex_state = 258}, - [9] = {.lex_state = 258}, - [10] = {.lex_state = 258}, - [11] = {.lex_state = 258}, - [12] = {.lex_state = 258}, - [13] = {.lex_state = 258}, - [14] = {.lex_state = 258}, - [15] = {.lex_state = 258}, - [16] = {.lex_state = 258}, - [17] = {.lex_state = 258}, - [18] = {.lex_state = 258}, - [19] = {.lex_state = 258}, - [20] = {.lex_state = 258}, - [21] = {.lex_state = 258}, - [22] = {.lex_state = 258}, - [23] = {.lex_state = 258}, - [24] = {.lex_state = 258}, - [25] = {.lex_state = 258}, - [26] = {.lex_state = 258}, - [27] = {.lex_state = 258}, - [28] = {.lex_state = 258}, - [29] = {.lex_state = 258}, - [30] = {.lex_state = 258}, - [31] = {.lex_state = 258}, - [32] = {.lex_state = 258}, - [33] = {.lex_state = 258}, - [34] = {.lex_state = 258}, - [35] = {.lex_state = 258}, - [36] = {.lex_state = 258}, - [37] = {.lex_state = 258}, - [38] = {.lex_state = 258}, - [39] = {.lex_state = 258}, - [40] = {.lex_state = 258}, - [41] = {.lex_state = 258}, - [42] = {.lex_state = 258}, - [43] = {.lex_state = 258}, - [44] = {.lex_state = 258}, - [45] = {.lex_state = 258}, - [46] = {.lex_state = 258}, - [47] = {.lex_state = 258}, - [48] = {.lex_state = 258}, - [49] = {.lex_state = 258}, - [50] = {.lex_state = 258}, - [51] = {.lex_state = 258}, - [52] = {.lex_state = 258}, - [53] = {.lex_state = 258}, - [54] = {.lex_state = 258}, - [55] = {.lex_state = 258}, - [56] = {.lex_state = 258}, - [57] = {.lex_state = 258}, - [58] = {.lex_state = 258}, - [59] = {.lex_state = 258}, - [60] = {.lex_state = 258}, - [61] = {.lex_state = 254}, - [62] = {.lex_state = 245}, - [63] = {.lex_state = 245}, - [64] = {.lex_state = 245}, - [65] = {.lex_state = 245}, - [66] = {.lex_state = 245}, - [67] = {.lex_state = 81}, - [68] = {.lex_state = 81}, - [69] = {.lex_state = 81}, - [70] = {.lex_state = 81}, - [71] = {.lex_state = 81}, - [72] = {.lex_state = 81}, - [73] = {.lex_state = 81}, - [74] = {.lex_state = 81}, - [75] = {.lex_state = 81}, - [76] = {.lex_state = 81}, - [77] = {.lex_state = 81}, - [78] = {.lex_state = 81}, - [79] = {.lex_state = 81}, - [80] = {.lex_state = 81}, - [81] = {.lex_state = 81}, - [82] = {.lex_state = 81}, - [83] = {.lex_state = 81}, - [84] = {.lex_state = 81}, - [85] = {.lex_state = 81}, - [86] = {.lex_state = 81}, - [87] = {.lex_state = 81}, - [88] = {.lex_state = 81}, - [89] = {.lex_state = 81}, - [90] = {.lex_state = 81}, - [91] = {.lex_state = 81}, - [92] = {.lex_state = 81}, - [93] = {.lex_state = 81}, - [94] = {.lex_state = 81}, - [95] = {.lex_state = 81}, - [96] = {.lex_state = 81}, - [97] = {.lex_state = 81}, - [98] = {.lex_state = 81}, - [99] = {.lex_state = 81}, - [100] = {.lex_state = 81}, - [101] = {.lex_state = 81}, - [102] = {.lex_state = 81}, - [103] = {.lex_state = 81}, - [104] = {.lex_state = 81}, - [105] = {.lex_state = 81}, - [106] = {.lex_state = 81}, - [107] = {.lex_state = 81}, - [108] = {.lex_state = 81}, - [109] = {.lex_state = 81}, - [110] = {.lex_state = 81}, - [111] = {.lex_state = 81}, - [112] = {.lex_state = 81}, - [113] = {.lex_state = 81}, - [114] = {.lex_state = 81}, - [115] = {.lex_state = 81}, - [116] = {.lex_state = 81}, - [117] = {.lex_state = 81}, - [118] = {.lex_state = 81}, - [119] = {.lex_state = 81}, - [120] = {.lex_state = 81}, - [121] = {.lex_state = 81}, - [122] = {.lex_state = 81}, - [123] = {.lex_state = 81}, - [124] = {.lex_state = 81}, - [125] = {.lex_state = 81}, - [126] = {.lex_state = 81}, - [127] = {.lex_state = 81}, - [128] = {.lex_state = 81}, - [129] = {.lex_state = 81}, - [130] = {.lex_state = 81}, - [131] = {.lex_state = 81}, - [132] = {.lex_state = 81}, - [133] = {.lex_state = 81}, - [134] = {.lex_state = 81}, - [135] = {.lex_state = 81}, - [136] = {.lex_state = 81}, - [137] = {.lex_state = 81}, - [138] = {.lex_state = 81}, - [139] = {.lex_state = 81}, - [140] = {.lex_state = 81}, - [141] = {.lex_state = 81}, - [142] = {.lex_state = 81}, - [143] = {.lex_state = 81}, - [144] = {.lex_state = 81}, - [145] = {.lex_state = 81}, - [146] = {.lex_state = 81}, - [147] = {.lex_state = 81}, - [148] = {.lex_state = 81}, - [149] = {.lex_state = 81}, - [150] = {.lex_state = 81}, - [151] = {.lex_state = 81}, - [152] = {.lex_state = 81}, - [153] = {.lex_state = 81}, - [154] = {.lex_state = 81}, - [155] = {.lex_state = 81}, - [156] = {.lex_state = 81}, - [157] = {.lex_state = 81}, - [158] = {.lex_state = 81}, - [159] = {.lex_state = 81}, - [160] = {.lex_state = 81}, - [161] = {.lex_state = 81}, - [162] = {.lex_state = 81}, - [163] = {.lex_state = 81}, - [164] = {.lex_state = 81}, - [165] = {.lex_state = 81}, - [166] = {.lex_state = 81}, - [167] = {.lex_state = 81}, - [168] = {.lex_state = 81}, - [169] = {.lex_state = 81}, - [170] = {.lex_state = 81}, - [171] = {.lex_state = 82}, - [172] = {.lex_state = 81}, - [173] = {.lex_state = 81}, - [174] = {.lex_state = 81}, - [175] = {.lex_state = 81}, - [176] = {.lex_state = 81}, - [177] = {.lex_state = 81}, - [178] = {.lex_state = 81}, - [179] = {.lex_state = 81}, - [180] = {.lex_state = 81}, - [181] = {.lex_state = 81}, - [182] = {.lex_state = 81}, - [183] = {.lex_state = 81}, - [184] = {.lex_state = 81}, - [185] = {.lex_state = 81}, - [186] = {.lex_state = 81}, - [187] = {.lex_state = 81}, - [188] = {.lex_state = 81}, - [189] = {.lex_state = 81}, - [190] = {.lex_state = 81}, - [191] = {.lex_state = 81}, - [192] = {.lex_state = 81}, - [193] = {.lex_state = 81}, - [194] = {.lex_state = 81}, - [195] = {.lex_state = 81}, - [196] = {.lex_state = 81}, - [197] = {.lex_state = 81}, - [198] = {.lex_state = 81}, - [199] = {.lex_state = 81}, - [200] = {.lex_state = 81}, - [201] = {.lex_state = 81}, - [202] = {.lex_state = 81}, - [203] = {.lex_state = 81}, - [204] = {.lex_state = 81}, - [205] = {.lex_state = 81}, - [206] = {.lex_state = 81}, - [207] = {.lex_state = 81}, - [208] = {.lex_state = 81}, - [209] = {.lex_state = 81}, - [210] = {.lex_state = 81}, - [211] = {.lex_state = 81}, - [212] = {.lex_state = 81}, - [213] = {.lex_state = 30}, - [214] = {.lex_state = 81}, - [215] = {.lex_state = 81}, - [216] = {.lex_state = 247}, - [217] = {.lex_state = 247}, - [218] = {.lex_state = 247}, - [219] = {.lex_state = 247}, - [220] = {.lex_state = 247}, - [221] = {.lex_state = 81}, - [222] = {.lex_state = 81}, - [223] = {.lex_state = 81}, - [224] = {.lex_state = 81}, - [225] = {.lex_state = 81}, - [226] = {.lex_state = 81}, - [227] = {.lex_state = 81}, - [228] = {.lex_state = 81}, - [229] = {.lex_state = 81}, - [230] = {.lex_state = 81}, - [231] = {.lex_state = 81}, - [232] = {.lex_state = 81}, - [233] = {.lex_state = 81}, - [234] = {.lex_state = 81}, - [235] = {.lex_state = 81}, - [236] = {.lex_state = 245}, - [237] = {.lex_state = 81}, - [238] = {.lex_state = 81}, - [239] = {.lex_state = 81}, - [240] = {.lex_state = 81}, - [241] = {.lex_state = 81}, - [242] = {.lex_state = 81}, - [243] = {.lex_state = 81}, - [244] = {.lex_state = 81}, - [245] = {.lex_state = 81}, - [246] = {.lex_state = 81}, - [247] = {.lex_state = 81}, - [248] = {.lex_state = 81}, - [249] = {.lex_state = 81}, - [250] = {.lex_state = 81}, - [251] = {.lex_state = 81}, - [252] = {.lex_state = 81}, - [253] = {.lex_state = 81}, - [254] = {.lex_state = 81}, - [255] = {.lex_state = 81}, - [256] = {.lex_state = 81}, - [257] = {.lex_state = 81}, - [258] = {.lex_state = 81}, - [259] = {.lex_state = 81}, - [260] = {.lex_state = 81}, - [261] = {.lex_state = 245}, - [262] = {.lex_state = 81}, - [263] = {.lex_state = 81}, - [264] = {.lex_state = 81}, - [265] = {.lex_state = 81}, - [266] = {.lex_state = 81}, - [267] = {.lex_state = 81}, - [268] = {.lex_state = 81}, - [269] = {.lex_state = 81}, - [270] = {.lex_state = 81}, - [271] = {.lex_state = 81}, - [272] = {.lex_state = 81}, - [273] = {.lex_state = 81}, - [274] = {.lex_state = 81}, - [275] = {.lex_state = 81}, - [276] = {.lex_state = 81}, - [277] = {.lex_state = 81}, - [278] = {.lex_state = 81}, - [279] = {.lex_state = 81}, - [280] = {.lex_state = 81}, - [281] = {.lex_state = 81}, - [282] = {.lex_state = 81}, - [283] = {.lex_state = 81}, - [284] = {.lex_state = 81}, - [285] = {.lex_state = 81}, - [286] = {.lex_state = 81}, - [287] = {.lex_state = 81}, - [288] = {.lex_state = 81}, - [289] = {.lex_state = 81}, - [290] = {.lex_state = 81}, - [291] = {.lex_state = 81}, - [292] = {.lex_state = 245}, - [293] = {.lex_state = 82}, - [294] = {.lex_state = 81}, - [295] = {.lex_state = 82}, - [296] = {.lex_state = 81}, - [297] = {.lex_state = 245}, - [298] = {.lex_state = 245}, - [299] = {.lex_state = 82}, - [300] = {.lex_state = 81}, - [301] = {.lex_state = 245}, - [302] = {.lex_state = 81}, - [303] = {.lex_state = 245}, - [304] = {.lex_state = 81}, - [305] = {.lex_state = 82}, - [306] = {.lex_state = 81}, - [307] = {.lex_state = 82}, - [308] = {.lex_state = 82}, - [309] = {.lex_state = 81}, - [310] = {.lex_state = 81}, - [311] = {.lex_state = 245}, - [312] = {.lex_state = 245}, - [313] = {.lex_state = 81}, - [314] = {.lex_state = 81}, - [315] = {.lex_state = 82}, - [316] = {.lex_state = 82}, - [317] = {.lex_state = 82}, - [318] = {.lex_state = 81}, - [319] = {.lex_state = 81}, - [320] = {.lex_state = 82}, - [321] = {.lex_state = 82}, - [322] = {.lex_state = 81}, - [323] = {.lex_state = 82}, - [324] = {.lex_state = 81}, - [325] = {.lex_state = 82}, - [326] = {.lex_state = 245}, - [327] = {.lex_state = 81}, - [328] = {.lex_state = 82}, - [329] = {.lex_state = 82}, - [330] = {.lex_state = 81}, - [331] = {.lex_state = 81}, - [332] = {.lex_state = 81}, - [333] = {.lex_state = 81}, - [334] = {.lex_state = 81}, - [335] = {.lex_state = 81}, - [336] = {.lex_state = 81}, - [337] = {.lex_state = 82}, - [338] = {.lex_state = 82}, - [339] = {.lex_state = 81}, - [340] = {.lex_state = 81}, - [341] = {.lex_state = 81}, - [342] = {.lex_state = 81}, - [343] = {.lex_state = 81}, - [344] = {.lex_state = 81}, - [345] = {.lex_state = 81}, - [346] = {.lex_state = 81}, - [347] = {.lex_state = 81}, - [348] = {.lex_state = 81}, - [349] = {.lex_state = 81}, - [350] = {.lex_state = 82}, - [351] = {.lex_state = 82}, - [352] = {.lex_state = 82}, - [353] = {.lex_state = 245}, - [354] = {.lex_state = 245}, - [355] = {.lex_state = 81}, - [356] = {.lex_state = 81}, - [357] = {.lex_state = 82}, - [358] = {.lex_state = 81}, - [359] = {.lex_state = 81}, - [360] = {.lex_state = 81}, - [361] = {.lex_state = 81}, - [362] = {.lex_state = 81}, - [363] = {.lex_state = 245}, - [364] = {.lex_state = 81}, - [365] = {.lex_state = 81}, - [366] = {.lex_state = 81}, - [367] = {.lex_state = 245}, - [368] = {.lex_state = 81}, - [369] = {.lex_state = 81}, - [370] = {.lex_state = 81}, - [371] = {.lex_state = 81}, - [372] = {.lex_state = 81}, - [373] = {.lex_state = 245}, - [374] = {.lex_state = 81}, - [375] = {.lex_state = 81}, - [376] = {.lex_state = 81}, - [377] = {.lex_state = 81}, - [378] = {.lex_state = 82}, - [379] = {.lex_state = 81}, - [380] = {.lex_state = 81}, - [381] = {.lex_state = 81}, - [382] = {.lex_state = 81}, - [383] = {.lex_state = 82}, - [384] = {.lex_state = 81}, - [385] = {.lex_state = 82}, - [386] = {.lex_state = 81}, - [387] = {.lex_state = 81}, - [388] = {.lex_state = 81}, - [389] = {.lex_state = 81}, - [390] = {.lex_state = 245}, - [391] = {.lex_state = 245}, - [392] = {.lex_state = 81}, - [393] = {.lex_state = 81}, - [394] = {.lex_state = 81}, - [395] = {.lex_state = 81}, - [396] = {.lex_state = 81}, - [397] = {.lex_state = 81}, - [398] = {.lex_state = 81}, - [399] = {.lex_state = 81}, - [400] = {.lex_state = 81}, - [401] = {.lex_state = 81}, - [402] = {.lex_state = 81}, - [403] = {.lex_state = 81}, - [404] = {.lex_state = 81}, - [405] = {.lex_state = 81}, - [406] = {.lex_state = 81}, - [407] = {.lex_state = 81}, - [408] = {.lex_state = 81}, - [409] = {.lex_state = 81}, - [410] = {.lex_state = 81}, - [411] = {.lex_state = 81}, - [412] = {.lex_state = 81}, - [413] = {.lex_state = 81}, - [414] = {.lex_state = 81}, - [415] = {.lex_state = 81}, - [416] = {.lex_state = 81}, - [417] = {.lex_state = 81}, - [418] = {.lex_state = 81}, - [419] = {.lex_state = 81}, - [420] = {.lex_state = 81}, - [421] = {.lex_state = 81}, - [422] = {.lex_state = 81}, - [423] = {.lex_state = 81}, - [424] = {.lex_state = 81}, - [425] = {.lex_state = 81}, - [426] = {.lex_state = 81}, - [427] = {.lex_state = 81}, - [428] = {.lex_state = 81}, - [429] = {.lex_state = 81}, - [430] = {.lex_state = 81}, - [431] = {.lex_state = 81}, - [432] = {.lex_state = 81}, - [433] = {.lex_state = 81}, - [434] = {.lex_state = 81}, - [435] = {.lex_state = 81}, - [436] = {.lex_state = 81}, - [437] = {.lex_state = 81}, - [438] = {.lex_state = 81}, - [439] = {.lex_state = 81}, - [440] = {.lex_state = 81}, - [441] = {.lex_state = 81}, - [442] = {.lex_state = 81}, - [443] = {.lex_state = 81}, - [444] = {.lex_state = 81}, - [445] = {.lex_state = 81}, - [446] = {.lex_state = 81}, - [447] = {.lex_state = 81}, - [448] = {.lex_state = 81}, - [449] = {.lex_state = 81}, - [450] = {.lex_state = 81}, - [451] = {.lex_state = 81}, - [452] = {.lex_state = 81}, - [453] = {.lex_state = 81}, - [454] = {.lex_state = 81}, - [455] = {.lex_state = 81}, - [456] = {.lex_state = 81}, - [457] = {.lex_state = 81}, - [458] = {.lex_state = 81}, - [459] = {.lex_state = 81}, - [460] = {.lex_state = 81}, - [461] = {.lex_state = 81}, - [462] = {.lex_state = 81}, - [463] = {.lex_state = 81}, - [464] = {.lex_state = 81}, - [465] = {.lex_state = 81}, - [466] = {.lex_state = 81}, - [467] = {.lex_state = 81}, - [468] = {.lex_state = 81}, - [469] = {.lex_state = 81}, - [470] = {.lex_state = 81}, - [471] = {.lex_state = 81}, - [472] = {.lex_state = 81}, - [473] = {.lex_state = 81}, - [474] = {.lex_state = 81}, - [475] = {.lex_state = 81}, - [476] = {.lex_state = 81}, - [477] = {.lex_state = 81}, - [478] = {.lex_state = 81}, - [479] = {.lex_state = 81}, - [480] = {.lex_state = 81}, - [481] = {.lex_state = 81}, - [482] = {.lex_state = 81}, - [483] = {.lex_state = 81}, - [484] = {.lex_state = 81}, - [485] = {.lex_state = 81}, - [486] = {.lex_state = 81}, - [487] = {.lex_state = 81}, - [488] = {.lex_state = 81}, - [489] = {.lex_state = 81}, - [490] = {.lex_state = 81}, - [491] = {.lex_state = 81}, - [492] = {.lex_state = 81}, - [493] = {.lex_state = 81}, - [494] = {.lex_state = 81}, - [495] = {.lex_state = 81}, - [496] = {.lex_state = 81}, - [497] = {.lex_state = 81}, - [498] = {.lex_state = 81}, - [499] = {.lex_state = 81}, - [500] = {.lex_state = 81}, - [501] = {.lex_state = 245}, - [502] = {.lex_state = 81}, - [503] = {.lex_state = 81}, - [504] = {.lex_state = 81}, - [505] = {.lex_state = 81}, - [506] = {.lex_state = 81}, - [507] = {.lex_state = 81}, - [508] = {.lex_state = 81}, - [509] = {.lex_state = 81}, - [510] = {.lex_state = 81}, - [511] = {.lex_state = 81}, - [512] = {.lex_state = 81}, - [513] = {.lex_state = 81}, - [514] = {.lex_state = 81}, - [515] = {.lex_state = 81}, - [516] = {.lex_state = 81}, - [517] = {.lex_state = 81}, - [518] = {.lex_state = 81}, - [519] = {.lex_state = 81}, - [520] = {.lex_state = 81}, - [521] = {.lex_state = 245}, - [522] = {.lex_state = 81}, - [523] = {.lex_state = 81}, - [524] = {.lex_state = 81}, - [525] = {.lex_state = 81}, - [526] = {.lex_state = 81}, - [527] = {.lex_state = 81}, - [528] = {.lex_state = 81}, - [529] = {.lex_state = 81}, - [530] = {.lex_state = 81}, - [531] = {.lex_state = 81}, - [532] = {.lex_state = 81}, - [533] = {.lex_state = 81}, - [534] = {.lex_state = 81}, - [535] = {.lex_state = 81}, - [536] = {.lex_state = 81}, - [537] = {.lex_state = 81}, - [538] = {.lex_state = 81}, - [539] = {.lex_state = 81}, - [540] = {.lex_state = 81}, - [541] = {.lex_state = 81}, - [542] = {.lex_state = 81}, - [543] = {.lex_state = 81}, - [544] = {.lex_state = 81}, - [545] = {.lex_state = 81}, - [546] = {.lex_state = 81}, - [547] = {.lex_state = 81}, - [548] = {.lex_state = 81}, - [549] = {.lex_state = 81}, - [550] = {.lex_state = 81}, - [551] = {.lex_state = 81}, - [552] = {.lex_state = 81}, - [553] = {.lex_state = 81}, - [554] = {.lex_state = 81}, - [555] = {.lex_state = 81}, - [556] = {.lex_state = 81}, - [557] = {.lex_state = 249}, - [558] = {.lex_state = 249}, - [559] = {.lex_state = 81}, - [560] = {.lex_state = 81}, - [561] = {.lex_state = 81}, - [562] = {.lex_state = 81}, - [563] = {.lex_state = 81}, - [564] = {.lex_state = 81}, - [565] = {.lex_state = 81}, - [566] = {.lex_state = 81}, - [567] = {.lex_state = 81}, - [568] = {.lex_state = 81}, - [569] = {.lex_state = 249}, - [570] = {.lex_state = 81}, - [571] = {.lex_state = 81}, - [572] = {.lex_state = 81}, - [573] = {.lex_state = 81}, - [574] = {.lex_state = 81}, - [575] = {.lex_state = 81}, - [576] = {.lex_state = 81}, - [577] = {.lex_state = 81}, - [578] = {.lex_state = 81}, - [579] = {.lex_state = 81}, - [580] = {.lex_state = 81}, - [581] = {.lex_state = 81}, - [582] = {.lex_state = 81}, - [583] = {.lex_state = 81}, - [584] = {.lex_state = 81}, - [585] = {.lex_state = 81}, - [586] = {.lex_state = 81}, - [587] = {.lex_state = 81}, - [588] = {.lex_state = 81}, - [589] = {.lex_state = 81}, - [590] = {.lex_state = 81}, - [591] = {.lex_state = 81}, - [592] = {.lex_state = 81}, - [593] = {.lex_state = 81}, - [594] = {.lex_state = 81}, - [595] = {.lex_state = 81}, - [596] = {.lex_state = 249}, - [597] = {.lex_state = 81}, - [598] = {.lex_state = 81}, - [599] = {.lex_state = 81}, - [600] = {.lex_state = 81}, - [601] = {.lex_state = 81}, - [602] = {.lex_state = 81}, - [603] = {.lex_state = 81}, - [604] = {.lex_state = 81}, - [605] = {.lex_state = 81}, - [606] = {.lex_state = 81}, - [607] = {.lex_state = 81}, - [608] = {.lex_state = 81}, - [609] = {.lex_state = 81}, - [610] = {.lex_state = 81}, - [611] = {.lex_state = 81}, - [612] = {.lex_state = 245}, - [613] = {.lex_state = 81}, - [614] = {.lex_state = 81}, - [615] = {.lex_state = 81}, - [616] = {.lex_state = 81}, - [617] = {.lex_state = 81}, - [618] = {.lex_state = 81}, - [619] = {.lex_state = 81}, - [620] = {.lex_state = 81}, - [621] = {.lex_state = 81}, - [622] = {.lex_state = 81}, - [623] = {.lex_state = 81}, - [624] = {.lex_state = 81}, - [625] = {.lex_state = 81}, - [626] = {.lex_state = 81}, - [627] = {.lex_state = 81}, - [628] = {.lex_state = 81}, - [629] = {.lex_state = 81}, - [630] = {.lex_state = 81}, - [631] = {.lex_state = 81}, - [632] = {.lex_state = 81}, - [633] = {.lex_state = 81}, - [634] = {.lex_state = 81}, - [635] = {.lex_state = 81}, - [636] = {.lex_state = 81}, - [637] = {.lex_state = 81}, - [638] = {.lex_state = 81}, - [639] = {.lex_state = 81}, - [640] = {.lex_state = 81}, - [641] = {.lex_state = 81}, - [642] = {.lex_state = 81}, - [643] = {.lex_state = 81}, - [644] = {.lex_state = 81}, - [645] = {.lex_state = 81}, - [646] = {.lex_state = 81}, - [647] = {.lex_state = 81}, - [648] = {.lex_state = 81}, - [649] = {.lex_state = 81}, - [650] = {.lex_state = 81}, - [651] = {.lex_state = 81}, - [652] = {.lex_state = 81}, - [653] = {.lex_state = 81}, - [654] = {.lex_state = 81}, - [655] = {.lex_state = 81}, - [656] = {.lex_state = 81}, - [657] = {.lex_state = 81}, - [658] = {.lex_state = 81}, - [659] = {.lex_state = 81}, - [660] = {.lex_state = 81}, - [661] = {.lex_state = 81}, - [662] = {.lex_state = 81}, - [663] = {.lex_state = 81}, - [664] = {.lex_state = 81}, - [665] = {.lex_state = 81}, - [666] = {.lex_state = 81}, - [667] = {.lex_state = 81}, - [668] = {.lex_state = 81}, - [669] = {.lex_state = 81}, - [670] = {.lex_state = 81}, - [671] = {.lex_state = 81}, - [672] = {.lex_state = 81}, - [673] = {.lex_state = 81}, - [674] = {.lex_state = 81}, - [675] = {.lex_state = 81}, - [676] = {.lex_state = 81}, - [677] = {.lex_state = 81}, - [678] = {.lex_state = 81}, - [679] = {.lex_state = 81}, - [680] = {.lex_state = 81}, - [681] = {.lex_state = 81}, - [682] = {.lex_state = 81}, - [683] = {.lex_state = 81}, - [684] = {.lex_state = 81}, - [685] = {.lex_state = 81}, - [686] = {.lex_state = 81}, - [687] = {.lex_state = 81}, - [688] = {.lex_state = 81}, - [689] = {.lex_state = 81}, - [690] = {.lex_state = 81}, - [691] = {.lex_state = 81}, - [692] = {.lex_state = 81}, - [693] = {.lex_state = 81}, - [694] = {.lex_state = 81}, - [695] = {.lex_state = 81}, - [696] = {.lex_state = 81}, - [697] = {.lex_state = 81}, - [698] = {.lex_state = 81}, - [699] = {.lex_state = 81}, - [700] = {.lex_state = 81}, - [701] = {.lex_state = 81}, - [702] = {.lex_state = 81}, - [703] = {.lex_state = 81}, - [704] = {.lex_state = 81}, - [705] = {.lex_state = 81}, - [706] = {.lex_state = 81}, - [707] = {.lex_state = 81}, - [708] = {.lex_state = 245}, - [709] = {.lex_state = 81}, - [710] = {.lex_state = 81}, - [711] = {.lex_state = 81}, - [712] = {.lex_state = 81}, - [713] = {.lex_state = 81}, - [714] = {.lex_state = 81}, - [715] = {.lex_state = 81}, - [716] = {.lex_state = 81}, - [717] = {.lex_state = 81}, - [718] = {.lex_state = 81}, - [719] = {.lex_state = 81}, - [720] = {.lex_state = 81}, - [721] = {.lex_state = 81}, - [722] = {.lex_state = 81}, - [723] = {.lex_state = 81}, - [724] = {.lex_state = 81}, - [725] = {.lex_state = 81}, - [726] = {.lex_state = 81}, - [727] = {.lex_state = 81}, - [728] = {.lex_state = 81}, - [729] = {.lex_state = 81}, - [730] = {.lex_state = 81}, - [731] = {.lex_state = 81}, - [732] = {.lex_state = 81}, - [733] = {.lex_state = 81}, - [734] = {.lex_state = 81}, - [735] = {.lex_state = 81}, - [736] = {.lex_state = 81}, - [737] = {.lex_state = 81}, - [738] = {.lex_state = 81}, - [739] = {.lex_state = 81}, - [740] = {.lex_state = 81}, - [741] = {.lex_state = 81}, - [742] = {.lex_state = 81}, - [743] = {.lex_state = 81}, - [744] = {.lex_state = 81}, - [745] = {.lex_state = 81}, - [746] = {.lex_state = 81}, - [747] = {.lex_state = 81}, - [748] = {.lex_state = 81}, - [749] = {.lex_state = 81}, - [750] = {.lex_state = 81}, - [751] = {.lex_state = 81}, - [752] = {.lex_state = 81}, - [753] = {.lex_state = 81}, - [754] = {.lex_state = 81}, - [755] = {.lex_state = 81}, - [756] = {.lex_state = 81}, - [757] = {.lex_state = 81}, - [758] = {.lex_state = 81}, - [759] = {.lex_state = 81}, - [760] = {.lex_state = 81}, - [761] = {.lex_state = 81}, - [762] = {.lex_state = 81}, - [763] = {.lex_state = 81}, - [764] = {.lex_state = 81}, - [765] = {.lex_state = 81}, - [766] = {.lex_state = 81}, - [767] = {.lex_state = 81}, - [768] = {.lex_state = 81}, - [769] = {.lex_state = 81}, - [770] = {.lex_state = 81}, - [771] = {.lex_state = 81}, - [772] = {.lex_state = 81}, - [773] = {.lex_state = 81}, - [774] = {.lex_state = 81}, - [775] = {.lex_state = 81}, - [776] = {.lex_state = 81}, - [777] = {.lex_state = 81}, - [778] = {.lex_state = 81}, - [779] = {.lex_state = 81}, - [780] = {.lex_state = 81}, - [781] = {.lex_state = 81}, - [782] = {.lex_state = 81}, - [783] = {.lex_state = 81}, - [784] = {.lex_state = 81}, - [785] = {.lex_state = 81}, - [786] = {.lex_state = 81}, - [787] = {.lex_state = 81}, - [788] = {.lex_state = 81}, - [789] = {.lex_state = 81}, - [790] = {.lex_state = 81}, - [791] = {.lex_state = 81}, - [792] = {.lex_state = 245}, - [793] = {.lex_state = 81}, - [794] = {.lex_state = 81}, - [795] = {.lex_state = 81}, - [796] = {.lex_state = 81}, - [797] = {.lex_state = 81}, - [798] = {.lex_state = 81}, - [799] = {.lex_state = 81}, - [800] = {.lex_state = 81}, - [801] = {.lex_state = 81}, - [802] = {.lex_state = 81}, - [803] = {.lex_state = 81}, - [804] = {.lex_state = 81}, - [805] = {.lex_state = 81}, - [806] = {.lex_state = 81}, - [807] = {.lex_state = 81}, - [808] = {.lex_state = 81}, - [809] = {.lex_state = 81}, - [810] = {.lex_state = 81}, - [811] = {.lex_state = 81}, - [812] = {.lex_state = 81}, - [813] = {.lex_state = 81}, - [814] = {.lex_state = 81}, - [815] = {.lex_state = 81}, - [816] = {.lex_state = 81}, - [817] = {.lex_state = 81}, - [818] = {.lex_state = 81}, - [819] = {.lex_state = 81}, - [820] = {.lex_state = 81}, - [821] = {.lex_state = 81}, - [822] = {.lex_state = 81}, - [823] = {.lex_state = 81}, - [824] = {.lex_state = 81}, - [825] = {.lex_state = 81}, - [826] = {.lex_state = 81}, - [827] = {.lex_state = 81}, - [828] = {.lex_state = 81}, - [829] = {.lex_state = 81}, - [830] = {.lex_state = 81}, - [831] = {.lex_state = 81}, - [832] = {.lex_state = 81}, - [833] = {.lex_state = 81}, - [834] = {.lex_state = 81}, - [835] = {.lex_state = 81}, - [836] = {.lex_state = 81}, - [837] = {.lex_state = 81}, - [838] = {.lex_state = 81}, - [839] = {.lex_state = 81}, - [840] = {.lex_state = 81}, - [841] = {.lex_state = 81}, - [842] = {.lex_state = 81}, - [843] = {.lex_state = 81}, - [844] = {.lex_state = 81}, - [845] = {.lex_state = 81}, - [846] = {.lex_state = 81}, - [847] = {.lex_state = 245}, - [848] = {.lex_state = 245}, - [849] = {.lex_state = 245}, - [850] = {.lex_state = 245}, - [851] = {.lex_state = 245}, - [852] = {.lex_state = 245}, - [853] = {.lex_state = 245}, - [854] = {.lex_state = 245}, - [855] = {.lex_state = 245}, - [856] = {.lex_state = 245}, - [857] = {.lex_state = 245}, - [858] = {.lex_state = 245}, - [859] = {.lex_state = 245}, - [860] = {.lex_state = 245}, - [861] = {.lex_state = 245}, - [862] = {.lex_state = 245}, - [863] = {.lex_state = 245}, - [864] = {.lex_state = 245}, - [865] = {.lex_state = 245}, - [866] = {.lex_state = 245}, - [867] = {.lex_state = 245}, - [868] = {.lex_state = 245}, - [869] = {.lex_state = 245}, - [870] = {.lex_state = 245}, - [871] = {.lex_state = 245}, - [872] = {.lex_state = 245}, - [873] = {.lex_state = 245}, - [874] = {.lex_state = 245}, - [875] = {.lex_state = 245}, - [876] = {.lex_state = 245}, - [877] = {.lex_state = 245}, - [878] = {.lex_state = 245}, - [879] = {.lex_state = 245}, - [880] = {.lex_state = 245}, - [881] = {.lex_state = 245}, - [882] = {.lex_state = 245}, - [883] = {.lex_state = 245}, - [884] = {.lex_state = 245}, - [885] = {.lex_state = 245}, - [886] = {.lex_state = 245}, - [887] = {.lex_state = 245}, - [888] = {.lex_state = 245}, - [889] = {.lex_state = 245}, - [890] = {.lex_state = 245}, - [891] = {.lex_state = 245}, - [892] = {.lex_state = 245}, - [893] = {.lex_state = 245}, - [894] = {.lex_state = 245}, - [895] = {.lex_state = 245}, - [896] = {.lex_state = 245}, - [897] = {.lex_state = 245}, - [898] = {.lex_state = 245}, - [899] = {.lex_state = 245}, - [900] = {.lex_state = 245}, - [901] = {.lex_state = 245}, - [902] = {.lex_state = 245}, - [903] = {.lex_state = 245}, - [904] = {.lex_state = 245}, - [905] = {.lex_state = 245}, - [906] = {.lex_state = 245}, - [907] = {.lex_state = 245}, - [908] = {.lex_state = 245}, - [909] = {.lex_state = 245}, - [910] = {.lex_state = 245}, - [911] = {.lex_state = 245}, - [912] = {.lex_state = 245}, - [913] = {.lex_state = 245}, - [914] = {.lex_state = 245}, - [915] = {.lex_state = 245}, - [916] = {.lex_state = 245}, - [917] = {.lex_state = 245}, - [918] = {.lex_state = 245}, - [919] = {.lex_state = 245}, - [920] = {.lex_state = 245}, - [921] = {.lex_state = 245}, - [922] = {.lex_state = 245}, - [923] = {.lex_state = 245}, - [924] = {.lex_state = 245}, - [925] = {.lex_state = 245}, - [926] = {.lex_state = 245}, - [927] = {.lex_state = 245}, - [928] = {.lex_state = 245}, - [929] = {.lex_state = 245}, - [930] = {.lex_state = 245}, - [931] = {.lex_state = 245}, - [932] = {.lex_state = 245}, - [933] = {.lex_state = 245}, - [934] = {.lex_state = 245}, - [935] = {.lex_state = 245}, - [936] = {.lex_state = 245}, - [937] = {.lex_state = 245}, - [938] = {.lex_state = 245}, - [939] = {.lex_state = 245}, - [940] = {.lex_state = 245}, - [941] = {.lex_state = 245}, - [942] = {.lex_state = 245}, - [943] = {.lex_state = 245}, - [944] = {.lex_state = 245}, - [945] = {.lex_state = 245}, - [946] = {.lex_state = 245}, - [947] = {.lex_state = 245}, - [948] = {.lex_state = 245}, - [949] = {.lex_state = 245}, - [950] = {.lex_state = 245}, - [951] = {.lex_state = 245}, - [952] = {.lex_state = 245}, - [953] = {.lex_state = 245}, - [954] = {.lex_state = 245}, - [955] = {.lex_state = 245}, - [956] = {.lex_state = 245}, - [957] = {.lex_state = 2}, - [958] = {.lex_state = 247}, - [959] = {.lex_state = 247}, - [960] = {.lex_state = 247}, - [961] = {.lex_state = 247}, - [962] = {.lex_state = 247}, - [963] = {.lex_state = 247}, - [964] = {.lex_state = 247}, - [965] = {.lex_state = 247}, - [966] = {.lex_state = 247}, - [967] = {.lex_state = 2}, - [968] = {.lex_state = 247}, - [969] = {.lex_state = 2}, - [970] = {.lex_state = 247}, - [971] = {.lex_state = 247}, - [972] = {.lex_state = 2}, - [973] = {.lex_state = 247}, - [974] = {.lex_state = 2}, - [975] = {.lex_state = 2}, - [976] = {.lex_state = 247}, - [977] = {.lex_state = 247}, - [978] = {.lex_state = 247}, - [979] = {.lex_state = 247}, - [980] = {.lex_state = 247}, - [981] = {.lex_state = 247}, - [982] = {.lex_state = 247}, - [983] = {.lex_state = 247}, - [984] = {.lex_state = 247}, - [985] = {.lex_state = 247}, - [986] = {.lex_state = 247}, - [987] = {.lex_state = 247}, - [988] = {.lex_state = 247}, - [989] = {.lex_state = 247}, - [990] = {.lex_state = 247}, - [991] = {.lex_state = 247}, - [992] = {.lex_state = 251}, - [993] = {.lex_state = 251}, - [994] = {.lex_state = 247}, - [995] = {.lex_state = 247}, - [996] = {.lex_state = 247}, - [997] = {.lex_state = 251}, - [998] = {.lex_state = 251}, - [999] = {.lex_state = 247}, - [1000] = {.lex_state = 247}, - [1001] = {.lex_state = 247}, - [1002] = {.lex_state = 247}, - [1003] = {.lex_state = 247}, - [1004] = {.lex_state = 247}, - [1005] = {.lex_state = 247}, - [1006] = {.lex_state = 247}, - [1007] = {.lex_state = 247}, - [1008] = {.lex_state = 247}, - [1009] = {.lex_state = 247}, - [1010] = {.lex_state = 247}, - [1011] = {.lex_state = 247}, - [1012] = {.lex_state = 247}, - [1013] = {.lex_state = 247}, - [1014] = {.lex_state = 247}, - [1015] = {.lex_state = 247}, - [1016] = {.lex_state = 247}, - [1017] = {.lex_state = 247}, - [1018] = {.lex_state = 247}, - [1019] = {.lex_state = 247}, - [1020] = {.lex_state = 247}, - [1021] = {.lex_state = 247}, - [1022] = {.lex_state = 247}, - [1023] = {.lex_state = 247}, - [1024] = {.lex_state = 247}, - [1025] = {.lex_state = 247}, - [1026] = {.lex_state = 247}, - [1027] = {.lex_state = 247}, - [1028] = {.lex_state = 247}, - [1029] = {.lex_state = 247}, - [1030] = {.lex_state = 247}, - [1031] = {.lex_state = 247}, - [1032] = {.lex_state = 247}, - [1033] = {.lex_state = 247}, - [1034] = {.lex_state = 247}, - [1035] = {.lex_state = 247}, - [1036] = {.lex_state = 247}, - [1037] = {.lex_state = 247}, - [1038] = {.lex_state = 247}, - [1039] = {.lex_state = 247}, - [1040] = {.lex_state = 247}, - [1041] = {.lex_state = 247}, - [1042] = {.lex_state = 247}, - [1043] = {.lex_state = 247}, - [1044] = {.lex_state = 247}, - [1045] = {.lex_state = 247}, - [1046] = {.lex_state = 247}, - [1047] = {.lex_state = 247}, - [1048] = {.lex_state = 247}, - [1049] = {.lex_state = 247}, - [1050] = {.lex_state = 247}, - [1051] = {.lex_state = 247}, - [1052] = {.lex_state = 247}, - [1053] = {.lex_state = 247}, - [1054] = {.lex_state = 247}, - [1055] = {.lex_state = 247}, - [1056] = {.lex_state = 247}, - [1057] = {.lex_state = 247}, - [1058] = {.lex_state = 247}, - [1059] = {.lex_state = 247}, - [1060] = {.lex_state = 247}, - [1061] = {.lex_state = 247}, - [1062] = {.lex_state = 247}, - [1063] = {.lex_state = 247}, - [1064] = {.lex_state = 247}, - [1065] = {.lex_state = 247}, - [1066] = {.lex_state = 247}, - [1067] = {.lex_state = 247}, - [1068] = {.lex_state = 247}, - [1069] = {.lex_state = 247}, - [1070] = {.lex_state = 247}, - [1071] = {.lex_state = 247}, - [1072] = {.lex_state = 247}, - [1073] = {.lex_state = 247}, - [1074] = {.lex_state = 247}, - [1075] = {.lex_state = 247}, - [1076] = {.lex_state = 247}, - [1077] = {.lex_state = 247}, - [1078] = {.lex_state = 247}, - [1079] = {.lex_state = 247}, - [1080] = {.lex_state = 247}, - [1081] = {.lex_state = 247}, - [1082] = {.lex_state = 247}, - [1083] = {.lex_state = 247}, - [1084] = {.lex_state = 247}, - [1085] = {.lex_state = 247}, - [1086] = {.lex_state = 247}, - [1087] = {.lex_state = 247}, - [1088] = {.lex_state = 247}, - [1089] = {.lex_state = 247}, - [1090] = {.lex_state = 247}, - [1091] = {.lex_state = 247}, - [1092] = {.lex_state = 247}, - [1093] = {.lex_state = 247}, - [1094] = {.lex_state = 247}, - [1095] = {.lex_state = 247}, - [1096] = {.lex_state = 247}, - [1097] = {.lex_state = 247}, - [1098] = {.lex_state = 247}, - [1099] = {.lex_state = 247}, - [1100] = {.lex_state = 247}, - [1101] = {.lex_state = 247}, - [1102] = {.lex_state = 247}, - [1103] = {.lex_state = 247}, - [1104] = {.lex_state = 247}, - [1105] = {.lex_state = 247}, - [1106] = {.lex_state = 247}, - [1107] = {.lex_state = 247}, - [1108] = {.lex_state = 247}, - [1109] = {.lex_state = 37}, - [1110] = {.lex_state = 37}, - [1111] = {.lex_state = 37}, - [1112] = {.lex_state = 37}, - [1113] = {.lex_state = 37}, - [1114] = {.lex_state = 254}, - [1115] = {.lex_state = 254}, - [1116] = {.lex_state = 254}, - [1117] = {.lex_state = 6}, - [1118] = {.lex_state = 6}, - [1119] = {.lex_state = 6}, - [1120] = {.lex_state = 6}, - [1121] = {.lex_state = 6}, - [1122] = {.lex_state = 253}, - [1123] = {.lex_state = 10}, - [1124] = {.lex_state = 10}, - [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 10}, - [1127] = {.lex_state = 10}, - [1128] = {.lex_state = 2}, - [1129] = {.lex_state = 2}, - [1130] = {.lex_state = 2}, - [1131] = {.lex_state = 2}, - [1132] = {.lex_state = 2}, - [1133] = {.lex_state = 2}, - [1134] = {.lex_state = 2}, - [1135] = {.lex_state = 2}, - [1136] = {.lex_state = 2}, - [1137] = {.lex_state = 2}, - [1138] = {.lex_state = 2}, - [1139] = {.lex_state = 2}, - [1140] = {.lex_state = 2}, - [1141] = {.lex_state = 41}, - [1142] = {.lex_state = 45}, - [1143] = {.lex_state = 2}, - [1144] = {.lex_state = 45}, - [1145] = {.lex_state = 2}, - [1146] = {.lex_state = 45}, - [1147] = {.lex_state = 2}, - [1148] = {.lex_state = 41}, - [1149] = {.lex_state = 41}, - [1150] = {.lex_state = 2}, - [1151] = {.lex_state = 45}, - [1152] = {.lex_state = 45}, - [1153] = {.lex_state = 45}, - [1154] = {.lex_state = 41}, - [1155] = {.lex_state = 2}, - [1156] = {.lex_state = 41}, - [1157] = {.lex_state = 45}, - [1158] = {.lex_state = 2}, - [1159] = {.lex_state = 2}, - [1160] = {.lex_state = 4}, - [1161] = {.lex_state = 4}, - [1162] = {.lex_state = 4}, - [1163] = {.lex_state = 4}, - [1164] = {.lex_state = 2}, - [1165] = {.lex_state = 2}, - [1166] = {.lex_state = 2}, - [1167] = {.lex_state = 2}, - [1168] = {.lex_state = 2}, - [1169] = {.lex_state = 2}, - [1170] = {.lex_state = 2}, - [1171] = {.lex_state = 2}, - [1172] = {.lex_state = 2}, - [1173] = {.lex_state = 2}, - [1174] = {.lex_state = 2}, - [1175] = {.lex_state = 2}, - [1176] = {.lex_state = 2}, - [1177] = {.lex_state = 2}, - [1178] = {.lex_state = 2}, - [1179] = {.lex_state = 2}, - [1180] = {.lex_state = 2}, - [1181] = {.lex_state = 2}, - [1182] = {.lex_state = 2}, - [1183] = {.lex_state = 2}, - [1184] = {.lex_state = 2}, - [1185] = {.lex_state = 2}, - [1186] = {.lex_state = 2}, - [1187] = {.lex_state = 2}, - [1188] = {.lex_state = 2}, - [1189] = {.lex_state = 2}, - [1190] = {.lex_state = 2}, - [1191] = {.lex_state = 2}, - [1192] = {.lex_state = 2}, - [1193] = {.lex_state = 2}, - [1194] = {.lex_state = 2}, - [1195] = {.lex_state = 2}, - [1196] = {.lex_state = 2}, - [1197] = {.lex_state = 2}, - [1198] = {.lex_state = 2}, - [1199] = {.lex_state = 2}, - [1200] = {.lex_state = 2}, - [1201] = {.lex_state = 2}, - [1202] = {.lex_state = 2}, - [1203] = {.lex_state = 2}, - [1204] = {.lex_state = 2}, - [1205] = {.lex_state = 2}, - [1206] = {.lex_state = 2}, - [1207] = {.lex_state = 2}, - [1208] = {.lex_state = 2}, - [1209] = {.lex_state = 2}, - [1210] = {.lex_state = 2}, - [1211] = {.lex_state = 2}, - [1212] = {.lex_state = 2}, - [1213] = {.lex_state = 2}, - [1214] = {.lex_state = 2}, - [1215] = {.lex_state = 2}, - [1216] = {.lex_state = 2}, - [1217] = {.lex_state = 2}, - [1218] = {.lex_state = 2}, - [1219] = {.lex_state = 2}, - [1220] = {.lex_state = 2}, - [1221] = {.lex_state = 2}, - [1222] = {.lex_state = 2}, - [1223] = {.lex_state = 2}, - [1224] = {.lex_state = 2}, - [1225] = {.lex_state = 2}, - [1226] = {.lex_state = 2}, - [1227] = {.lex_state = 2}, - [1228] = {.lex_state = 2}, - [1229] = {.lex_state = 2}, - [1230] = {.lex_state = 2}, - [1231] = {.lex_state = 2}, - [1232] = {.lex_state = 2}, - [1233] = {.lex_state = 2}, - [1234] = {.lex_state = 2}, - [1235] = {.lex_state = 2}, - [1236] = {.lex_state = 2}, - [1237] = {.lex_state = 2}, - [1238] = {.lex_state = 2}, - [1239] = {.lex_state = 2}, - [1240] = {.lex_state = 2}, - [1241] = {.lex_state = 2}, - [1242] = {.lex_state = 2}, - [1243] = {.lex_state = 2}, - [1244] = {.lex_state = 2}, - [1245] = {.lex_state = 2}, - [1246] = {.lex_state = 2}, - [1247] = {.lex_state = 2}, - [1248] = {.lex_state = 2}, - [1249] = {.lex_state = 2}, - [1250] = {.lex_state = 2}, - [1251] = {.lex_state = 2}, - [1252] = {.lex_state = 2}, - [1253] = {.lex_state = 2}, - [1254] = {.lex_state = 2}, - [1255] = {.lex_state = 2}, - [1256] = {.lex_state = 2}, - [1257] = {.lex_state = 2}, - [1258] = {.lex_state = 2}, - [1259] = {.lex_state = 2}, - [1260] = {.lex_state = 2}, - [1261] = {.lex_state = 2}, - [1262] = {.lex_state = 2}, - [1263] = {.lex_state = 2}, - [1264] = {.lex_state = 2}, - [1265] = {.lex_state = 2}, - [1266] = {.lex_state = 2}, - [1267] = {.lex_state = 2}, - [1268] = {.lex_state = 2}, - [1269] = {.lex_state = 2}, - [1270] = {.lex_state = 37}, - [1271] = {.lex_state = 37}, - [1272] = {.lex_state = 37}, - [1273] = {.lex_state = 37}, - [1274] = {.lex_state = 37}, - [1275] = {.lex_state = 37}, - [1276] = {.lex_state = 37}, - [1277] = {.lex_state = 37}, - [1278] = {.lex_state = 37}, - [1279] = {.lex_state = 37}, - [1280] = {.lex_state = 37}, - [1281] = {.lex_state = 37}, - [1282] = {.lex_state = 37}, - [1283] = {.lex_state = 37}, - [1284] = {.lex_state = 37}, - [1285] = {.lex_state = 37}, - [1286] = {.lex_state = 37}, - [1287] = {.lex_state = 37}, - [1288] = {.lex_state = 14}, - [1289] = {.lex_state = 37}, - [1290] = {.lex_state = 37}, - [1291] = {.lex_state = 37}, - [1292] = {.lex_state = 37}, - [1293] = {.lex_state = 37}, - [1294] = {.lex_state = 37}, - [1295] = {.lex_state = 39}, - [1296] = {.lex_state = 39}, - [1297] = {.lex_state = 37}, - [1298] = {.lex_state = 37}, - [1299] = {.lex_state = 39}, - [1300] = {.lex_state = 37}, - [1301] = {.lex_state = 37}, - [1302] = {.lex_state = 39}, - [1303] = {.lex_state = 37}, - [1304] = {.lex_state = 37}, - [1305] = {.lex_state = 37}, - [1306] = {.lex_state = 37}, - [1307] = {.lex_state = 37}, - [1308] = {.lex_state = 37}, - [1309] = {.lex_state = 37}, - [1310] = {.lex_state = 37}, - [1311] = {.lex_state = 37}, - [1312] = {.lex_state = 37}, - [1313] = {.lex_state = 37}, - [1314] = {.lex_state = 37}, - [1315] = {.lex_state = 37}, - [1316] = {.lex_state = 37}, - [1317] = {.lex_state = 37}, - [1318] = {.lex_state = 37}, - [1319] = {.lex_state = 37}, - [1320] = {.lex_state = 37}, - [1321] = {.lex_state = 37}, - [1322] = {.lex_state = 37}, - [1323] = {.lex_state = 37}, - [1324] = {.lex_state = 37}, - [1325] = {.lex_state = 37}, - [1326] = {.lex_state = 37}, - [1327] = {.lex_state = 37}, - [1328] = {.lex_state = 37}, - [1329] = {.lex_state = 37}, - [1330] = {.lex_state = 37}, - [1331] = {.lex_state = 37}, - [1332] = {.lex_state = 37}, - [1333] = {.lex_state = 37}, - [1334] = {.lex_state = 37}, - [1335] = {.lex_state = 37}, - [1336] = {.lex_state = 37}, - [1337] = {.lex_state = 37}, - [1338] = {.lex_state = 37}, - [1339] = {.lex_state = 37}, - [1340] = {.lex_state = 37}, - [1341] = {.lex_state = 37}, - [1342] = {.lex_state = 37}, - [1343] = {.lex_state = 37}, - [1344] = {.lex_state = 37}, - [1345] = {.lex_state = 37}, - [1346] = {.lex_state = 37}, - [1347] = {.lex_state = 37}, - [1348] = {.lex_state = 37}, - [1349] = {.lex_state = 37}, - [1350] = {.lex_state = 37}, - [1351] = {.lex_state = 37}, - [1352] = {.lex_state = 37}, - [1353] = {.lex_state = 37}, - [1354] = {.lex_state = 37}, - [1355] = {.lex_state = 37}, - [1356] = {.lex_state = 37}, - [1357] = {.lex_state = 37}, - [1358] = {.lex_state = 37}, - [1359] = {.lex_state = 37}, - [1360] = {.lex_state = 37}, - [1361] = {.lex_state = 37}, - [1362] = {.lex_state = 37}, - [1363] = {.lex_state = 37}, - [1364] = {.lex_state = 37}, - [1365] = {.lex_state = 37}, - [1366] = {.lex_state = 37}, - [1367] = {.lex_state = 37}, - [1368] = {.lex_state = 37}, - [1369] = {.lex_state = 37}, - [1370] = {.lex_state = 37}, - [1371] = {.lex_state = 37}, - [1372] = {.lex_state = 37}, - [1373] = {.lex_state = 14}, - [1374] = {.lex_state = 37}, - [1375] = {.lex_state = 37}, - [1376] = {.lex_state = 37}, - [1377] = {.lex_state = 14}, - [1378] = {.lex_state = 37}, - [1379] = {.lex_state = 37}, - [1380] = {.lex_state = 37}, - [1381] = {.lex_state = 37}, - [1382] = {.lex_state = 37}, - [1383] = {.lex_state = 37}, - [1384] = {.lex_state = 37}, - [1385] = {.lex_state = 37}, - [1386] = {.lex_state = 37}, - [1387] = {.lex_state = 37}, - [1388] = {.lex_state = 37}, - [1389] = {.lex_state = 14}, - [1390] = {.lex_state = 37}, - [1391] = {.lex_state = 14}, - [1392] = {.lex_state = 37}, - [1393] = {.lex_state = 37}, - [1394] = {.lex_state = 37}, - [1395] = {.lex_state = 37}, - [1396] = {.lex_state = 37}, - [1397] = {.lex_state = 37}, - [1398] = {.lex_state = 37}, - [1399] = {.lex_state = 37}, - [1400] = {.lex_state = 37}, - [1401] = {.lex_state = 37}, - [1402] = {.lex_state = 37}, - [1403] = {.lex_state = 37}, - [1404] = {.lex_state = 37}, - [1405] = {.lex_state = 37}, - [1406] = {.lex_state = 37}, - [1407] = {.lex_state = 49}, - [1408] = {.lex_state = 49}, - [1409] = {.lex_state = 49}, - [1410] = {.lex_state = 49}, - [1411] = {.lex_state = 255}, - [1412] = {.lex_state = 14}, - [1413] = {.lex_state = 14}, - [1414] = {.lex_state = 14}, - [1415] = {.lex_state = 254}, - [1416] = {.lex_state = 254}, - [1417] = {.lex_state = 254}, - [1418] = {.lex_state = 255}, - [1419] = {.lex_state = 255}, - [1420] = {.lex_state = 254}, - [1421] = {.lex_state = 255}, - [1422] = {.lex_state = 254}, - [1423] = {.lex_state = 254}, - [1424] = {.lex_state = 254}, - [1425] = {.lex_state = 14}, - [1426] = {.lex_state = 14}, - [1427] = {.lex_state = 254}, - [1428] = {.lex_state = 254}, - [1429] = {.lex_state = 254}, - [1430] = {.lex_state = 254}, - [1431] = {.lex_state = 254}, - [1432] = {.lex_state = 254}, - [1433] = {.lex_state = 254}, - [1434] = {.lex_state = 254}, - [1435] = {.lex_state = 254}, - [1436] = {.lex_state = 254}, - [1437] = {.lex_state = 254}, - [1438] = {.lex_state = 254}, - [1439] = {.lex_state = 254}, - [1440] = {.lex_state = 254}, - [1441] = {.lex_state = 254}, - [1442] = {.lex_state = 254}, - [1443] = {.lex_state = 254}, - [1444] = {.lex_state = 254}, - [1445] = {.lex_state = 254}, - [1446] = {.lex_state = 254}, - [1447] = {.lex_state = 254}, - [1448] = {.lex_state = 49}, - [1449] = {.lex_state = 254}, - [1450] = {.lex_state = 254}, - [1451] = {.lex_state = 254}, - [1452] = {.lex_state = 254}, - [1453] = {.lex_state = 254}, - [1454] = {.lex_state = 254}, - [1455] = {.lex_state = 254}, - [1456] = {.lex_state = 254}, - [1457] = {.lex_state = 254}, - [1458] = {.lex_state = 254}, - [1459] = {.lex_state = 254}, - [1460] = {.lex_state = 254}, - [1461] = {.lex_state = 254}, - [1462] = {.lex_state = 254}, - [1463] = {.lex_state = 254}, - [1464] = {.lex_state = 254}, - [1465] = {.lex_state = 254}, - [1466] = {.lex_state = 254}, - [1467] = {.lex_state = 254}, - [1468] = {.lex_state = 254}, - [1469] = {.lex_state = 254}, - [1470] = {.lex_state = 254}, - [1471] = {.lex_state = 254}, - [1472] = {.lex_state = 254}, - [1473] = {.lex_state = 254}, - [1474] = {.lex_state = 254}, - [1475] = {.lex_state = 254}, - [1476] = {.lex_state = 254}, - [1477] = {.lex_state = 254}, - [1478] = {.lex_state = 254}, - [1479] = {.lex_state = 254}, - [1480] = {.lex_state = 254}, - [1481] = {.lex_state = 254}, - [1482] = {.lex_state = 254}, - [1483] = {.lex_state = 254}, - [1484] = {.lex_state = 254}, - [1485] = {.lex_state = 254}, - [1486] = {.lex_state = 254}, - [1487] = {.lex_state = 254}, - [1488] = {.lex_state = 254}, - [1489] = {.lex_state = 254}, - [1490] = {.lex_state = 254}, - [1491] = {.lex_state = 254}, - [1492] = {.lex_state = 254}, - [1493] = {.lex_state = 254}, - [1494] = {.lex_state = 254}, - [1495] = {.lex_state = 254}, - [1496] = {.lex_state = 254}, - [1497] = {.lex_state = 254}, - [1498] = {.lex_state = 254}, - [1499] = {.lex_state = 254}, - [1500] = {.lex_state = 254}, - [1501] = {.lex_state = 254}, - [1502] = {.lex_state = 254}, - [1503] = {.lex_state = 254}, - [1504] = {.lex_state = 254}, - [1505] = {.lex_state = 254}, - [1506] = {.lex_state = 254}, - [1507] = {.lex_state = 254}, - [1508] = {.lex_state = 254}, - [1509] = {.lex_state = 53}, - [1510] = {.lex_state = 254}, - [1511] = {.lex_state = 254}, - [1512] = {.lex_state = 254}, - [1513] = {.lex_state = 254}, - [1514] = {.lex_state = 254}, - [1515] = {.lex_state = 254}, - [1516] = {.lex_state = 254}, - [1517] = {.lex_state = 254}, - [1518] = {.lex_state = 254}, - [1519] = {.lex_state = 254}, - [1520] = {.lex_state = 254}, - [1521] = {.lex_state = 254}, - [1522] = {.lex_state = 254}, - [1523] = {.lex_state = 254}, - [1524] = {.lex_state = 254}, - [1525] = {.lex_state = 254}, - [1526] = {.lex_state = 254}, - [1527] = {.lex_state = 254}, - [1528] = {.lex_state = 254}, - [1529] = {.lex_state = 254}, - [1530] = {.lex_state = 254}, - [1531] = {.lex_state = 254}, - [1532] = {.lex_state = 254}, - [1533] = {.lex_state = 254}, - [1534] = {.lex_state = 254}, - [1535] = {.lex_state = 254}, - [1536] = {.lex_state = 254}, - [1537] = {.lex_state = 254}, - [1538] = {.lex_state = 254}, - [1539] = {.lex_state = 254}, - [1540] = {.lex_state = 254}, - [1541] = {.lex_state = 254}, - [1542] = {.lex_state = 254}, - [1543] = {.lex_state = 254}, - [1544] = {.lex_state = 254}, - [1545] = {.lex_state = 254}, - [1546] = {.lex_state = 254}, - [1547] = {.lex_state = 254}, - [1548] = {.lex_state = 254}, - [1549] = {.lex_state = 254}, - [1550] = {.lex_state = 254}, - [1551] = {.lex_state = 254}, - [1552] = {.lex_state = 254}, - [1553] = {.lex_state = 254}, - [1554] = {.lex_state = 254}, - [1555] = {.lex_state = 254}, - [1556] = {.lex_state = 254}, - [1557] = {.lex_state = 254}, - [1558] = {.lex_state = 254}, - [1559] = {.lex_state = 254}, - [1560] = {.lex_state = 254}, - [1561] = {.lex_state = 254}, - [1562] = {.lex_state = 254}, - [1563] = {.lex_state = 254}, - [1564] = {.lex_state = 258}, - [1565] = {.lex_state = 254}, - [1566] = {.lex_state = 254}, - [1567] = {.lex_state = 254}, - [1568] = {.lex_state = 254}, - [1569] = {.lex_state = 254}, - [1570] = {.lex_state = 254}, - [1571] = {.lex_state = 258}, - [1572] = {.lex_state = 254}, - [1573] = {.lex_state = 254}, - [1574] = {.lex_state = 254}, - [1575] = {.lex_state = 254}, - [1576] = {.lex_state = 254}, - [1577] = {.lex_state = 254}, - [1578] = {.lex_state = 254}, - [1579] = {.lex_state = 254}, - [1580] = {.lex_state = 254}, - [1581] = {.lex_state = 49}, - [1582] = {.lex_state = 53}, - [1583] = {.lex_state = 53}, - [1584] = {.lex_state = 53}, - [1585] = {.lex_state = 53}, - [1586] = {.lex_state = 258}, - [1587] = {.lex_state = 49}, - [1588] = {.lex_state = 258}, - [1589] = {.lex_state = 81}, - [1590] = {.lex_state = 49}, - [1591] = {.lex_state = 258}, - [1592] = {.lex_state = 258}, - [1593] = {.lex_state = 6}, - [1594] = {.lex_state = 6}, - [1595] = {.lex_state = 6}, - [1596] = {.lex_state = 6}, - [1597] = {.lex_state = 6}, - [1598] = {.lex_state = 10}, - [1599] = {.lex_state = 10}, - [1600] = {.lex_state = 10}, - [1601] = {.lex_state = 10}, - [1602] = {.lex_state = 10}, - [1603] = {.lex_state = 41}, - [1604] = {.lex_state = 45}, - [1605] = {.lex_state = 24}, - [1606] = {.lex_state = 41}, - [1607] = {.lex_state = 41}, - [1608] = {.lex_state = 45}, - [1609] = {.lex_state = 41}, - [1610] = {.lex_state = 41}, - [1611] = {.lex_state = 45}, - [1612] = {.lex_state = 45}, - [1613] = {.lex_state = 45}, - [1614] = {.lex_state = 24}, - [1615] = {.lex_state = 24}, - [1616] = {.lex_state = 24}, - [1617] = {.lex_state = 24}, - [1618] = {.lex_state = 24}, - [1619] = {.lex_state = 24}, - [1620] = {.lex_state = 24}, - [1621] = {.lex_state = 24}, - [1622] = {.lex_state = 24}, - [1623] = {.lex_state = 24}, - [1624] = {.lex_state = 24}, - [1625] = {.lex_state = 24}, - [1626] = {.lex_state = 24}, - [1627] = {.lex_state = 18}, - [1628] = {.lex_state = 26}, - [1629] = {.lex_state = 18}, - [1630] = {.lex_state = 7}, - [1631] = {.lex_state = 7}, - [1632] = {.lex_state = 24}, - [1633] = {.lex_state = 24}, - [1634] = {.lex_state = 24}, - [1635] = {.lex_state = 24}, - [1636] = {.lex_state = 24}, - [1637] = {.lex_state = 24}, - [1638] = {.lex_state = 26}, - [1639] = {.lex_state = 24}, - [1640] = {.lex_state = 26}, - [1641] = {.lex_state = 24}, - [1642] = {.lex_state = 24}, - [1643] = {.lex_state = 24}, - [1644] = {.lex_state = 24}, - [1645] = {.lex_state = 26}, - [1646] = {.lex_state = 24}, - [1647] = {.lex_state = 24}, - [1648] = {.lex_state = 26}, - [1649] = {.lex_state = 26}, - [1650] = {.lex_state = 26}, - [1651] = {.lex_state = 26}, - [1652] = {.lex_state = 26}, - [1653] = {.lex_state = 24}, - [1654] = {.lex_state = 24}, - [1655] = {.lex_state = 24}, - [1656] = {.lex_state = 24}, - [1657] = {.lex_state = 24}, - [1658] = {.lex_state = 258}, - [1659] = {.lex_state = 24}, - [1660] = {.lex_state = 24}, - [1661] = {.lex_state = 24}, - [1662] = {.lex_state = 69}, - [1663] = {.lex_state = 24}, - [1664] = {.lex_state = 24}, - [1665] = {.lex_state = 24}, - [1666] = {.lex_state = 24}, - [1667] = {.lex_state = 24}, - [1668] = {.lex_state = 24}, - [1669] = {.lex_state = 24}, - [1670] = {.lex_state = 69}, - [1671] = {.lex_state = 26}, - [1672] = {.lex_state = 26}, - [1673] = {.lex_state = 26}, - [1674] = {.lex_state = 26}, - [1675] = {.lex_state = 24}, - [1676] = {.lex_state = 24}, - [1677] = {.lex_state = 24}, - [1678] = {.lex_state = 24}, - [1679] = {.lex_state = 24}, - [1680] = {.lex_state = 24}, - [1681] = {.lex_state = 24}, - [1682] = {.lex_state = 24}, - [1683] = {.lex_state = 24}, - [1684] = {.lex_state = 24}, - [1685] = {.lex_state = 24}, - [1686] = {.lex_state = 20}, - [1687] = {.lex_state = 24}, - [1688] = {.lex_state = 24}, - [1689] = {.lex_state = 24}, - [1690] = {.lex_state = 20}, - [1691] = {.lex_state = 24}, - [1692] = {.lex_state = 24}, - [1693] = {.lex_state = 24}, - [1694] = {.lex_state = 24}, - [1695] = {.lex_state = 24}, - [1696] = {.lex_state = 24}, - [1697] = {.lex_state = 24}, - [1698] = {.lex_state = 24}, - [1699] = {.lex_state = 24}, - [1700] = {.lex_state = 24}, - [1701] = {.lex_state = 24}, - [1702] = {.lex_state = 24}, - [1703] = {.lex_state = 24}, - [1704] = {.lex_state = 24}, - [1705] = {.lex_state = 24}, - [1706] = {.lex_state = 24}, - [1707] = {.lex_state = 24}, - [1708] = {.lex_state = 24}, - [1709] = {.lex_state = 24}, - [1710] = {.lex_state = 24}, - [1711] = {.lex_state = 24}, - [1712] = {.lex_state = 24}, - [1713] = {.lex_state = 24}, - [1714] = {.lex_state = 24}, - [1715] = {.lex_state = 24}, - [1716] = {.lex_state = 24}, - [1717] = {.lex_state = 24}, - [1718] = {.lex_state = 24}, - [1719] = {.lex_state = 24}, - [1720] = {.lex_state = 24}, - [1721] = {.lex_state = 24}, - [1722] = {.lex_state = 24}, - [1723] = {.lex_state = 26}, - [1724] = {.lex_state = 24}, - [1725] = {.lex_state = 11}, - [1726] = {.lex_state = 24}, - [1727] = {.lex_state = 11}, - [1728] = {.lex_state = 24}, - [1729] = {.lex_state = 24}, - [1730] = {.lex_state = 24}, - [1731] = {.lex_state = 24}, - [1732] = {.lex_state = 24}, - [1733] = {.lex_state = 24}, - [1734] = {.lex_state = 24}, - [1735] = {.lex_state = 24}, - [1736] = {.lex_state = 24}, - [1737] = {.lex_state = 24}, - [1738] = {.lex_state = 24}, - [1739] = {.lex_state = 24}, - [1740] = {.lex_state = 24}, - [1741] = {.lex_state = 24}, - [1742] = {.lex_state = 24}, - [1743] = {.lex_state = 24}, - [1744] = {.lex_state = 24}, - [1745] = {.lex_state = 24}, - [1746] = {.lex_state = 24}, - [1747] = {.lex_state = 24}, - [1748] = {.lex_state = 24}, - [1749] = {.lex_state = 24}, - [1750] = {.lex_state = 24}, - [1751] = {.lex_state = 24}, - [1752] = {.lex_state = 24}, - [1753] = {.lex_state = 24}, - [1754] = {.lex_state = 24}, - [1755] = {.lex_state = 24}, - [1756] = {.lex_state = 24}, - [1757] = {.lex_state = 24}, - [1758] = {.lex_state = 24}, - [1759] = {.lex_state = 24}, - [1760] = {.lex_state = 24}, - [1761] = {.lex_state = 14}, - [1762] = {.lex_state = 71}, - [1763] = {.lex_state = 69}, - [1764] = {.lex_state = 69}, - [1765] = {.lex_state = 69}, - [1766] = {.lex_state = 69}, - [1767] = {.lex_state = 71}, - [1768] = {.lex_state = 69}, - [1769] = {.lex_state = 71}, - [1770] = {.lex_state = 71}, - [1771] = {.lex_state = 71}, - [1772] = {.lex_state = 26}, - [1773] = {.lex_state = 69}, - [1774] = {.lex_state = 69}, - [1775] = {.lex_state = 26}, - [1776] = {.lex_state = 26}, - [1777] = {.lex_state = 69}, - [1778] = {.lex_state = 69}, - [1779] = {.lex_state = 69}, - [1780] = {.lex_state = 69}, - [1781] = {.lex_state = 69}, - [1782] = {.lex_state = 14}, - [1783] = {.lex_state = 26}, - [1784] = {.lex_state = 14}, - [1785] = {.lex_state = 71}, - [1786] = {.lex_state = 69}, - [1787] = {.lex_state = 26}, - [1788] = {.lex_state = 71}, - [1789] = {.lex_state = 69}, - [1790] = {.lex_state = 71}, - [1791] = {.lex_state = 14}, - [1792] = {.lex_state = 14}, - [1793] = {.lex_state = 26}, - [1794] = {.lex_state = 71}, - [1795] = {.lex_state = 71}, - [1796] = {.lex_state = 71}, - [1797] = {.lex_state = 26}, - [1798] = {.lex_state = 26}, - [1799] = {.lex_state = 26}, - [1800] = {.lex_state = 26}, - [1801] = {.lex_state = 26}, - [1802] = {.lex_state = 26}, - [1803] = {.lex_state = 26}, - [1804] = {.lex_state = 26}, - [1805] = {.lex_state = 26}, - [1806] = {.lex_state = 26}, - [1807] = {.lex_state = 26}, - [1808] = {.lex_state = 26}, - [1809] = {.lex_state = 26}, - [1810] = {.lex_state = 69}, - [1811] = {.lex_state = 69}, - [1812] = {.lex_state = 26}, - [1813] = {.lex_state = 26}, - [1814] = {.lex_state = 26}, - [1815] = {.lex_state = 26}, - [1816] = {.lex_state = 69}, - [1817] = {.lex_state = 26}, - [1818] = {.lex_state = 26}, - [1819] = {.lex_state = 26}, - [1820] = {.lex_state = 69}, - [1821] = {.lex_state = 26}, - [1822] = {.lex_state = 26}, - [1823] = {.lex_state = 26}, - [1824] = {.lex_state = 26}, - [1825] = {.lex_state = 26}, - [1826] = {.lex_state = 26}, - [1827] = {.lex_state = 26}, - [1828] = {.lex_state = 26}, - [1829] = {.lex_state = 26}, - [1830] = {.lex_state = 26}, - [1831] = {.lex_state = 26}, - [1832] = {.lex_state = 26}, - [1833] = {.lex_state = 26}, - [1834] = {.lex_state = 26}, - [1835] = {.lex_state = 26}, - [1836] = {.lex_state = 26}, - [1837] = {.lex_state = 26}, - [1838] = {.lex_state = 26}, - [1839] = {.lex_state = 26}, - [1840] = {.lex_state = 26}, - [1841] = {.lex_state = 26}, - [1842] = {.lex_state = 26}, - [1843] = {.lex_state = 26}, - [1844] = {.lex_state = 26}, - [1845] = {.lex_state = 26}, - [1846] = {.lex_state = 26}, - [1847] = {.lex_state = 26}, - [1848] = {.lex_state = 26}, - [1849] = {.lex_state = 26}, - [1850] = {.lex_state = 46}, - [1851] = {.lex_state = 46}, - [1852] = {.lex_state = 26}, - [1853] = {.lex_state = 26}, - [1854] = {.lex_state = 26}, - [1855] = {.lex_state = 26}, - [1856] = {.lex_state = 26}, - [1857] = {.lex_state = 61}, - [1858] = {.lex_state = 26}, - [1859] = {.lex_state = 26}, - [1860] = {.lex_state = 26}, - [1861] = {.lex_state = 26}, - [1862] = {.lex_state = 26}, - [1863] = {.lex_state = 26}, - [1864] = {.lex_state = 26}, - [1865] = {.lex_state = 26}, - [1866] = {.lex_state = 26}, - [1867] = {.lex_state = 26}, - [1868] = {.lex_state = 26}, - [1869] = {.lex_state = 43}, - [1870] = {.lex_state = 26}, - [1871] = {.lex_state = 26}, - [1872] = {.lex_state = 26}, - [1873] = {.lex_state = 26}, - [1874] = {.lex_state = 26}, - [1875] = {.lex_state = 59}, - [1876] = {.lex_state = 26}, - [1877] = {.lex_state = 26}, - [1878] = {.lex_state = 26}, - [1879] = {.lex_state = 26}, - [1880] = {.lex_state = 26}, - [1881] = {.lex_state = 26}, - [1882] = {.lex_state = 26}, - [1883] = {.lex_state = 26}, - [1884] = {.lex_state = 26}, - [1885] = {.lex_state = 26}, - [1886] = {.lex_state = 26}, - [1887] = {.lex_state = 69}, - [1888] = {.lex_state = 26}, - [1889] = {.lex_state = 26}, - [1890] = {.lex_state = 26}, - [1891] = {.lex_state = 69}, - [1892] = {.lex_state = 59}, - [1893] = {.lex_state = 26}, - [1894] = {.lex_state = 26}, - [1895] = {.lex_state = 26}, - [1896] = {.lex_state = 26}, - [1897] = {.lex_state = 26}, - [1898] = {.lex_state = 61}, - [1899] = {.lex_state = 69}, - [1900] = {.lex_state = 69}, - [1901] = {.lex_state = 26}, - [1902] = {.lex_state = 26}, - [1903] = {.lex_state = 69}, - [1904] = {.lex_state = 26}, - [1905] = {.lex_state = 26}, - [1906] = {.lex_state = 69}, - [1907] = {.lex_state = 26}, - [1908] = {.lex_state = 43}, - [1909] = {.lex_state = 26}, - [1910] = {.lex_state = 26}, - [1911] = {.lex_state = 26}, - [1912] = {.lex_state = 71}, - [1913] = {.lex_state = 26}, - [1914] = {.lex_state = 26}, - [1915] = {.lex_state = 26}, - [1916] = {.lex_state = 69}, - [1917] = {.lex_state = 69}, - [1918] = {.lex_state = 69}, - [1919] = {.lex_state = 69}, - [1920] = {.lex_state = 71}, - [1921] = {.lex_state = 69}, - [1922] = {.lex_state = 71}, - [1923] = {.lex_state = 71}, - [1924] = {.lex_state = 69}, - [1925] = {.lex_state = 71}, - [1926] = {.lex_state = 69}, - [1927] = {.lex_state = 69}, - [1928] = {.lex_state = 71}, - [1929] = {.lex_state = 69}, - [1930] = {.lex_state = 69}, - [1931] = {.lex_state = 69}, - [1932] = {.lex_state = 71}, - [1933] = {.lex_state = 71}, - [1934] = {.lex_state = 69}, - [1935] = {.lex_state = 69}, - [1936] = {.lex_state = 71}, - [1937] = {.lex_state = 69}, - [1938] = {.lex_state = 71}, - [1939] = {.lex_state = 30}, - [1940] = {.lex_state = 69}, - [1941] = {.lex_state = 69}, - [1942] = {.lex_state = 71}, - [1943] = {.lex_state = 69}, - [1944] = {.lex_state = 49}, - [1945] = {.lex_state = 69}, - [1946] = {.lex_state = 71}, - [1947] = {.lex_state = 69}, - [1948] = {.lex_state = 69}, - [1949] = {.lex_state = 49}, - [1950] = {.lex_state = 69}, - [1951] = {.lex_state = 69}, - [1952] = {.lex_state = 71}, - [1953] = {.lex_state = 71}, - [1954] = {.lex_state = 71}, - [1955] = {.lex_state = 69}, - [1956] = {.lex_state = 71}, - [1957] = {.lex_state = 69}, - [1958] = {.lex_state = 71}, - [1959] = {.lex_state = 69}, - [1960] = {.lex_state = 69}, - [1961] = {.lex_state = 69}, - [1962] = {.lex_state = 69}, - [1963] = {.lex_state = 69}, - [1964] = {.lex_state = 69}, - [1965] = {.lex_state = 69}, - [1966] = {.lex_state = 71}, - [1967] = {.lex_state = 71}, - [1968] = {.lex_state = 69}, - [1969] = {.lex_state = 69}, - [1970] = {.lex_state = 69}, - [1971] = {.lex_state = 71}, - [1972] = {.lex_state = 69}, - [1973] = {.lex_state = 69}, - [1974] = {.lex_state = 71}, - [1975] = {.lex_state = 69}, - [1976] = {.lex_state = 69}, - [1977] = {.lex_state = 69}, - [1978] = {.lex_state = 69}, - [1979] = {.lex_state = 71}, - [1980] = {.lex_state = 69}, - [1981] = {.lex_state = 69}, - [1982] = {.lex_state = 71}, - [1983] = {.lex_state = 71}, - [1984] = {.lex_state = 69}, - [1985] = {.lex_state = 69}, - [1986] = {.lex_state = 69}, - [1987] = {.lex_state = 71}, - [1988] = {.lex_state = 69}, - [1989] = {.lex_state = 69}, - [1990] = {.lex_state = 69}, - [1991] = {.lex_state = 71}, - [1992] = {.lex_state = 69}, - [1993] = {.lex_state = 69}, - [1994] = {.lex_state = 71}, - [1995] = {.lex_state = 71}, - [1996] = {.lex_state = 71}, - [1997] = {.lex_state = 69}, - [1998] = {.lex_state = 71}, - [1999] = {.lex_state = 69}, - [2000] = {.lex_state = 71}, - [2001] = {.lex_state = 71}, - [2002] = {.lex_state = 69}, - [2003] = {.lex_state = 71}, - [2004] = {.lex_state = 69}, - [2005] = {.lex_state = 71}, - [2006] = {.lex_state = 71}, - [2007] = {.lex_state = 71}, - [2008] = {.lex_state = 69}, - [2009] = {.lex_state = 69}, - [2010] = {.lex_state = 71}, - [2011] = {.lex_state = 69}, - [2012] = {.lex_state = 69}, - [2013] = {.lex_state = 71}, - [2014] = {.lex_state = 69}, - [2015] = {.lex_state = 69}, - [2016] = {.lex_state = 49}, - [2017] = {.lex_state = 69}, - [2018] = {.lex_state = 71}, - [2019] = {.lex_state = 69}, - [2020] = {.lex_state = 71}, - [2021] = {.lex_state = 69}, - [2022] = {.lex_state = 69}, - [2023] = {.lex_state = 69}, - [2024] = {.lex_state = 69}, - [2025] = {.lex_state = 71}, - [2026] = {.lex_state = 69}, - [2027] = {.lex_state = 69}, - [2028] = {.lex_state = 71}, - [2029] = {.lex_state = 71}, - [2030] = {.lex_state = 71}, - [2031] = {.lex_state = 71}, - [2032] = {.lex_state = 69}, - [2033] = {.lex_state = 69}, - [2034] = {.lex_state = 71}, - [2035] = {.lex_state = 69}, - [2036] = {.lex_state = 71}, - [2037] = {.lex_state = 71}, - [2038] = {.lex_state = 71}, - [2039] = {.lex_state = 71}, - [2040] = {.lex_state = 69}, - [2041] = {.lex_state = 71}, - [2042] = {.lex_state = 69}, - [2043] = {.lex_state = 71}, - [2044] = {.lex_state = 69}, - [2045] = {.lex_state = 69}, - [2046] = {.lex_state = 69}, - [2047] = {.lex_state = 69}, - [2048] = {.lex_state = 69}, - [2049] = {.lex_state = 71}, - [2050] = {.lex_state = 69}, - [2051] = {.lex_state = 69}, - [2052] = {.lex_state = 69}, - [2053] = {.lex_state = 69}, - [2054] = {.lex_state = 71}, - [2055] = {.lex_state = 69}, - [2056] = {.lex_state = 69}, - [2057] = {.lex_state = 71}, - [2058] = {.lex_state = 69}, - [2059] = {.lex_state = 69}, - [2060] = {.lex_state = 69}, - [2061] = {.lex_state = 71}, - [2062] = {.lex_state = 71}, - [2063] = {.lex_state = 71}, - [2064] = {.lex_state = 69}, - [2065] = {.lex_state = 71}, - [2066] = {.lex_state = 71}, - [2067] = {.lex_state = 71}, - [2068] = {.lex_state = 71}, - [2069] = {.lex_state = 71}, - [2070] = {.lex_state = 69}, - [2071] = {.lex_state = 30}, - [2072] = {.lex_state = 69}, - [2073] = {.lex_state = 71}, - [2074] = {.lex_state = 71}, - [2075] = {.lex_state = 71}, - [2076] = {.lex_state = 71}, - [2077] = {.lex_state = 69}, - [2078] = {.lex_state = 69}, - [2079] = {.lex_state = 71}, - [2080] = {.lex_state = 69}, - [2081] = {.lex_state = 71}, - [2082] = {.lex_state = 71}, - [2083] = {.lex_state = 71}, - [2084] = {.lex_state = 69}, - [2085] = {.lex_state = 71}, - [2086] = {.lex_state = 71}, - [2087] = {.lex_state = 69}, - [2088] = {.lex_state = 69}, - [2089] = {.lex_state = 71}, - [2090] = {.lex_state = 69}, - [2091] = {.lex_state = 69}, - [2092] = {.lex_state = 71}, - [2093] = {.lex_state = 49}, - [2094] = {.lex_state = 69}, - [2095] = {.lex_state = 71}, - [2096] = {.lex_state = 71}, - [2097] = {.lex_state = 69}, - [2098] = {.lex_state = 69}, - [2099] = {.lex_state = 69}, - [2100] = {.lex_state = 71}, - [2101] = {.lex_state = 71}, - [2102] = {.lex_state = 69}, - [2103] = {.lex_state = 71}, - [2104] = {.lex_state = 71}, - [2105] = {.lex_state = 69}, - [2106] = {.lex_state = 69}, - [2107] = {.lex_state = 69}, - [2108] = {.lex_state = 69}, - [2109] = {.lex_state = 71}, - [2110] = {.lex_state = 71}, - [2111] = {.lex_state = 69}, - [2112] = {.lex_state = 71}, - [2113] = {.lex_state = 71}, - [2114] = {.lex_state = 71}, - [2115] = {.lex_state = 71}, - [2116] = {.lex_state = 71}, - [2117] = {.lex_state = 71}, - [2118] = {.lex_state = 71}, - [2119] = {.lex_state = 71}, - [2120] = {.lex_state = 69}, - [2121] = {.lex_state = 71}, - [2122] = {.lex_state = 69}, - [2123] = {.lex_state = 71}, - [2124] = {.lex_state = 71}, - [2125] = {.lex_state = 71}, - [2126] = {.lex_state = 69}, - [2127] = {.lex_state = 69}, - [2128] = {.lex_state = 71}, - [2129] = {.lex_state = 69}, - [2130] = {.lex_state = 69}, - [2131] = {.lex_state = 71}, - [2132] = {.lex_state = 69}, - [2133] = {.lex_state = 71}, - [2134] = {.lex_state = 71}, - [2135] = {.lex_state = 71}, - [2136] = {.lex_state = 71}, - [2137] = {.lex_state = 69}, - [2138] = {.lex_state = 71}, - [2139] = {.lex_state = 71}, - [2140] = {.lex_state = 71}, - [2141] = {.lex_state = 71}, - [2142] = {.lex_state = 71}, - [2143] = {.lex_state = 49}, - [2144] = {.lex_state = 15}, - [2145] = {.lex_state = 69}, - [2146] = {.lex_state = 15}, - [2147] = {.lex_state = 15}, - [2148] = {.lex_state = 15}, - [2149] = {.lex_state = 15}, - [2150] = {.lex_state = 81}, - [2151] = {.lex_state = 15}, - [2152] = {.lex_state = 81}, - [2153] = {.lex_state = 81}, - [2154] = {.lex_state = 15}, - [2155] = {.lex_state = 81}, - [2156] = {.lex_state = 15}, - [2157] = {.lex_state = 15}, - [2158] = {.lex_state = 22}, - [2159] = {.lex_state = 15}, - [2160] = {.lex_state = 22}, - [2161] = {.lex_state = 81}, - [2162] = {.lex_state = 81}, - [2163] = {.lex_state = 81}, - [2164] = {.lex_state = 81}, - [2165] = {.lex_state = 22}, - [2166] = {.lex_state = 22}, - [2167] = {.lex_state = 15}, - [2168] = {.lex_state = 15}, - [2169] = {.lex_state = 15}, - [2170] = {.lex_state = 15}, - [2171] = {.lex_state = 15}, - [2172] = {.lex_state = 15}, - [2173] = {.lex_state = 15}, - [2174] = {.lex_state = 31}, - [2175] = {.lex_state = 15}, - [2176] = {.lex_state = 15}, - [2177] = {.lex_state = 15}, - [2178] = {.lex_state = 15}, - [2179] = {.lex_state = 15}, - [2180] = {.lex_state = 81}, - [2181] = {.lex_state = 15}, - [2182] = {.lex_state = 15}, - [2183] = {.lex_state = 15}, - [2184] = {.lex_state = 15}, - [2185] = {.lex_state = 15}, - [2186] = {.lex_state = 15}, - [2187] = {.lex_state = 73}, - [2188] = {.lex_state = 15}, - [2189] = {.lex_state = 15}, - [2190] = {.lex_state = 15}, - [2191] = {.lex_state = 15}, - [2192] = {.lex_state = 53}, - [2193] = {.lex_state = 15}, - [2194] = {.lex_state = 15}, - [2195] = {.lex_state = 15}, - [2196] = {.lex_state = 15}, - [2197] = {.lex_state = 15}, - [2198] = {.lex_state = 15}, - [2199] = {.lex_state = 15}, - [2200] = {.lex_state = 15}, - [2201] = {.lex_state = 15}, - [2202] = {.lex_state = 15}, - [2203] = {.lex_state = 15}, - [2204] = {.lex_state = 73}, - [2205] = {.lex_state = 15}, - [2206] = {.lex_state = 15}, - [2207] = {.lex_state = 15}, - [2208] = {.lex_state = 15}, - [2209] = {.lex_state = 15}, - [2210] = {.lex_state = 15}, - [2211] = {.lex_state = 15}, - [2212] = {.lex_state = 15}, - [2213] = {.lex_state = 15}, - [2214] = {.lex_state = 53}, - [2215] = {.lex_state = 53}, - [2216] = {.lex_state = 53}, - [2217] = {.lex_state = 53}, - [2218] = {.lex_state = 81}, - [2219] = {.lex_state = 15}, - [2220] = {.lex_state = 81}, - [2221] = {.lex_state = 15}, - [2222] = {.lex_state = 15}, - [2223] = {.lex_state = 15}, - [2224] = {.lex_state = 15}, - [2225] = {.lex_state = 73}, - [2226] = {.lex_state = 15}, - [2227] = {.lex_state = 15}, - [2228] = {.lex_state = 15}, - [2229] = {.lex_state = 15}, - [2230] = {.lex_state = 15}, - [2231] = {.lex_state = 15}, - [2232] = {.lex_state = 15}, - [2233] = {.lex_state = 15}, - [2234] = {.lex_state = 15}, - [2235] = {.lex_state = 15}, - [2236] = {.lex_state = 15}, - [2237] = {.lex_state = 15}, - [2238] = {.lex_state = 15}, - [2239] = {.lex_state = 15}, - [2240] = {.lex_state = 15}, - [2241] = {.lex_state = 15}, - [2242] = {.lex_state = 15}, - [2243] = {.lex_state = 15}, - [2244] = {.lex_state = 15}, - [2245] = {.lex_state = 15}, - [2246] = {.lex_state = 15}, - [2247] = {.lex_state = 15}, - [2248] = {.lex_state = 15}, - [2249] = {.lex_state = 15}, - [2250] = {.lex_state = 15}, - [2251] = {.lex_state = 15}, - [2252] = {.lex_state = 15}, - [2253] = {.lex_state = 15}, - [2254] = {.lex_state = 15}, - [2255] = {.lex_state = 15}, - [2256] = {.lex_state = 15}, - [2257] = {.lex_state = 15}, - [2258] = {.lex_state = 81}, - [2259] = {.lex_state = 15}, - [2260] = {.lex_state = 15}, - [2261] = {.lex_state = 15}, - [2262] = {.lex_state = 15}, - [2263] = {.lex_state = 15}, - [2264] = {.lex_state = 15}, - [2265] = {.lex_state = 15}, - [2266] = {.lex_state = 15}, - [2267] = {.lex_state = 15}, - [2268] = {.lex_state = 15}, - [2269] = {.lex_state = 15}, - [2270] = {.lex_state = 15}, - [2271] = {.lex_state = 15}, - [2272] = {.lex_state = 15}, - [2273] = {.lex_state = 15}, - [2274] = {.lex_state = 15}, - [2275] = {.lex_state = 15}, - [2276] = {.lex_state = 15}, - [2277] = {.lex_state = 15}, - [2278] = {.lex_state = 15}, - [2279] = {.lex_state = 15}, - [2280] = {.lex_state = 15}, - [2281] = {.lex_state = 15}, - [2282] = {.lex_state = 15}, - [2283] = {.lex_state = 15}, - [2284] = {.lex_state = 15}, - [2285] = {.lex_state = 15}, - [2286] = {.lex_state = 15}, - [2287] = {.lex_state = 81}, - [2288] = {.lex_state = 15}, - [2289] = {.lex_state = 15}, - [2290] = {.lex_state = 15}, - [2291] = {.lex_state = 15}, - [2292] = {.lex_state = 63}, - [2293] = {.lex_state = 15}, - [2294] = {.lex_state = 15}, - [2295] = {.lex_state = 15}, - [2296] = {.lex_state = 15}, - [2297] = {.lex_state = 63}, - [2298] = {.lex_state = 15}, - [2299] = {.lex_state = 50}, - [2300] = {.lex_state = 50}, - [2301] = {.lex_state = 81}, - [2302] = {.lex_state = 15}, - [2303] = {.lex_state = 15}, - [2304] = {.lex_state = 28}, - [2305] = {.lex_state = 28}, - [2306] = {.lex_state = 73}, - [2307] = {.lex_state = 73}, - [2308] = {.lex_state = 28}, - [2309] = {.lex_state = 28}, - [2310] = {.lex_state = 28}, - [2311] = {.lex_state = 28}, - [2312] = {.lex_state = 28}, - [2313] = {.lex_state = 28}, - [2314] = {.lex_state = 28}, - [2315] = {.lex_state = 28}, - [2316] = {.lex_state = 28}, - [2317] = {.lex_state = 15}, - [2318] = {.lex_state = 73}, - [2319] = {.lex_state = 28}, - [2320] = {.lex_state = 73}, - [2321] = {.lex_state = 73}, - [2322] = {.lex_state = 73}, - [2323] = {.lex_state = 73}, - [2324] = {.lex_state = 73}, - [2325] = {.lex_state = 73}, - [2326] = {.lex_state = 73}, - [2327] = {.lex_state = 73}, - [2328] = {.lex_state = 28}, - [2329] = {.lex_state = 28}, - [2330] = {.lex_state = 73}, - [2331] = {.lex_state = 15}, - [2332] = {.lex_state = 15}, - [2333] = {.lex_state = 73}, - [2334] = {.lex_state = 73}, - [2335] = {.lex_state = 73}, - [2336] = {.lex_state = 73}, - [2337] = {.lex_state = 22}, - [2338] = {.lex_state = 73}, - [2339] = {.lex_state = 73}, - [2340] = {.lex_state = 73}, - [2341] = {.lex_state = 73}, - [2342] = {.lex_state = 73}, - [2343] = {.lex_state = 73}, - [2344] = {.lex_state = 73}, - [2345] = {.lex_state = 73}, - [2346] = {.lex_state = 73}, - [2347] = {.lex_state = 73}, - [2348] = {.lex_state = 73}, - [2349] = {.lex_state = 73}, - [2350] = {.lex_state = 73}, - [2351] = {.lex_state = 73}, - [2352] = {.lex_state = 73}, - [2353] = {.lex_state = 73}, - [2354] = {.lex_state = 73}, - [2355] = {.lex_state = 73}, - [2356] = {.lex_state = 73}, - [2357] = {.lex_state = 73}, - [2358] = {.lex_state = 28}, - [2359] = {.lex_state = 73}, - [2360] = {.lex_state = 73}, - [2361] = {.lex_state = 73}, - [2362] = {.lex_state = 73}, - [2363] = {.lex_state = 73}, - [2364] = {.lex_state = 73}, - [2365] = {.lex_state = 28}, - [2366] = {.lex_state = 73}, - [2367] = {.lex_state = 73}, - [2368] = {.lex_state = 22}, - [2369] = {.lex_state = 73}, - [2370] = {.lex_state = 73}, - [2371] = {.lex_state = 73}, - [2372] = {.lex_state = 73}, - [2373] = {.lex_state = 15}, - [2374] = {.lex_state = 73}, - [2375] = {.lex_state = 73}, - [2376] = {.lex_state = 73}, - [2377] = {.lex_state = 73}, - [2378] = {.lex_state = 73}, - [2379] = {.lex_state = 73}, - [2380] = {.lex_state = 73}, - [2381] = {.lex_state = 73}, - [2382] = {.lex_state = 73}, - [2383] = {.lex_state = 73}, - [2384] = {.lex_state = 73}, - [2385] = {.lex_state = 73}, - [2386] = {.lex_state = 73}, - [2387] = {.lex_state = 73}, - [2388] = {.lex_state = 28}, - [2389] = {.lex_state = 73}, - [2390] = {.lex_state = 73}, - [2391] = {.lex_state = 73}, - [2392] = {.lex_state = 73}, - [2393] = {.lex_state = 73}, - [2394] = {.lex_state = 73}, - [2395] = {.lex_state = 73}, - [2396] = {.lex_state = 73}, - [2397] = {.lex_state = 73}, - [2398] = {.lex_state = 73}, - [2399] = {.lex_state = 73}, - [2400] = {.lex_state = 73}, - [2401] = {.lex_state = 73}, - [2402] = {.lex_state = 73}, - [2403] = {.lex_state = 73}, - [2404] = {.lex_state = 73}, - [2405] = {.lex_state = 73}, - [2406] = {.lex_state = 15}, - [2407] = {.lex_state = 73}, - [2408] = {.lex_state = 73}, - [2409] = {.lex_state = 73}, - [2410] = {.lex_state = 73}, - [2411] = {.lex_state = 73}, - [2412] = {.lex_state = 73}, - [2413] = {.lex_state = 73}, - [2414] = {.lex_state = 73}, - [2415] = {.lex_state = 73}, - [2416] = {.lex_state = 73}, - [2417] = {.lex_state = 73}, - [2418] = {.lex_state = 73}, - [2419] = {.lex_state = 73}, - [2420] = {.lex_state = 73}, - [2421] = {.lex_state = 73}, - [2422] = {.lex_state = 73}, - [2423] = {.lex_state = 73}, - [2424] = {.lex_state = 73}, - [2425] = {.lex_state = 73}, - [2426] = {.lex_state = 73}, - [2427] = {.lex_state = 73}, - [2428] = {.lex_state = 73}, - [2429] = {.lex_state = 73}, - [2430] = {.lex_state = 73}, - [2431] = {.lex_state = 73}, - [2432] = {.lex_state = 73}, - [2433] = {.lex_state = 28}, - [2434] = {.lex_state = 73}, - [2435] = {.lex_state = 73}, - [2436] = {.lex_state = 73}, - [2437] = {.lex_state = 73}, - [2438] = {.lex_state = 73}, - [2439] = {.lex_state = 73}, - [2440] = {.lex_state = 73}, - [2441] = {.lex_state = 73}, - [2442] = {.lex_state = 73}, - [2443] = {.lex_state = 28}, - [2444] = {.lex_state = 73}, - [2445] = {.lex_state = 28}, - [2446] = {.lex_state = 73}, - [2447] = {.lex_state = 73}, - [2448] = {.lex_state = 73}, - [2449] = {.lex_state = 73}, - [2450] = {.lex_state = 28}, - [2451] = {.lex_state = 28}, - [2452] = {.lex_state = 28}, - [2453] = {.lex_state = 73}, - [2454] = {.lex_state = 73}, - [2455] = {.lex_state = 28}, - [2456] = {.lex_state = 28}, - [2457] = {.lex_state = 28}, - [2458] = {.lex_state = 28}, - [2459] = {.lex_state = 73}, - [2460] = {.lex_state = 28}, - [2461] = {.lex_state = 28}, - [2462] = {.lex_state = 73}, - [2463] = {.lex_state = 73}, - [2464] = {.lex_state = 73}, - [2465] = {.lex_state = 28}, - [2466] = {.lex_state = 28}, - [2467] = {.lex_state = 28}, - [2468] = {.lex_state = 28}, - [2469] = {.lex_state = 28}, - [2470] = {.lex_state = 28}, - [2471] = {.lex_state = 28}, - [2472] = {.lex_state = 28}, - [2473] = {.lex_state = 28}, - [2474] = {.lex_state = 28}, - [2475] = {.lex_state = 28}, - [2476] = {.lex_state = 28}, - [2477] = {.lex_state = 28}, - [2478] = {.lex_state = 28}, - [2479] = {.lex_state = 28}, - [2480] = {.lex_state = 75}, - [2481] = {.lex_state = 28}, - [2482] = {.lex_state = 28}, - [2483] = {.lex_state = 28}, - [2484] = {.lex_state = 75}, - [2485] = {.lex_state = 28}, - [2486] = {.lex_state = 28}, - [2487] = {.lex_state = 28}, - [2488] = {.lex_state = 28}, - [2489] = {.lex_state = 75}, - [2490] = {.lex_state = 28}, - [2491] = {.lex_state = 28}, - [2492] = {.lex_state = 28}, - [2493] = {.lex_state = 75}, - [2494] = {.lex_state = 75}, - [2495] = {.lex_state = 28}, - [2496] = {.lex_state = 28}, - [2497] = {.lex_state = 28}, - [2498] = {.lex_state = 75}, - [2499] = {.lex_state = 28}, - [2500] = {.lex_state = 28}, - [2501] = {.lex_state = 75}, - [2502] = {.lex_state = 28}, - [2503] = {.lex_state = 28}, - [2504] = {.lex_state = 28}, - [2505] = {.lex_state = 28}, - [2506] = {.lex_state = 28}, - [2507] = {.lex_state = 28}, - [2508] = {.lex_state = 28}, - [2509] = {.lex_state = 28}, - [2510] = {.lex_state = 33}, - [2511] = {.lex_state = 28}, - [2512] = {.lex_state = 28}, - [2513] = {.lex_state = 33}, - [2514] = {.lex_state = 33}, - [2515] = {.lex_state = 28}, - [2516] = {.lex_state = 75}, - [2517] = {.lex_state = 75}, - [2518] = {.lex_state = 28}, - [2519] = {.lex_state = 28}, - [2520] = {.lex_state = 28}, - [2521] = {.lex_state = 75}, - [2522] = {.lex_state = 28}, - [2523] = {.lex_state = 28}, - [2524] = {.lex_state = 28}, - [2525] = {.lex_state = 73}, - [2526] = {.lex_state = 28}, - [2527] = {.lex_state = 28}, - [2528] = {.lex_state = 28}, - [2529] = {.lex_state = 28}, - [2530] = {.lex_state = 28}, - [2531] = {.lex_state = 28}, - [2532] = {.lex_state = 28}, - [2533] = {.lex_state = 28}, - [2534] = {.lex_state = 28}, - [2535] = {.lex_state = 28}, - [2536] = {.lex_state = 28}, - [2537] = {.lex_state = 28}, - [2538] = {.lex_state = 28}, - [2539] = {.lex_state = 28}, - [2540] = {.lex_state = 28}, - [2541] = {.lex_state = 28}, - [2542] = {.lex_state = 28}, - [2543] = {.lex_state = 28}, - [2544] = {.lex_state = 28}, - [2545] = {.lex_state = 28}, - [2546] = {.lex_state = 28}, - [2547] = {.lex_state = 28}, - [2548] = {.lex_state = 28}, - [2549] = {.lex_state = 28}, - [2550] = {.lex_state = 28}, - [2551] = {.lex_state = 28}, - [2552] = {.lex_state = 73}, - [2553] = {.lex_state = 28}, - [2554] = {.lex_state = 75}, - [2555] = {.lex_state = 28}, - [2556] = {.lex_state = 28}, - [2557] = {.lex_state = 28}, - [2558] = {.lex_state = 28}, - [2559] = {.lex_state = 75}, - [2560] = {.lex_state = 28}, - [2561] = {.lex_state = 31}, - [2562] = {.lex_state = 28}, - [2563] = {.lex_state = 28}, - [2564] = {.lex_state = 28}, - [2565] = {.lex_state = 28}, - [2566] = {.lex_state = 28}, - [2567] = {.lex_state = 28}, - [2568] = {.lex_state = 28}, - [2569] = {.lex_state = 28}, - [2570] = {.lex_state = 28}, - [2571] = {.lex_state = 28}, - [2572] = {.lex_state = 28}, - [2573] = {.lex_state = 28}, - [2574] = {.lex_state = 28}, - [2575] = {.lex_state = 28}, - [2576] = {.lex_state = 28}, - [2577] = {.lex_state = 28}, - [2578] = {.lex_state = 28}, - [2579] = {.lex_state = 28}, - [2580] = {.lex_state = 28}, - [2581] = {.lex_state = 28}, - [2582] = {.lex_state = 28}, - [2583] = {.lex_state = 28}, - [2584] = {.lex_state = 28}, - [2585] = {.lex_state = 28}, - [2586] = {.lex_state = 28}, - [2587] = {.lex_state = 28}, - [2588] = {.lex_state = 28}, - [2589] = {.lex_state = 28}, - [2590] = {.lex_state = 28}, - [2591] = {.lex_state = 28}, - [2592] = {.lex_state = 28}, - [2593] = {.lex_state = 73}, - [2594] = {.lex_state = 73}, - [2595] = {.lex_state = 75}, - [2596] = {.lex_state = 75}, - [2597] = {.lex_state = 73}, - [2598] = {.lex_state = 75}, - [2599] = {.lex_state = 75}, - [2600] = {.lex_state = 75}, - [2601] = {.lex_state = 75}, - [2602] = {.lex_state = 75}, - [2603] = {.lex_state = 75}, - [2604] = {.lex_state = 65}, - [2605] = {.lex_state = 73}, - [2606] = {.lex_state = 65}, - [2607] = {.lex_state = 75}, - [2608] = {.lex_state = 75}, - [2609] = {.lex_state = 73}, - [2610] = {.lex_state = 73}, - [2611] = {.lex_state = 55}, - [2612] = {.lex_state = 75}, - [2613] = {.lex_state = 55}, - [2614] = {.lex_state = 73}, - [2615] = {.lex_state = 73}, - [2616] = {.lex_state = 73}, - [2617] = {.lex_state = 73}, - [2618] = {.lex_state = 73}, - [2619] = {.lex_state = 73}, - [2620] = {.lex_state = 73}, - [2621] = {.lex_state = 73}, - [2622] = {.lex_state = 73}, - [2623] = {.lex_state = 73}, - [2624] = {.lex_state = 73}, - [2625] = {.lex_state = 73}, - [2626] = {.lex_state = 73}, - [2627] = {.lex_state = 75}, - [2628] = {.lex_state = 73}, - [2629] = {.lex_state = 77}, - [2630] = {.lex_state = 73}, - [2631] = {.lex_state = 73}, - [2632] = {.lex_state = 73}, - [2633] = {.lex_state = 73}, - [2634] = {.lex_state = 73}, - [2635] = {.lex_state = 75}, - [2636] = {.lex_state = 73}, - [2637] = {.lex_state = 73}, - [2638] = {.lex_state = 73}, - [2639] = {.lex_state = 73}, - [2640] = {.lex_state = 73}, - [2641] = {.lex_state = 73}, - [2642] = {.lex_state = 73}, - [2643] = {.lex_state = 73}, - [2644] = {.lex_state = 73}, - [2645] = {.lex_state = 73}, - [2646] = {.lex_state = 73}, - [2647] = {.lex_state = 73}, - [2648] = {.lex_state = 73}, - [2649] = {.lex_state = 75}, - [2650] = {.lex_state = 73}, - [2651] = {.lex_state = 75}, - [2652] = {.lex_state = 73}, - [2653] = {.lex_state = 73}, - [2654] = {.lex_state = 73}, - [2655] = {.lex_state = 75}, - [2656] = {.lex_state = 73}, - [2657] = {.lex_state = 75}, - [2658] = {.lex_state = 73}, - [2659] = {.lex_state = 73}, - [2660] = {.lex_state = 73}, - [2661] = {.lex_state = 73}, - [2662] = {.lex_state = 73}, - [2663] = {.lex_state = 73}, - [2664] = {.lex_state = 75}, - [2665] = {.lex_state = 73}, - [2666] = {.lex_state = 73}, - [2667] = {.lex_state = 75}, - [2668] = {.lex_state = 73}, - [2669] = {.lex_state = 75}, - [2670] = {.lex_state = 75}, - [2671] = {.lex_state = 75}, - [2672] = {.lex_state = 75}, - [2673] = {.lex_state = 73}, - [2674] = {.lex_state = 75}, - [2675] = {.lex_state = 73}, - [2676] = {.lex_state = 85}, - [2677] = {.lex_state = 73}, - [2678] = {.lex_state = 73}, - [2679] = {.lex_state = 85}, - [2680] = {.lex_state = 73}, - [2681] = {.lex_state = 73}, - [2682] = {.lex_state = 75}, - [2683] = {.lex_state = 77}, - [2684] = {.lex_state = 75}, - [2685] = {.lex_state = 73}, - [2686] = {.lex_state = 75}, - [2687] = {.lex_state = 75}, - [2688] = {.lex_state = 73}, - [2689] = {.lex_state = 75}, - [2690] = {.lex_state = 75}, - [2691] = {.lex_state = 73}, - [2692] = {.lex_state = 75}, - [2693] = {.lex_state = 75}, - [2694] = {.lex_state = 75}, - [2695] = {.lex_state = 73}, - [2696] = {.lex_state = 75}, - [2697] = {.lex_state = 75}, - [2698] = {.lex_state = 75}, - [2699] = {.lex_state = 75}, - [2700] = {.lex_state = 75}, - [2701] = {.lex_state = 75}, - [2702] = {.lex_state = 73}, - [2703] = {.lex_state = 73}, - [2704] = {.lex_state = 75}, - [2705] = {.lex_state = 75}, - [2706] = {.lex_state = 73}, - [2707] = {.lex_state = 73}, - [2708] = {.lex_state = 75}, - [2709] = {.lex_state = 75}, - [2710] = {.lex_state = 75}, - [2711] = {.lex_state = 75}, - [2712] = {.lex_state = 75}, - [2713] = {.lex_state = 75}, - [2714] = {.lex_state = 75}, - [2715] = {.lex_state = 85}, - [2716] = {.lex_state = 75}, - [2717] = {.lex_state = 75}, - [2718] = {.lex_state = 75}, - [2719] = {.lex_state = 73}, - [2720] = {.lex_state = 75}, - [2721] = {.lex_state = 75}, - [2722] = {.lex_state = 75}, - [2723] = {.lex_state = 75}, - [2724] = {.lex_state = 75}, - [2725] = {.lex_state = 75}, - [2726] = {.lex_state = 75}, - [2727] = {.lex_state = 75}, - [2728] = {.lex_state = 73}, - [2729] = {.lex_state = 75}, - [2730] = {.lex_state = 73}, - [2731] = {.lex_state = 75}, - [2732] = {.lex_state = 57}, - [2733] = {.lex_state = 57}, - [2734] = {.lex_state = 75}, - [2735] = {.lex_state = 73}, - [2736] = {.lex_state = 73}, - [2737] = {.lex_state = 75}, - [2738] = {.lex_state = 75}, - [2739] = {.lex_state = 75}, - [2740] = {.lex_state = 75}, - [2741] = {.lex_state = 75}, - [2742] = {.lex_state = 85}, - [2743] = {.lex_state = 73}, - [2744] = {.lex_state = 75}, - [2745] = {.lex_state = 85}, - [2746] = {.lex_state = 75}, - [2747] = {.lex_state = 75}, - [2748] = {.lex_state = 75}, - [2749] = {.lex_state = 75}, - [2750] = {.lex_state = 75}, - [2751] = {.lex_state = 73}, - [2752] = {.lex_state = 75}, - [2753] = {.lex_state = 85}, - [2754] = {.lex_state = 75}, - [2755] = {.lex_state = 85}, - [2756] = {.lex_state = 67}, - [2757] = {.lex_state = 73}, - [2758] = {.lex_state = 67}, - [2759] = {.lex_state = 75}, - [2760] = {.lex_state = 75}, - [2761] = {.lex_state = 75}, - [2762] = {.lex_state = 73}, - [2763] = {.lex_state = 73}, - [2764] = {.lex_state = 75}, - [2765] = {.lex_state = 75}, - [2766] = {.lex_state = 75}, - [2767] = {.lex_state = 75}, - [2768] = {.lex_state = 75}, - [2769] = {.lex_state = 73}, - [2770] = {.lex_state = 75}, - [2771] = {.lex_state = 75}, - [2772] = {.lex_state = 75}, - [2773] = {.lex_state = 75}, - [2774] = {.lex_state = 75}, - [2775] = {.lex_state = 75}, - [2776] = {.lex_state = 73}, - [2777] = {.lex_state = 73}, - [2778] = {.lex_state = 75}, - [2779] = {.lex_state = 75}, - [2780] = {.lex_state = 75}, - [2781] = {.lex_state = 75}, - [2782] = {.lex_state = 75}, - [2783] = {.lex_state = 73}, - [2784] = {.lex_state = 85}, - [2785] = {.lex_state = 73}, - [2786] = {.lex_state = 77}, - [2787] = {.lex_state = 75}, - [2788] = {.lex_state = 73}, - [2789] = {.lex_state = 75}, - [2790] = {.lex_state = 75}, - [2791] = {.lex_state = 75}, - [2792] = {.lex_state = 73}, - [2793] = {.lex_state = 73}, - [2794] = {.lex_state = 73}, - [2795] = {.lex_state = 75}, - [2796] = {.lex_state = 75}, - [2797] = {.lex_state = 73}, - [2798] = {.lex_state = 73}, - [2799] = {.lex_state = 85}, - [2800] = {.lex_state = 75}, - [2801] = {.lex_state = 75}, - [2802] = {.lex_state = 77}, - [2803] = {.lex_state = 75}, - [2804] = {.lex_state = 75}, - [2805] = {.lex_state = 73}, - [2806] = {.lex_state = 73}, - [2807] = {.lex_state = 75}, - [2808] = {.lex_state = 73}, - [2809] = {.lex_state = 85}, - [2810] = {.lex_state = 73}, - [2811] = {.lex_state = 73}, - [2812] = {.lex_state = 73}, - [2813] = {.lex_state = 73}, - [2814] = {.lex_state = 75}, - [2815] = {.lex_state = 73}, - [2816] = {.lex_state = 73}, - [2817] = {.lex_state = 75}, - [2818] = {.lex_state = 85}, - [2819] = {.lex_state = 73}, - [2820] = {.lex_state = 73}, - [2821] = {.lex_state = 73}, - [2822] = {.lex_state = 75}, - [2823] = {.lex_state = 85}, - [2824] = {.lex_state = 75}, - [2825] = {.lex_state = 75}, - [2826] = {.lex_state = 75}, - [2827] = {.lex_state = 75}, - [2828] = {.lex_state = 85}, - [2829] = {.lex_state = 73}, - [2830] = {.lex_state = 73}, - [2831] = {.lex_state = 73}, - [2832] = {.lex_state = 73}, - [2833] = {.lex_state = 73}, - [2834] = {.lex_state = 73}, - [2835] = {.lex_state = 73}, - [2836] = {.lex_state = 75}, - [2837] = {.lex_state = 75}, - [2838] = {.lex_state = 73}, - [2839] = {.lex_state = 73}, - [2840] = {.lex_state = 73}, - [2841] = {.lex_state = 75}, - [2842] = {.lex_state = 73}, - [2843] = {.lex_state = 75}, - [2844] = {.lex_state = 75}, - [2845] = {.lex_state = 75}, - [2846] = {.lex_state = 75}, - [2847] = {.lex_state = 73}, - [2848] = {.lex_state = 73}, - [2849] = {.lex_state = 85}, - [2850] = {.lex_state = 75}, - [2851] = {.lex_state = 73}, - [2852] = {.lex_state = 85}, - [2853] = {.lex_state = 85}, - [2854] = {.lex_state = 73}, - [2855] = {.lex_state = 73}, - [2856] = {.lex_state = 73}, - [2857] = {.lex_state = 77}, - [2858] = {.lex_state = 73}, - [2859] = {.lex_state = 73}, - [2860] = {.lex_state = 73}, - [2861] = {.lex_state = 73}, - [2862] = {.lex_state = 83}, - [2863] = {.lex_state = 73}, - [2864] = {.lex_state = 73}, - [2865] = {.lex_state = 73}, - [2866] = {.lex_state = 83}, - [2867] = {.lex_state = 77}, - [2868] = {.lex_state = 73}, - [2869] = {.lex_state = 73}, - [2870] = {.lex_state = 73}, - [2871] = {.lex_state = 73}, - [2872] = {.lex_state = 73}, - [2873] = {.lex_state = 73}, - [2874] = {.lex_state = 83}, - [2875] = {.lex_state = 73}, - [2876] = {.lex_state = 83}, - [2877] = {.lex_state = 73}, - [2878] = {.lex_state = 73}, - [2879] = {.lex_state = 73}, - [2880] = {.lex_state = 73}, - [2881] = {.lex_state = 73}, - [2882] = {.lex_state = 73}, - [2883] = {.lex_state = 73}, - [2884] = {.lex_state = 77}, - [2885] = {.lex_state = 77}, - [2886] = {.lex_state = 77}, - [2887] = {.lex_state = 85}, - [2888] = {.lex_state = 85}, - [2889] = {.lex_state = 73}, - [2890] = {.lex_state = 77}, - [2891] = {.lex_state = 77}, - [2892] = {.lex_state = 73}, - [2893] = {.lex_state = 77}, - [2894] = {.lex_state = 77}, - [2895] = {.lex_state = 33}, - [2896] = {.lex_state = 73}, - [2897] = {.lex_state = 77}, - [2898] = {.lex_state = 33}, - [2899] = {.lex_state = 73}, - [2900] = {.lex_state = 73}, - [2901] = {.lex_state = 73}, - [2902] = {.lex_state = 77}, - [2903] = {.lex_state = 77}, - [2904] = {.lex_state = 77}, - [2905] = {.lex_state = 77}, - [2906] = {.lex_state = 73}, - [2907] = {.lex_state = 77}, - [2908] = {.lex_state = 77}, - [2909] = {.lex_state = 77}, - [2910] = {.lex_state = 77}, - [2911] = {.lex_state = 77}, - [2912] = {.lex_state = 33}, - [2913] = {.lex_state = 77}, - [2914] = {.lex_state = 77}, - [2915] = {.lex_state = 77}, - [2916] = {.lex_state = 73}, - [2917] = {.lex_state = 73}, - [2918] = {.lex_state = 77}, - [2919] = {.lex_state = 77}, - [2920] = {.lex_state = 73}, - [2921] = {.lex_state = 77}, - [2922] = {.lex_state = 77}, - [2923] = {.lex_state = 85}, - [2924] = {.lex_state = 85}, - [2925] = {.lex_state = 73}, - [2926] = {.lex_state = 77}, - [2927] = {.lex_state = 77}, - [2928] = {.lex_state = 77}, - [2929] = {.lex_state = 73}, - [2930] = {.lex_state = 73}, - [2931] = {.lex_state = 73}, - [2932] = {.lex_state = 77}, - [2933] = {.lex_state = 77}, - [2934] = {.lex_state = 73}, - [2935] = {.lex_state = 73}, - [2936] = {.lex_state = 73}, - [2937] = {.lex_state = 73}, - [2938] = {.lex_state = 73}, - [2939] = {.lex_state = 73}, - [2940] = {.lex_state = 73}, - [2941] = {.lex_state = 73}, - [2942] = {.lex_state = 73}, - [2943] = {.lex_state = 73}, - [2944] = {.lex_state = 73}, - [2945] = {.lex_state = 73}, - [2946] = {.lex_state = 73}, - [2947] = {.lex_state = 73}, - [2948] = {.lex_state = 73}, - [2949] = {.lex_state = 73}, - [2950] = {.lex_state = 73}, - [2951] = {.lex_state = 73}, - [2952] = {.lex_state = 73}, - [2953] = {.lex_state = 73}, - [2954] = {.lex_state = 73}, - [2955] = {.lex_state = 73}, - [2956] = {.lex_state = 73}, - [2957] = {.lex_state = 73}, - [2958] = {.lex_state = 73}, - [2959] = {.lex_state = 73}, - [2960] = {.lex_state = 73}, - [2961] = {.lex_state = 73}, - [2962] = {.lex_state = 73}, - [2963] = {.lex_state = 73}, - [2964] = {.lex_state = 73}, - [2965] = {.lex_state = 73}, - [2966] = {.lex_state = 73}, - [2967] = {.lex_state = 73}, - [2968] = {.lex_state = 73}, - [2969] = {.lex_state = 73}, - [2970] = {.lex_state = 73}, - [2971] = {.lex_state = 73}, - [2972] = {.lex_state = 73}, - [2973] = {.lex_state = 73}, - [2974] = {.lex_state = 73}, - [2975] = {.lex_state = 73}, - [2976] = {.lex_state = 73}, - [2977] = {.lex_state = 73}, - [2978] = {.lex_state = 73}, - [2979] = {.lex_state = 73}, - [2980] = {.lex_state = 73}, - [2981] = {.lex_state = 73}, - [2982] = {.lex_state = 73}, - [2983] = {.lex_state = 73}, - [2984] = {.lex_state = 73}, - [2985] = {.lex_state = 73}, - [2986] = {.lex_state = 73}, - [2987] = {.lex_state = 73}, - [2988] = {.lex_state = 73}, - [2989] = {.lex_state = 73}, - [2990] = {.lex_state = 73}, - [2991] = {.lex_state = 73}, - [2992] = {.lex_state = 73}, - [2993] = {.lex_state = 73}, - [2994] = {.lex_state = 73}, - [2995] = {.lex_state = 73}, - [2996] = {.lex_state = 73}, - [2997] = {.lex_state = 73}, - [2998] = {.lex_state = 73}, - [2999] = {.lex_state = 73}, - [3000] = {.lex_state = 73}, - [3001] = {.lex_state = 73}, - [3002] = {.lex_state = 73}, - [3003] = {.lex_state = 73}, - [3004] = {.lex_state = 73}, - [3005] = {.lex_state = 73}, - [3006] = {.lex_state = 85}, - [3007] = {.lex_state = 85}, - [3008] = {.lex_state = 85}, - [3009] = {.lex_state = 85}, - [3010] = {.lex_state = 85}, - [3011] = {.lex_state = 85}, - [3012] = {.lex_state = 85}, - [3013] = {.lex_state = 85}, - [3014] = {.lex_state = 85}, - [3015] = {.lex_state = 85}, - [3016] = {.lex_state = 85}, - [3017] = {.lex_state = 85}, - [3018] = {.lex_state = 85}, - [3019] = {.lex_state = 85}, - [3020] = {.lex_state = 85}, - [3021] = {.lex_state = 85}, - [3022] = {.lex_state = 85}, - [3023] = {.lex_state = 85}, - [3024] = {.lex_state = 85}, - [3025] = {.lex_state = 85}, - [3026] = {.lex_state = 85}, - [3027] = {.lex_state = 85}, - [3028] = {.lex_state = 85}, - [3029] = {.lex_state = 85}, - [3030] = {.lex_state = 85}, - [3031] = {.lex_state = 85}, - [3032] = {.lex_state = 85}, - [3033] = {.lex_state = 85}, - [3034] = {.lex_state = 85}, - [3035] = {.lex_state = 85}, - [3036] = {.lex_state = 85}, - [3037] = {.lex_state = 85}, - [3038] = {.lex_state = 85}, - [3039] = {.lex_state = 85}, - [3040] = {.lex_state = 85}, - [3041] = {.lex_state = 85}, - [3042] = {.lex_state = 85}, - [3043] = {.lex_state = 85}, - [3044] = {.lex_state = 85}, - [3045] = {.lex_state = 85}, - [3046] = {.lex_state = 85}, - [3047] = {.lex_state = 85}, - [3048] = {.lex_state = 85}, - [3049] = {.lex_state = 85}, - [3050] = {.lex_state = 85}, - [3051] = {.lex_state = 85}, - [3052] = {.lex_state = 85}, - [3053] = {.lex_state = 85}, - [3054] = {.lex_state = 85}, - [3055] = {.lex_state = 85}, - [3056] = {.lex_state = 85}, - [3057] = {.lex_state = 85}, - [3058] = {.lex_state = 85}, - [3059] = {.lex_state = 85}, - [3060] = {.lex_state = 85}, - [3061] = {.lex_state = 85}, - [3062] = {.lex_state = 85}, - [3063] = {.lex_state = 85}, - [3064] = {.lex_state = 85}, - [3065] = {.lex_state = 85}, - [3066] = {.lex_state = 85}, - [3067] = {.lex_state = 85}, - [3068] = {.lex_state = 85}, - [3069] = {.lex_state = 85}, - [3070] = {.lex_state = 85}, - [3071] = {.lex_state = 85}, - [3072] = {.lex_state = 85}, - [3073] = {.lex_state = 85}, - [3074] = {.lex_state = 85}, - [3075] = {.lex_state = 85}, - [3076] = {.lex_state = 85}, - [3077] = {.lex_state = 85}, - [3078] = {.lex_state = 85}, - [3079] = {.lex_state = 85}, - [3080] = {.lex_state = 85}, - [3081] = {.lex_state = 85}, - [3082] = {.lex_state = 85}, - [3083] = {.lex_state = 85}, - [3084] = {.lex_state = 85}, - [3085] = {.lex_state = 85}, - [3086] = {.lex_state = 85}, - [3087] = {.lex_state = 85}, - [3088] = {.lex_state = 85}, - [3089] = {.lex_state = 85}, - [3090] = {.lex_state = 85}, - [3091] = {.lex_state = 85}, - [3092] = {.lex_state = 85}, - [3093] = {.lex_state = 85}, - [3094] = {.lex_state = 85}, - [3095] = {.lex_state = 85}, - [3096] = {.lex_state = 85}, - [3097] = {.lex_state = 85}, - [3098] = {.lex_state = 85}, - [3099] = {.lex_state = 85}, - [3100] = {.lex_state = 85}, - [3101] = {.lex_state = 85}, - [3102] = {.lex_state = 85}, - [3103] = {.lex_state = 85}, - [3104] = {.lex_state = 85}, - [3105] = {.lex_state = 85}, - [3106] = {.lex_state = 85}, - [3107] = {.lex_state = 85}, - [3108] = {.lex_state = 85}, - [3109] = {.lex_state = 85}, - [3110] = {.lex_state = 85}, - [3111] = {.lex_state = 85}, - [3112] = {.lex_state = 85}, - [3113] = {.lex_state = 85}, - [3114] = {.lex_state = 85}, - [3115] = {.lex_state = 85}, - [3116] = {.lex_state = 85}, - [3117] = {.lex_state = 85}, - [3118] = {.lex_state = 85}, - [3119] = {.lex_state = 85}, - [3120] = {.lex_state = 85}, - [3121] = {.lex_state = 85}, - [3122] = {.lex_state = 85}, - [3123] = {.lex_state = 85}, - [3124] = {.lex_state = 85}, - [3125] = {.lex_state = 85}, - [3126] = {.lex_state = 85}, - [3127] = {.lex_state = 85}, - [3128] = {.lex_state = 85}, - [3129] = {.lex_state = 85}, - [3130] = {.lex_state = 85}, - [3131] = {.lex_state = 85}, - [3132] = {.lex_state = 85}, - [3133] = {.lex_state = 85}, - [3134] = {.lex_state = 85}, - [3135] = {.lex_state = 85}, - [3136] = {.lex_state = 85}, - [3137] = {.lex_state = 85}, - [3138] = {.lex_state = 85}, - [3139] = {.lex_state = 85}, - [3140] = {.lex_state = 85}, - [3141] = {.lex_state = 85}, - [3142] = {.lex_state = 85}, - [3143] = {.lex_state = 85}, - [3144] = {.lex_state = 85}, - [3145] = {.lex_state = 85}, - [3146] = {.lex_state = 85}, - [3147] = {.lex_state = 85}, - [3148] = {.lex_state = 85}, - [3149] = {.lex_state = 85}, - [3150] = {.lex_state = 85}, - [3151] = {.lex_state = 85}, - [3152] = {.lex_state = 85}, - [3153] = {.lex_state = 85}, - [3154] = {.lex_state = 85}, - [3155] = {.lex_state = 85}, - [3156] = {.lex_state = 85}, - [3157] = {.lex_state = 85}, - [3158] = {.lex_state = 85}, - [3159] = {.lex_state = 85}, - [3160] = {.lex_state = 85}, - [3161] = {.lex_state = 85}, - [3162] = {.lex_state = 85}, - [3163] = {.lex_state = 85}, - [3164] = {.lex_state = 85}, - [3165] = {.lex_state = 85}, - [3166] = {.lex_state = 85}, - [3167] = {.lex_state = 85}, - [3168] = {.lex_state = 85}, - [3169] = {.lex_state = 85}, - [3170] = {.lex_state = 85}, - [3171] = {.lex_state = 85}, - [3172] = {.lex_state = 85}, - [3173] = {.lex_state = 85}, - [3174] = {.lex_state = 85}, - [3175] = {.lex_state = 85}, - [3176] = {.lex_state = 85}, - [3177] = {.lex_state = 85}, - [3178] = {.lex_state = 85}, - [3179] = {.lex_state = 85}, - [3180] = {.lex_state = 85}, - [3181] = {.lex_state = 85}, - [3182] = {.lex_state = 85}, - [3183] = {.lex_state = 85}, - [3184] = {.lex_state = 85}, - [3185] = {.lex_state = 85}, - [3186] = {.lex_state = 85}, - [3187] = {.lex_state = 85}, - [3188] = {.lex_state = 85}, - [3189] = {.lex_state = 85}, - [3190] = {.lex_state = 85}, - [3191] = {.lex_state = 85}, - [3192] = {.lex_state = 85}, - [3193] = {.lex_state = 85}, - [3194] = {.lex_state = 85}, - [3195] = {.lex_state = 85}, - [3196] = {.lex_state = 85}, - [3197] = {.lex_state = 85}, - [3198] = {.lex_state = 85}, - [3199] = {.lex_state = 85}, - [3200] = {.lex_state = 85}, - [3201] = {.lex_state = 85}, - [3202] = {.lex_state = 85}, - [3203] = {.lex_state = 85}, - [3204] = {.lex_state = 85}, - [3205] = {.lex_state = 85}, - [3206] = {.lex_state = 85}, - [3207] = {.lex_state = 85}, - [3208] = {.lex_state = 85}, - [3209] = {.lex_state = 85}, - [3210] = {.lex_state = 85}, - [3211] = {.lex_state = 85}, - [3212] = {.lex_state = 85}, - [3213] = {.lex_state = 85}, - [3214] = {.lex_state = 85}, - [3215] = {.lex_state = 85}, - [3216] = {.lex_state = 85}, - [3217] = {.lex_state = 85}, - [3218] = {.lex_state = 85}, - [3219] = {.lex_state = 85}, - [3220] = {.lex_state = 85}, - [3221] = {.lex_state = 85}, - [3222] = {.lex_state = 85}, - [3223] = {.lex_state = 85}, - [3224] = {.lex_state = 85}, - [3225] = {.lex_state = 85}, - [3226] = {.lex_state = 85}, - [3227] = {.lex_state = 85}, - [3228] = {.lex_state = 85}, - [3229] = {.lex_state = 85}, - [3230] = {.lex_state = 85}, - [3231] = {.lex_state = 85}, - [3232] = {.lex_state = 85}, - [3233] = {.lex_state = 85}, - [3234] = {.lex_state = 85}, - [3235] = {.lex_state = 85}, - [3236] = {.lex_state = 85}, - [3237] = {.lex_state = 85}, - [3238] = {.lex_state = 85}, - [3239] = {.lex_state = 85}, - [3240] = {.lex_state = 85}, - [3241] = {.lex_state = 85}, - [3242] = {.lex_state = 85}, - [3243] = {.lex_state = 85}, - [3244] = {.lex_state = 85}, - [3245] = {.lex_state = 85}, - [3246] = {.lex_state = 85}, - [3247] = {.lex_state = 85}, - [3248] = {.lex_state = 85}, - [3249] = {.lex_state = 85}, - [3250] = {.lex_state = 85}, - [3251] = {.lex_state = 85}, - [3252] = {.lex_state = 85}, - [3253] = {.lex_state = 85}, - [3254] = {.lex_state = 85}, - [3255] = {.lex_state = 85}, - [3256] = {.lex_state = 85}, - [3257] = {.lex_state = 85}, - [3258] = {.lex_state = 85}, - [3259] = {.lex_state = 85}, - [3260] = {.lex_state = 85}, - [3261] = {.lex_state = 85}, - [3262] = {.lex_state = 85}, - [3263] = {.lex_state = 85}, - [3264] = {.lex_state = 85}, - [3265] = {.lex_state = 85}, - [3266] = {.lex_state = 85}, - [3267] = {.lex_state = 85}, - [3268] = {.lex_state = 85}, - [3269] = {.lex_state = 85}, - [3270] = {.lex_state = 85}, - [3271] = {.lex_state = 85}, - [3272] = {.lex_state = 85}, - [3273] = {.lex_state = 85}, - [3274] = {.lex_state = 85}, - [3275] = {.lex_state = 85}, - [3276] = {.lex_state = 85}, - [3277] = {.lex_state = 85}, - [3278] = {.lex_state = 85}, - [3279] = {.lex_state = 85}, - [3280] = {.lex_state = 85}, - [3281] = {.lex_state = 85}, - [3282] = {.lex_state = 85}, - [3283] = {.lex_state = 85}, - [3284] = {.lex_state = 85}, - [3285] = {.lex_state = 85}, - [3286] = {.lex_state = 85}, - [3287] = {.lex_state = 85}, - [3288] = {.lex_state = 85}, - [3289] = {.lex_state = 85}, - [3290] = {.lex_state = 85}, - [3291] = {.lex_state = 85}, - [3292] = {.lex_state = 85}, - [3293] = {.lex_state = 85}, - [3294] = {.lex_state = 85}, - [3295] = {.lex_state = 85}, - [3296] = {.lex_state = 85}, - [3297] = {.lex_state = 85}, - [3298] = {.lex_state = 85}, - [3299] = {.lex_state = 85}, - [3300] = {.lex_state = 85}, - [3301] = {.lex_state = 85}, - [3302] = {.lex_state = 85}, - [3303] = {.lex_state = 85}, - [3304] = {.lex_state = 85}, - [3305] = {.lex_state = 85}, - [3306] = {.lex_state = 85}, - [3307] = {.lex_state = 85}, - [3308] = {.lex_state = 85}, - [3309] = {.lex_state = 85}, - [3310] = {.lex_state = 85}, - [3311] = {.lex_state = 85}, - [3312] = {.lex_state = 85}, - [3313] = {.lex_state = 85}, - [3314] = {.lex_state = 89}, - [3315] = {.lex_state = 85}, - [3316] = {.lex_state = 85}, - [3317] = {.lex_state = 89}, - [3318] = {.lex_state = 85}, - [3319] = {.lex_state = 85}, - [3320] = {.lex_state = 85}, - [3321] = {.lex_state = 85}, - [3322] = {.lex_state = 85}, - [3323] = {.lex_state = 85}, - [3324] = {.lex_state = 85}, - [3325] = {.lex_state = 85}, - [3326] = {.lex_state = 85}, - [3327] = {.lex_state = 87}, - [3328] = {.lex_state = 33}, - [3329] = {.lex_state = 33}, - [3330] = {.lex_state = 33}, - [3331] = {.lex_state = 33}, - [3332] = {.lex_state = 33}, - [3333] = {.lex_state = 245}, - [3334] = {.lex_state = 85}, - [3335] = {.lex_state = 85}, - [3336] = {.lex_state = 85}, - [3337] = {.lex_state = 86}, - [3338] = {.lex_state = 86}, - [3339] = {.lex_state = 86}, - [3340] = {.lex_state = 85}, - [3341] = {.lex_state = 89}, - [3342] = {.lex_state = 85}, - [3343] = {.lex_state = 41}, - [3344] = {.lex_state = 34}, - [3345] = {.lex_state = 41}, - [3346] = {.lex_state = 34}, - [3347] = {.lex_state = 41}, - [3348] = {.lex_state = 85}, - [3349] = {.lex_state = 41}, - [3350] = {.lex_state = 41}, - [3351] = {.lex_state = 41}, - [3352] = {.lex_state = 41}, - [3353] = {.lex_state = 41}, - [3354] = {.lex_state = 41}, - [3355] = {.lex_state = 41}, - [3356] = {.lex_state = 85}, - [3357] = {.lex_state = 41}, - [3358] = {.lex_state = 85}, - [3359] = {.lex_state = 41}, - [3360] = {.lex_state = 85}, - [3361] = {.lex_state = 87}, - [3362] = {.lex_state = 87}, - [3363] = {.lex_state = 87}, - [3364] = {.lex_state = 86}, - [3365] = {.lex_state = 87}, - [3366] = {.lex_state = 41}, - [3367] = {.lex_state = 87}, - [3368] = {.lex_state = 87}, - [3369] = {.lex_state = 87}, - [3370] = {.lex_state = 87}, - [3371] = {.lex_state = 35}, - [3372] = {.lex_state = 87}, - [3373] = {.lex_state = 87}, - [3374] = {.lex_state = 87}, - [3375] = {.lex_state = 87}, - [3376] = {.lex_state = 87}, - [3377] = {.lex_state = 86}, - [3378] = {.lex_state = 87}, - [3379] = {.lex_state = 87}, - [3380] = {.lex_state = 87}, - [3381] = {.lex_state = 41}, - [3382] = {.lex_state = 87}, - [3383] = {.lex_state = 41}, - [3384] = {.lex_state = 87}, - [3385] = {.lex_state = 87}, - [3386] = {.lex_state = 87}, - [3387] = {.lex_state = 87}, - [3388] = {.lex_state = 87}, - [3389] = {.lex_state = 87}, - [3390] = {.lex_state = 35}, - [3391] = {.lex_state = 87}, - [3392] = {.lex_state = 86}, - [3393] = {.lex_state = 87}, - [3394] = {.lex_state = 86}, - [3395] = {.lex_state = 41}, - [3396] = {.lex_state = 87}, - [3397] = {.lex_state = 87}, - [3398] = {.lex_state = 86}, - [3399] = {.lex_state = 87}, - [3400] = {.lex_state = 86}, - [3401] = {.lex_state = 34}, - [3402] = {.lex_state = 86}, - [3403] = {.lex_state = 87}, - [3404] = {.lex_state = 35}, - [3405] = {.lex_state = 86}, - [3406] = {.lex_state = 87}, - [3407] = {.lex_state = 35}, - [3408] = {.lex_state = 87}, - [3409] = {.lex_state = 87}, - [3410] = {.lex_state = 34}, - [3411] = {.lex_state = 86}, - [3412] = {.lex_state = 34}, - [3413] = {.lex_state = 86}, - [3414] = {.lex_state = 34}, - [3415] = {.lex_state = 34}, - [3416] = {.lex_state = 86}, - [3417] = {.lex_state = 86}, - [3418] = {.lex_state = 34}, - [3419] = {.lex_state = 34}, - [3420] = {.lex_state = 34}, - [3421] = {.lex_state = 34}, - [3422] = {.lex_state = 34}, - [3423] = {.lex_state = 34}, - [3424] = {.lex_state = 35}, - [3425] = {.lex_state = 34}, - [3426] = {.lex_state = 34}, - [3427] = {.lex_state = 34}, - [3428] = {.lex_state = 34}, - [3429] = {.lex_state = 34}, - [3430] = {.lex_state = 34}, - [3431] = {.lex_state = 34}, - [3432] = {.lex_state = 34}, - [3433] = {.lex_state = 34}, - [3434] = {.lex_state = 34}, - [3435] = {.lex_state = 34}, - [3436] = {.lex_state = 34}, - [3437] = {.lex_state = 34}, - [3438] = {.lex_state = 34}, - [3439] = {.lex_state = 34}, - [3440] = {.lex_state = 34}, - [3441] = {.lex_state = 86}, - [3442] = {.lex_state = 34}, - [3443] = {.lex_state = 87}, - [3444] = {.lex_state = 87}, - [3445] = {.lex_state = 35}, - [3446] = {.lex_state = 83}, - [3447] = {.lex_state = 83}, - [3448] = {.lex_state = 34}, - [3449] = {.lex_state = 83}, - [3450] = {.lex_state = 34}, - [3451] = {.lex_state = 83}, - [3452] = {.lex_state = 83}, - [3453] = {.lex_state = 83}, - [3454] = {.lex_state = 83}, - [3455] = {.lex_state = 83}, - [3456] = {.lex_state = 83}, - [3457] = {.lex_state = 83}, - [3458] = {.lex_state = 34}, - [3459] = {.lex_state = 83}, - [3460] = {.lex_state = 83}, - [3461] = {.lex_state = 87}, - [3462] = {.lex_state = 34}, - [3463] = {.lex_state = 87}, - [3464] = {.lex_state = 34}, - [3465] = {.lex_state = 34}, - [3466] = {.lex_state = 87}, - [3467] = {.lex_state = 34}, - [3468] = {.lex_state = 24}, - [3469] = {.lex_state = 24}, - [3470] = {.lex_state = 24}, - [3471] = {.lex_state = 87}, - [3472] = {.lex_state = 87}, - [3473] = {.lex_state = 34}, - [3474] = {.lex_state = 34}, - [3475] = {.lex_state = 34}, - [3476] = {.lex_state = 34}, - [3477] = {.lex_state = 34}, - [3478] = {.lex_state = 34}, - [3479] = {.lex_state = 34}, - [3480] = {.lex_state = 34}, - [3481] = {.lex_state = 34}, - [3482] = {.lex_state = 24}, - [3483] = {.lex_state = 83}, - [3484] = {.lex_state = 254}, - [3485] = {.lex_state = 254}, - [3486] = {.lex_state = 254}, - [3487] = {.lex_state = 83}, - [3488] = {.lex_state = 87}, - [3489] = {.lex_state = 254}, - [3490] = {.lex_state = 83}, - [3491] = {.lex_state = 254}, - [3492] = {.lex_state = 254}, - [3493] = {.lex_state = 83}, - [3494] = {.lex_state = 254}, - [3495] = {.lex_state = 83}, - [3496] = {.lex_state = 87}, - [3497] = {.lex_state = 254}, - [3498] = {.lex_state = 254}, - [3499] = {.lex_state = 83}, - [3500] = {.lex_state = 87}, - [3501] = {.lex_state = 254}, - [3502] = {.lex_state = 254}, - [3503] = {.lex_state = 83}, - [3504] = {.lex_state = 254}, - [3505] = {.lex_state = 254}, - [3506] = {.lex_state = 83}, - [3507] = {.lex_state = 83}, - [3508] = {.lex_state = 254}, - [3509] = {.lex_state = 83}, - [3510] = {.lex_state = 34}, - [3511] = {.lex_state = 83}, - [3512] = {.lex_state = 254}, - [3513] = {.lex_state = 83}, - [3514] = {.lex_state = 83}, - [3515] = {.lex_state = 83}, - [3516] = {.lex_state = 254}, - [3517] = {.lex_state = 87}, - [3518] = {.lex_state = 254}, - [3519] = {.lex_state = 254}, - [3520] = {.lex_state = 254}, - [3521] = {.lex_state = 83}, - [3522] = {.lex_state = 83}, - [3523] = {.lex_state = 254}, - [3524] = {.lex_state = 254}, - [3525] = {.lex_state = 83}, - [3526] = {.lex_state = 24}, - [3527] = {.lex_state = 254}, - [3528] = {.lex_state = 83}, - [3529] = {.lex_state = 83}, - [3530] = {.lex_state = 83}, - [3531] = {.lex_state = 254}, - [3532] = {.lex_state = 254}, - [3533] = {.lex_state = 24}, - [3534] = {.lex_state = 83}, - [3535] = {.lex_state = 83}, - [3536] = {.lex_state = 83}, - [3537] = {.lex_state = 83}, - [3538] = {.lex_state = 254}, - [3539] = {.lex_state = 94}, - [3540] = {.lex_state = 90}, - [3541] = {.lex_state = 254}, - [3542] = {.lex_state = 90}, - [3543] = {.lex_state = 90}, - [3544] = {.lex_state = 94}, - [3545] = {.lex_state = 90}, - [3546] = {.lex_state = 90}, - [3547] = {.lex_state = 94}, - [3548] = {.lex_state = 90}, - [3549] = {.lex_state = 94}, - [3550] = {.lex_state = 254}, - [3551] = {.lex_state = 94}, - [3552] = {.lex_state = 94}, - [3553] = {.lex_state = 90}, - [3554] = {.lex_state = 90}, - [3555] = {.lex_state = 94}, - [3556] = {.lex_state = 90}, - [3557] = {.lex_state = 94}, - [3558] = {.lex_state = 94}, - [3559] = {.lex_state = 254}, - [3560] = {.lex_state = 90}, - [3561] = {.lex_state = 254}, - [3562] = {.lex_state = 94}, - [3563] = {.lex_state = 90}, - [3564] = {.lex_state = 90}, - [3565] = {.lex_state = 94}, - [3566] = {.lex_state = 254}, - [3567] = {.lex_state = 0}, - [3568] = {.lex_state = 87}, - [3569] = {.lex_state = 254}, - [3570] = {.lex_state = 254}, - [3571] = {.lex_state = 94}, - [3572] = {.lex_state = 90}, - [3573] = {.lex_state = 90}, - [3574] = {.lex_state = 94}, - [3575] = {.lex_state = 90}, - [3576] = {.lex_state = 94}, - [3577] = {.lex_state = 94}, - [3578] = {.lex_state = 90}, - [3579] = {.lex_state = 94}, - [3580] = {.lex_state = 90}, - [3581] = {.lex_state = 0}, - [3582] = {.lex_state = 90}, - [3583] = {.lex_state = 94}, - [3584] = {.lex_state = 94}, - [3585] = {.lex_state = 90}, - [3586] = {.lex_state = 94}, - [3587] = {.lex_state = 90}, - [3588] = {.lex_state = 94}, - [3589] = {.lex_state = 90}, - [3590] = {.lex_state = 90}, - [3591] = {.lex_state = 90}, - [3592] = {.lex_state = 94}, - [3593] = {.lex_state = 90}, - [3594] = {.lex_state = 94}, - [3595] = {.lex_state = 94}, - [3596] = {.lex_state = 94}, - [3597] = {.lex_state = 94}, - [3598] = {.lex_state = 94}, - [3599] = {.lex_state = 90}, - [3600] = {.lex_state = 94}, - [3601] = {.lex_state = 94}, - [3602] = {.lex_state = 90}, - [3603] = {.lex_state = 94}, - [3604] = {.lex_state = 90}, - [3605] = {.lex_state = 90}, - [3606] = {.lex_state = 94}, - [3607] = {.lex_state = 90}, - [3608] = {.lex_state = 94}, - [3609] = {.lex_state = 90}, - [3610] = {.lex_state = 94}, - [3611] = {.lex_state = 90}, - [3612] = {.lex_state = 94}, - [3613] = {.lex_state = 90}, - [3614] = {.lex_state = 94}, - [3615] = {.lex_state = 90}, - [3616] = {.lex_state = 94}, - [3617] = {.lex_state = 94}, - [3618] = {.lex_state = 90}, - [3619] = {.lex_state = 94}, - [3620] = {.lex_state = 90}, - [3621] = {.lex_state = 90}, - [3622] = {.lex_state = 254}, - [3623] = {.lex_state = 94}, - [3624] = {.lex_state = 90}, - [3625] = {.lex_state = 94}, - [3626] = {.lex_state = 87}, - [3627] = {.lex_state = 90}, - [3628] = {.lex_state = 254}, - [3629] = {.lex_state = 94}, - [3630] = {.lex_state = 90}, - [3631] = {.lex_state = 94}, - [3632] = {.lex_state = 90}, - [3633] = {.lex_state = 94}, - [3634] = {.lex_state = 94}, - [3635] = {.lex_state = 90}, - [3636] = {.lex_state = 34}, - [3637] = {.lex_state = 90}, - [3638] = {.lex_state = 34}, - [3639] = {.lex_state = 90}, - [3640] = {.lex_state = 254}, - [3641] = {.lex_state = 94}, - [3642] = {.lex_state = 90}, - [3643] = {.lex_state = 94}, - [3644] = {.lex_state = 90}, - [3645] = {.lex_state = 94}, - [3646] = {.lex_state = 90}, - [3647] = {.lex_state = 94}, - [3648] = {.lex_state = 90}, - [3649] = {.lex_state = 90}, - [3650] = {.lex_state = 94}, - [3651] = {.lex_state = 90}, - [3652] = {.lex_state = 94}, - [3653] = {.lex_state = 92}, - [3654] = {.lex_state = 83}, - [3655] = {.lex_state = 34}, - [3656] = {.lex_state = 0}, - [3657] = {.lex_state = 87}, - [3658] = {.lex_state = 87}, - [3659] = {.lex_state = 83}, - [3660] = {.lex_state = 83}, - [3661] = {.lex_state = 0}, - [3662] = {.lex_state = 83}, - [3663] = {.lex_state = 254}, - [3664] = {.lex_state = 83}, - [3665] = {.lex_state = 254}, - [3666] = {.lex_state = 254}, - [3667] = {.lex_state = 0}, - [3668] = {.lex_state = 87}, - [3669] = {.lex_state = 254}, - [3670] = {.lex_state = 254}, - [3671] = {.lex_state = 87}, - [3672] = {.lex_state = 254}, - [3673] = {.lex_state = 83}, - [3674] = {.lex_state = 34}, - [3675] = {.lex_state = 0}, - [3676] = {.lex_state = 83}, - [3677] = {.lex_state = 0}, - [3678] = {.lex_state = 83}, - [3679] = {.lex_state = 0}, - [3680] = {.lex_state = 0}, - [3681] = {.lex_state = 87}, - [3682] = {.lex_state = 34}, - [3683] = {.lex_state = 87}, - [3684] = {.lex_state = 0}, - [3685] = {.lex_state = 0}, - [3686] = {.lex_state = 254}, - [3687] = {.lex_state = 0}, - [3688] = {.lex_state = 69}, - [3689] = {.lex_state = 0}, - [3690] = {.lex_state = 87}, - [3691] = {.lex_state = 0}, - [3692] = {.lex_state = 254}, - [3693] = {.lex_state = 0}, - [3694] = {.lex_state = 0}, - [3695] = {.lex_state = 0}, - [3696] = {.lex_state = 254}, - [3697] = {.lex_state = 254}, - [3698] = {.lex_state = 254}, - [3699] = {.lex_state = 0}, - [3700] = {.lex_state = 0}, - [3701] = {.lex_state = 0}, - [3702] = {.lex_state = 254}, - [3703] = {.lex_state = 87}, - [3704] = {.lex_state = 254}, - [3705] = {.lex_state = 0}, - [3706] = {.lex_state = 69}, - [3707] = {.lex_state = 87}, - [3708] = {.lex_state = 0}, - [3709] = {.lex_state = 0}, - [3710] = {.lex_state = 87}, - [3711] = {.lex_state = 87}, - [3712] = {.lex_state = 254}, - [3713] = {.lex_state = 0}, - [3714] = {.lex_state = 69}, - [3715] = {.lex_state = 254}, - [3716] = {.lex_state = 0}, - [3717] = {.lex_state = 0}, - [3718] = {.lex_state = 254}, - [3719] = {.lex_state = 69}, - [3720] = {.lex_state = 87}, - [3721] = {.lex_state = 0}, - [3722] = {.lex_state = 0}, - [3723] = {.lex_state = 69}, - [3724] = {.lex_state = 254}, - [3725] = {.lex_state = 87}, - [3726] = {.lex_state = 69}, - [3727] = {.lex_state = 87}, - [3728] = {.lex_state = 92}, - [3729] = {.lex_state = 0}, - [3730] = {.lex_state = 0}, - [3731] = {.lex_state = 254}, - [3732] = {.lex_state = 87}, - [3733] = {.lex_state = 0}, - [3734] = {.lex_state = 254}, - [3735] = {.lex_state = 254}, - [3736] = {.lex_state = 254}, - [3737] = {.lex_state = 87}, - [3738] = {.lex_state = 87}, - [3739] = {.lex_state = 0}, - [3740] = {.lex_state = 258}, - [3741] = {.lex_state = 0}, - [3742] = {.lex_state = 0}, - [3743] = {.lex_state = 0}, - [3744] = {.lex_state = 0}, - [3745] = {.lex_state = 0}, - [3746] = {.lex_state = 0}, - [3747] = {.lex_state = 87}, - [3748] = {.lex_state = 69}, - [3749] = {.lex_state = 87}, - [3750] = {.lex_state = 0}, - [3751] = {.lex_state = 254}, - [3752] = {.lex_state = 69}, - [3753] = {.lex_state = 254}, - [3754] = {.lex_state = 0}, - [3755] = {.lex_state = 69}, - [3756] = {.lex_state = 69}, - [3757] = {.lex_state = 87}, - [3758] = {.lex_state = 0}, - [3759] = {.lex_state = 87}, - [3760] = {.lex_state = 87}, - [3761] = {.lex_state = 69}, - [3762] = {.lex_state = 87}, - [3763] = {.lex_state = 69}, - [3764] = {.lex_state = 87}, - [3765] = {.lex_state = 254}, - [3766] = {.lex_state = 254}, - [3767] = {.lex_state = 254}, - [3768] = {.lex_state = 254}, - [3769] = {.lex_state = 87}, - [3770] = {.lex_state = 87}, - [3771] = {.lex_state = 94}, - [3772] = {.lex_state = 69}, - [3773] = {.lex_state = 87}, - [3774] = {.lex_state = 94}, - [3775] = {.lex_state = 69}, - [3776] = {.lex_state = 94}, - [3777] = {.lex_state = 87}, - [3778] = {.lex_state = 0}, - [3779] = {.lex_state = 69}, - [3780] = {.lex_state = 0}, - [3781] = {.lex_state = 87}, - [3782] = {.lex_state = 87}, - [3783] = {.lex_state = 87}, - [3784] = {.lex_state = 0}, - [3785] = {.lex_state = 69}, - [3786] = {.lex_state = 69}, - [3787] = {.lex_state = 0}, - [3788] = {.lex_state = 0}, - [3789] = {.lex_state = 0}, - [3790] = {.lex_state = 87}, - [3791] = {.lex_state = 69}, - [3792] = {.lex_state = 87}, - [3793] = {.lex_state = 254}, - [3794] = {.lex_state = 0}, - [3795] = {.lex_state = 254}, - [3796] = {.lex_state = 254}, - [3797] = {.lex_state = 258}, - [3798] = {.lex_state = 0}, - [3799] = {.lex_state = 0}, - [3800] = {.lex_state = 83}, - [3801] = {.lex_state = 69}, - [3802] = {.lex_state = 87}, - [3803] = {.lex_state = 83}, - [3804] = {.lex_state = 87}, - [3805] = {.lex_state = 69}, - [3806] = {.lex_state = 87}, - [3807] = {.lex_state = 0}, - [3808] = {.lex_state = 0}, - [3809] = {.lex_state = 254}, - [3810] = {.lex_state = 87}, - [3811] = {.lex_state = 87}, - [3812] = {.lex_state = 254}, - [3813] = {.lex_state = 0}, - [3814] = {.lex_state = 0}, - [3815] = {.lex_state = 87}, - [3816] = {.lex_state = 69}, - [3817] = {.lex_state = 69}, - [3818] = {.lex_state = 87}, - [3819] = {.lex_state = 69}, - [3820] = {.lex_state = 0}, - [3821] = {.lex_state = 0}, - [3822] = {.lex_state = 87}, - [3823] = {.lex_state = 0}, - [3824] = {.lex_state = 87}, - [3825] = {.lex_state = 87}, - [3826] = {.lex_state = 0}, - [3827] = {.lex_state = 258}, - [3828] = {.lex_state = 90}, - [3829] = {.lex_state = 87}, - [3830] = {.lex_state = 0}, - [3831] = {.lex_state = 87}, - [3832] = {.lex_state = 69}, - [3833] = {.lex_state = 0}, - [3834] = {.lex_state = 69}, - [3835] = {.lex_state = 69}, - [3836] = {.lex_state = 0}, - [3837] = {.lex_state = 0}, - [3838] = {.lex_state = 87}, - [3839] = {.lex_state = 69}, - [3840] = {.lex_state = 83}, - [3841] = {.lex_state = 69}, - [3842] = {.lex_state = 90}, - [3843] = {.lex_state = 87}, - [3844] = {.lex_state = 87}, - [3845] = {.lex_state = 87}, - [3846] = {.lex_state = 69}, - [3847] = {.lex_state = 69}, - [3848] = {.lex_state = 87}, - [3849] = {.lex_state = 87}, - [3850] = {.lex_state = 0}, - [3851] = {.lex_state = 0}, - [3852] = {.lex_state = 90}, - [3853] = {.lex_state = 92}, - [3854] = {.lex_state = 0}, - [3855] = {.lex_state = 0}, - [3856] = {.lex_state = 0}, - [3857] = {.lex_state = 0}, - [3858] = {.lex_state = 91}, - [3859] = {.lex_state = 0}, - [3860] = {.lex_state = 0}, - [3861] = {.lex_state = 0}, - [3862] = {.lex_state = 95}, - [3863] = {.lex_state = 0}, - [3864] = {.lex_state = 0}, - [3865] = {.lex_state = 0}, - [3866] = {.lex_state = 0}, - [3867] = {.lex_state = 258}, - [3868] = {.lex_state = 0}, - [3869] = {.lex_state = 0}, - [3870] = {.lex_state = 0}, - [3871] = {.lex_state = 0}, - [3872] = {.lex_state = 87}, - [3873] = {.lex_state = 0}, - [3874] = {.lex_state = 0}, - [3875] = {.lex_state = 0}, - [3876] = {.lex_state = 0}, - [3877] = {.lex_state = 258}, - [3878] = {.lex_state = 0}, - [3879] = {.lex_state = 83}, - [3880] = {.lex_state = 0}, - [3881] = {.lex_state = 0}, - [3882] = {.lex_state = 0}, - [3883] = {.lex_state = 95}, - [3884] = {.lex_state = 87}, - [3885] = {.lex_state = 69}, - [3886] = {.lex_state = 91}, - [3887] = {.lex_state = 0}, - [3888] = {.lex_state = 87}, - [3889] = {.lex_state = 0}, - [3890] = {.lex_state = 95}, - [3891] = {.lex_state = 0}, - [3892] = {.lex_state = 83}, - [3893] = {.lex_state = 87}, - [3894] = {.lex_state = 0}, - [3895] = {.lex_state = 91}, - [3896] = {.lex_state = 0}, - [3897] = {.lex_state = 0}, - [3898] = {.lex_state = 0}, - [3899] = {.lex_state = 91}, - [3900] = {.lex_state = 95}, - [3901] = {.lex_state = 0}, - [3902] = {.lex_state = 0}, - [3903] = {.lex_state = 0}, - [3904] = {.lex_state = 87}, - [3905] = {.lex_state = 0}, - [3906] = {.lex_state = 0}, - [3907] = {.lex_state = 87}, - [3908] = {.lex_state = 95}, - [3909] = {.lex_state = 87}, - [3910] = {.lex_state = 0}, - [3911] = {.lex_state = 91}, - [3912] = {.lex_state = 95}, - [3913] = {.lex_state = 0}, - [3914] = {.lex_state = 0}, - [3915] = {.lex_state = 0}, - [3916] = {.lex_state = 0}, - [3917] = {.lex_state = 87}, - [3918] = {.lex_state = 0}, - [3919] = {.lex_state = 0}, - [3920] = {.lex_state = 0}, - [3921] = {.lex_state = 87}, - [3922] = {.lex_state = 0}, - [3923] = {.lex_state = 0}, - [3924] = {.lex_state = 95}, - [3925] = {.lex_state = 95}, - [3926] = {.lex_state = 91}, - [3927] = {.lex_state = 0}, - [3928] = {.lex_state = 91}, - [3929] = {.lex_state = 95}, - [3930] = {.lex_state = 87}, - [3931] = {.lex_state = 91}, - [3932] = {.lex_state = 0}, - [3933] = {.lex_state = 0}, - [3934] = {.lex_state = 0}, - [3935] = {.lex_state = 0}, - [3936] = {.lex_state = 87}, - [3937] = {.lex_state = 0}, - [3938] = {.lex_state = 69}, - [3939] = {.lex_state = 0}, - [3940] = {.lex_state = 0}, - [3941] = {.lex_state = 0}, - [3942] = {.lex_state = 0}, - [3943] = {.lex_state = 258}, - [3944] = {.lex_state = 0}, - [3945] = {.lex_state = 95}, - [3946] = {.lex_state = 95}, - [3947] = {.lex_state = 0}, - [3948] = {.lex_state = 91}, - [3949] = {.lex_state = 91}, - [3950] = {.lex_state = 87}, - [3951] = {.lex_state = 0}, - [3952] = {.lex_state = 87}, - [3953] = {.lex_state = 0}, - [3954] = {.lex_state = 91}, - [3955] = {.lex_state = 95}, - [3956] = {.lex_state = 87}, - [3957] = {.lex_state = 0}, - [3958] = {.lex_state = 91}, - [3959] = {.lex_state = 0}, - [3960] = {.lex_state = 91}, - [3961] = {.lex_state = 95}, - [3962] = {.lex_state = 0}, - [3963] = {.lex_state = 95}, - [3964] = {.lex_state = 0}, - [3965] = {.lex_state = 0}, - [3966] = {.lex_state = 0}, - [3967] = {.lex_state = 0}, - [3968] = {.lex_state = 0}, - [3969] = {.lex_state = 0}, - [3970] = {.lex_state = 0}, - [3971] = {.lex_state = 0}, - [3972] = {.lex_state = 0}, - [3973] = {.lex_state = 0}, - [3974] = {.lex_state = 0}, - [3975] = {.lex_state = 0}, - [3976] = {.lex_state = 0}, - [3977] = {.lex_state = 0}, - [3978] = {.lex_state = 91}, - [3979] = {.lex_state = 91}, - [3980] = {.lex_state = 95}, - [3981] = {.lex_state = 0}, - [3982] = {.lex_state = 91}, - [3983] = {.lex_state = 95}, - [3984] = {.lex_state = 69}, - [3985] = {.lex_state = 0}, - [3986] = {.lex_state = 0}, - [3987] = {.lex_state = 0}, - [3988] = {.lex_state = 0}, - [3989] = {.lex_state = 0}, - [3990] = {.lex_state = 0}, - [3991] = {.lex_state = 0}, - [3992] = {.lex_state = 0}, - [3993] = {.lex_state = 87}, - [3994] = {.lex_state = 0}, - [3995] = {.lex_state = 87}, - [3996] = {.lex_state = 0}, - [3997] = {.lex_state = 0}, - [3998] = {.lex_state = 87}, - [3999] = {.lex_state = 0}, - [4000] = {.lex_state = 0}, - [4001] = {.lex_state = 91}, - [4002] = {.lex_state = 95}, - [4003] = {.lex_state = 95}, - [4004] = {.lex_state = 0}, - [4005] = {.lex_state = 0}, - [4006] = {.lex_state = 0}, - [4007] = {.lex_state = 0}, - [4008] = {.lex_state = 0}, - [4009] = {.lex_state = 0}, - [4010] = {.lex_state = 0}, - [4011] = {.lex_state = 91}, - [4012] = {.lex_state = 0}, - [4013] = {.lex_state = 0}, - [4014] = {.lex_state = 95}, - [4015] = {.lex_state = 0}, - [4016] = {.lex_state = 91}, - [4017] = {.lex_state = 0}, - [4018] = {.lex_state = 0}, - [4019] = {.lex_state = 0}, - [4020] = {.lex_state = 0}, - [4021] = {.lex_state = 0}, - [4022] = {.lex_state = 0}, - [4023] = {.lex_state = 0}, - [4024] = {.lex_state = 87}, - [4025] = {.lex_state = 91}, - [4026] = {.lex_state = 0}, - [4027] = {.lex_state = 0}, - [4028] = {.lex_state = 91}, - [4029] = {.lex_state = 0}, - [4030] = {.lex_state = 91}, - [4031] = {.lex_state = 95}, - [4032] = {.lex_state = 0}, - [4033] = {.lex_state = 95}, - [4034] = {.lex_state = 0}, - [4035] = {.lex_state = 95}, - [4036] = {.lex_state = 83}, - [4037] = {.lex_state = 258}, - [4038] = {.lex_state = 0}, - [4039] = {.lex_state = 0}, - [4040] = {.lex_state = 95}, - [4041] = {.lex_state = 91}, - [4042] = {.lex_state = 0}, - [4043] = {.lex_state = 0}, - [4044] = {.lex_state = 0}, - [4045] = {.lex_state = 0}, - [4046] = {.lex_state = 0}, - [4047] = {.lex_state = 0}, - [4048] = {.lex_state = 0}, - [4049] = {.lex_state = 0}, - [4050] = {.lex_state = 87}, - [4051] = {.lex_state = 0}, - [4052] = {.lex_state = 95}, - [4053] = {.lex_state = 0}, - [4054] = {.lex_state = 91}, - [4055] = {.lex_state = 91}, - [4056] = {.lex_state = 0}, - [4057] = {.lex_state = 87}, - [4058] = {.lex_state = 95}, - [4059] = {.lex_state = 0}, - [4060] = {.lex_state = 0}, - [4061] = {.lex_state = 0}, - [4062] = {.lex_state = 0}, - [4063] = {.lex_state = 0}, - [4064] = {.lex_state = 0}, - [4065] = {.lex_state = 0}, - [4066] = {.lex_state = 0}, - [4067] = {.lex_state = 0}, - [4068] = {.lex_state = 0}, - [4069] = {.lex_state = 0}, - [4070] = {.lex_state = 0}, - [4071] = {.lex_state = 0}, - [4072] = {.lex_state = 0}, - [4073] = {.lex_state = 0}, - [4074] = {.lex_state = 0}, - [4075] = {.lex_state = 0}, - [4076] = {.lex_state = 0}, - [4077] = {.lex_state = 0}, - [4078] = {.lex_state = 0}, - [4079] = {.lex_state = 83}, - [4080] = {.lex_state = 0}, - [4081] = {.lex_state = 83}, - [4082] = {.lex_state = 0}, - [4083] = {.lex_state = 0}, - [4084] = {.lex_state = 87}, - [4085] = {.lex_state = 0}, - [4086] = {.lex_state = 0}, - [4087] = {.lex_state = 87}, - [4088] = {.lex_state = 0}, - [4089] = {.lex_state = 87}, - [4090] = {.lex_state = 0}, - [4091] = {.lex_state = 0}, - [4092] = {.lex_state = 0}, - [4093] = {.lex_state = 0}, - [4094] = {.lex_state = 0}, - [4095] = {.lex_state = 0}, - [4096] = {.lex_state = 0}, - [4097] = {.lex_state = 87}, - [4098] = {.lex_state = 0}, - [4099] = {.lex_state = 0}, - [4100] = {.lex_state = 0}, - [4101] = {.lex_state = 0}, - [4102] = {.lex_state = 0}, - [4103] = {.lex_state = 0}, - [4104] = {.lex_state = 0}, - [4105] = {.lex_state = 0}, - [4106] = {.lex_state = 0}, - [4107] = {.lex_state = 0}, - [4108] = {.lex_state = 0}, - [4109] = {.lex_state = 0}, - [4110] = {.lex_state = 0}, - [4111] = {.lex_state = 0}, - [4112] = {.lex_state = 87}, - [4113] = {.lex_state = 87}, - [4114] = {.lex_state = 0}, - [4115] = {.lex_state = 0}, - [4116] = {.lex_state = 0}, - [4117] = {.lex_state = 0}, - [4118] = {.lex_state = 0}, - [4119] = {.lex_state = 0}, - [4120] = {.lex_state = 0}, - [4121] = {.lex_state = 0}, - [4122] = {.lex_state = 87}, - [4123] = {.lex_state = 0}, - [4124] = {.lex_state = 0}, - [4125] = {.lex_state = 0}, - [4126] = {.lex_state = 0}, - [4127] = {.lex_state = 87}, - [4128] = {.lex_state = 0}, - [4129] = {.lex_state = 0}, - [4130] = {.lex_state = 0}, - [4131] = {.lex_state = 0}, - [4132] = {.lex_state = 0}, - [4133] = {.lex_state = 0}, - [4134] = {.lex_state = 0}, - [4135] = {.lex_state = 0}, - [4136] = {.lex_state = 0}, - [4137] = {.lex_state = 0}, - [4138] = {.lex_state = 0}, - [4139] = {.lex_state = 0}, - [4140] = {.lex_state = 0}, - [4141] = {.lex_state = 0}, - [4142] = {.lex_state = 87}, - [4143] = {.lex_state = 0}, - [4144] = {.lex_state = 0}, - [4145] = {.lex_state = 0}, - [4146] = {.lex_state = 0}, - [4147] = {.lex_state = 0}, - [4148] = {.lex_state = 0}, - [4149] = {.lex_state = 87}, - [4150] = {.lex_state = 0}, - [4151] = {.lex_state = 0}, - [4152] = {.lex_state = 0}, - [4153] = {.lex_state = 0}, - [4154] = {.lex_state = 0}, - [4155] = {.lex_state = 0}, - [4156] = {.lex_state = 0}, - [4157] = {.lex_state = 0}, - [4158] = {.lex_state = 0}, - [4159] = {.lex_state = 0}, - [4160] = {.lex_state = 87}, - [4161] = {.lex_state = 0}, - [4162] = {.lex_state = 0}, - [4163] = {.lex_state = 0}, - [4164] = {.lex_state = 87}, - [4165] = {.lex_state = 0}, - [4166] = {.lex_state = 0}, - [4167] = {.lex_state = 0}, - [4168] = {.lex_state = 0}, - [4169] = {.lex_state = 0}, - [4170] = {.lex_state = 0}, - [4171] = {.lex_state = 0}, - [4172] = {.lex_state = 0}, - [4173] = {.lex_state = 0}, - [4174] = {.lex_state = 0}, - [4175] = {.lex_state = 0}, - [4176] = {.lex_state = 0}, - [4177] = {.lex_state = 0}, - [4178] = {.lex_state = 0}, - [4179] = {.lex_state = 0}, - [4180] = {.lex_state = 0}, - [4181] = {.lex_state = 0}, - [4182] = {.lex_state = 87}, - [4183] = {.lex_state = 87}, - [4184] = {.lex_state = 0}, - [4185] = {.lex_state = 87}, - [4186] = {.lex_state = 0}, - [4187] = {.lex_state = 0}, - [4188] = {.lex_state = 0}, - [4189] = {.lex_state = 0}, - [4190] = {.lex_state = 0}, - [4191] = {.lex_state = 0}, - [4192] = {.lex_state = 0}, - [4193] = {.lex_state = 0}, - [4194] = {.lex_state = 0}, - [4195] = {.lex_state = 87}, - [4196] = {.lex_state = 0}, - [4197] = {.lex_state = 0}, - [4198] = {.lex_state = 0}, - [4199] = {.lex_state = 0}, - [4200] = {.lex_state = 87}, - [4201] = {.lex_state = 0}, - [4202] = {.lex_state = 0}, - [4203] = {.lex_state = 0}, - [4204] = {.lex_state = 0}, - [4205] = {.lex_state = 0}, - [4206] = {.lex_state = 0}, - [4207] = {.lex_state = 0}, - [4208] = {.lex_state = 0}, - [4209] = {.lex_state = 0}, - [4210] = {.lex_state = 0}, - [4211] = {.lex_state = 0}, - [4212] = {.lex_state = 0}, - [4213] = {.lex_state = 69}, - [4214] = {.lex_state = 0}, - [4215] = {.lex_state = 0}, - [4216] = {.lex_state = 0}, - [4217] = {.lex_state = 0}, - [4218] = {.lex_state = 0}, - [4219] = {.lex_state = 0}, - [4220] = {.lex_state = 0}, - [4221] = {.lex_state = 87}, - [4222] = {.lex_state = 0}, - [4223] = {.lex_state = 0}, - [4224] = {.lex_state = 0}, - [4225] = {.lex_state = 0}, - [4226] = {.lex_state = 0}, - [4227] = {.lex_state = 87}, - [4228] = {.lex_state = 0}, - [4229] = {.lex_state = 0}, - [4230] = {.lex_state = 0}, - [4231] = {.lex_state = 0}, - [4232] = {.lex_state = 0}, - [4233] = {.lex_state = 0}, - [4234] = {.lex_state = 0}, - [4235] = {.lex_state = 0}, - [4236] = {.lex_state = 0}, - [4237] = {.lex_state = 0}, - [4238] = {.lex_state = 0}, - [4239] = {.lex_state = 0}, - [4240] = {.lex_state = 87}, - [4241] = {.lex_state = 0}, - [4242] = {.lex_state = 0}, - [4243] = {.lex_state = 0}, - [4244] = {.lex_state = 0}, - [4245] = {.lex_state = 0}, - [4246] = {.lex_state = 0}, - [4247] = {.lex_state = 0}, - [4248] = {.lex_state = 0}, - [4249] = {.lex_state = 0}, - [4250] = {.lex_state = 87}, - [4251] = {.lex_state = 0}, - [4252] = {.lex_state = 87}, - [4253] = {.lex_state = 0}, - [4254] = {.lex_state = 0}, - [4255] = {.lex_state = 0}, - [4256] = {.lex_state = 0}, - [4257] = {.lex_state = 0}, - [4258] = {.lex_state = 87}, - [4259] = {.lex_state = 0}, - [4260] = {.lex_state = 0}, - [4261] = {.lex_state = 0}, - [4262] = {.lex_state = 0}, - [4263] = {.lex_state = 0}, - [4264] = {.lex_state = 87}, - [4265] = {.lex_state = 87}, - [4266] = {.lex_state = 0}, - [4267] = {.lex_state = 0}, - [4268] = {.lex_state = 87}, - [4269] = {.lex_state = 0}, - [4270] = {.lex_state = 0}, - [4271] = {.lex_state = 0}, - [4272] = {.lex_state = 0}, - [4273] = {.lex_state = 0}, - [4274] = {.lex_state = 0}, - [4275] = {.lex_state = 0}, - [4276] = {.lex_state = 0}, - [4277] = {.lex_state = 0}, - [4278] = {.lex_state = 0}, - [4279] = {.lex_state = 0}, - [4280] = {.lex_state = 0}, - [4281] = {.lex_state = 0}, - [4282] = {.lex_state = 87}, - [4283] = {.lex_state = 0}, - [4284] = {.lex_state = 69}, - [4285] = {.lex_state = 0}, - [4286] = {.lex_state = 0}, - [4287] = {.lex_state = 0}, - [4288] = {.lex_state = 0}, - [4289] = {.lex_state = 0}, - [4290] = {.lex_state = 0}, - [4291] = {.lex_state = 0}, - [4292] = {.lex_state = 0}, - [4293] = {.lex_state = 87}, - [4294] = {.lex_state = 0}, - [4295] = {.lex_state = 0}, - [4296] = {.lex_state = 87}, - [4297] = {.lex_state = 0}, - [4298] = {.lex_state = 0}, - [4299] = {.lex_state = 0}, - [4300] = {.lex_state = 0}, - [4301] = {.lex_state = 0}, - [4302] = {.lex_state = 0}, - [4303] = {.lex_state = 0}, - [4304] = {.lex_state = 0}, - [4305] = {.lex_state = 0}, - [4306] = {.lex_state = 0}, - [4307] = {.lex_state = 0}, - [4308] = {.lex_state = 0}, - [4309] = {.lex_state = 0}, - [4310] = {.lex_state = 87}, - [4311] = {.lex_state = 87}, - [4312] = {.lex_state = 0}, - [4313] = {.lex_state = 0}, - [4314] = {.lex_state = 0}, - [4315] = {.lex_state = 0}, - [4316] = {.lex_state = 0}, - [4317] = {.lex_state = 0}, - [4318] = {.lex_state = 0}, - [4319] = {.lex_state = 0}, - [4320] = {.lex_state = 0}, - [4321] = {.lex_state = 0}, - [4322] = {.lex_state = 0}, - [4323] = {.lex_state = 0}, - [4324] = {.lex_state = 0}, - [4325] = {.lex_state = 0}, - [4326] = {.lex_state = 0}, - [4327] = {.lex_state = 0}, - [4328] = {.lex_state = 0}, - [4329] = {.lex_state = 0}, - [4330] = {.lex_state = 0}, - [4331] = {.lex_state = 0}, - [4332] = {.lex_state = 0}, - [4333] = {.lex_state = 0}, - [4334] = {.lex_state = 0}, - [4335] = {.lex_state = 0}, - [4336] = {.lex_state = 87}, - [4337] = {.lex_state = 87}, - [4338] = {.lex_state = 0}, - [4339] = {.lex_state = 0}, - [4340] = {.lex_state = 0}, - [4341] = {.lex_state = 0}, - [4342] = {.lex_state = 0}, - [4343] = {.lex_state = 0}, - [4344] = {.lex_state = 0}, - [4345] = {.lex_state = 0}, - [4346] = {.lex_state = 0}, - [4347] = {.lex_state = 87}, - [4348] = {.lex_state = 0}, - [4349] = {.lex_state = 0}, - [4350] = {.lex_state = 0}, - [4351] = {.lex_state = 87}, - [4352] = {.lex_state = 87}, - [4353] = {.lex_state = 0}, - [4354] = {.lex_state = 0}, - [4355] = {.lex_state = 87}, - [4356] = {.lex_state = 0}, - [4357] = {.lex_state = 0}, - [4358] = {.lex_state = 0}, - [4359] = {.lex_state = 0}, - [4360] = {.lex_state = 87}, - [4361] = {.lex_state = 0}, - [4362] = {.lex_state = 87}, - [4363] = {.lex_state = 0}, - [4364] = {.lex_state = 0}, - [4365] = {.lex_state = 0}, - [4366] = {.lex_state = 0}, - [4367] = {.lex_state = 0}, - [4368] = {.lex_state = 0}, - [4369] = {.lex_state = 0}, - [4370] = {.lex_state = 87}, - [4371] = {.lex_state = 0}, - [4372] = {.lex_state = 0}, - [4373] = {.lex_state = 0}, - [4374] = {.lex_state = 69}, - [4375] = {.lex_state = 87}, - [4376] = {.lex_state = 87}, - [4377] = {.lex_state = 0}, - [4378] = {.lex_state = 0}, - [4379] = {.lex_state = 0}, - [4380] = {.lex_state = 0}, - [4381] = {.lex_state = 0}, - [4382] = {.lex_state = 0}, - [4383] = {.lex_state = 0}, - [4384] = {.lex_state = 0}, - [4385] = {.lex_state = 0}, - [4386] = {.lex_state = 87}, - [4387] = {.lex_state = 0}, - [4388] = {.lex_state = 87}, - [4389] = {.lex_state = 0}, - [4390] = {.lex_state = 0}, - [4391] = {.lex_state = 0}, - [4392] = {.lex_state = 0}, - [4393] = {.lex_state = 0}, - [4394] = {.lex_state = 0}, - [4395] = {.lex_state = 0}, - [4396] = {.lex_state = 0}, - [4397] = {.lex_state = 87}, - [4398] = {.lex_state = 0}, - [4399] = {.lex_state = 0}, - [4400] = {.lex_state = 0}, - [4401] = {.lex_state = 0}, - [4402] = {.lex_state = 0}, - [4403] = {.lex_state = 0}, - [4404] = {.lex_state = 0}, - [4405] = {.lex_state = 0}, - [4406] = {.lex_state = 87}, - [4407] = {.lex_state = 0}, - [4408] = {.lex_state = 0}, - [4409] = {.lex_state = 0}, - [4410] = {.lex_state = 0}, - [4411] = {.lex_state = 0}, - [4412] = {.lex_state = 0}, - [4413] = {.lex_state = 0}, - [4414] = {.lex_state = 0}, - [4415] = {.lex_state = 0}, - [4416] = {.lex_state = 0}, - [4417] = {.lex_state = 96}, - [4418] = {.lex_state = 0}, - [4419] = {.lex_state = 87}, - [4420] = {.lex_state = 0}, - [4421] = {.lex_state = 0}, - [4422] = {.lex_state = 96}, - [4423] = {.lex_state = 0}, - [4424] = {.lex_state = 41}, - [4425] = {.lex_state = 0}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 0}, - [4428] = {.lex_state = 96}, - [4429] = {.lex_state = 0}, - [4430] = {.lex_state = 0}, - [4431] = {.lex_state = 0}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, - [4434] = {.lex_state = 87}, - [4435] = {.lex_state = 0}, - [4436] = {.lex_state = 0}, - [4437] = {.lex_state = 0}, - [4438] = {.lex_state = 0}, - [4439] = {.lex_state = 0}, - [4440] = {.lex_state = 0}, - [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 0}, - [4443] = {.lex_state = 0}, - [4444] = {.lex_state = 0}, - [4445] = {.lex_state = 96}, - [4446] = {.lex_state = 0}, - [4447] = {.lex_state = 0}, - [4448] = {.lex_state = 0}, - [4449] = {.lex_state = 96}, - [4450] = {.lex_state = 0}, - [4451] = {.lex_state = 0}, - [4452] = {.lex_state = 41}, - [4453] = {.lex_state = 0}, - [4454] = {.lex_state = 0}, - [4455] = {.lex_state = 0}, - [4456] = {.lex_state = 0}, - [4457] = {.lex_state = 87}, - [4458] = {.lex_state = 87}, - [4459] = {.lex_state = 87}, - [4460] = {.lex_state = 0}, - [4461] = {.lex_state = 87}, - [4462] = {.lex_state = 0}, - [4463] = {.lex_state = 0}, - [4464] = {.lex_state = 0}, - [4465] = {.lex_state = 0}, - [4466] = {.lex_state = 0}, - [4467] = {.lex_state = 0}, - [4468] = {.lex_state = 0}, - [4469] = {.lex_state = 0}, - [4470] = {.lex_state = 96}, - [4471] = {.lex_state = 0}, - [4472] = {.lex_state = 0}, - [4473] = {.lex_state = 0}, - [4474] = {.lex_state = 87}, - [4475] = {.lex_state = 87}, - [4476] = {.lex_state = 87}, - [4477] = {.lex_state = 87}, - [4478] = {.lex_state = 0}, - [4479] = {.lex_state = 0}, - [4480] = {.lex_state = 87}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 0}, - [4483] = {.lex_state = 0}, - [4484] = {.lex_state = 0}, - [4485] = {.lex_state = 0}, - [4486] = {.lex_state = 0}, - [4487] = {.lex_state = 0}, - [4488] = {.lex_state = 0}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 0}, - [4491] = {.lex_state = 96}, - [4492] = {.lex_state = 0}, - [4493] = {.lex_state = 0}, - [4494] = {.lex_state = 0}, - [4495] = {.lex_state = 0}, - [4496] = {.lex_state = 0}, - [4497] = {.lex_state = 0}, - [4498] = {.lex_state = 0}, - [4499] = {.lex_state = 0}, - [4500] = {.lex_state = 0}, - [4501] = {.lex_state = 0}, - [4502] = {.lex_state = 0}, - [4503] = {.lex_state = 0}, - [4504] = {.lex_state = 96}, - [4505] = {.lex_state = 0}, - [4506] = {.lex_state = 0}, - [4507] = {.lex_state = 0}, - [4508] = {.lex_state = 0}, - [4509] = {.lex_state = 0}, - [4510] = {.lex_state = 0}, - [4511] = {.lex_state = 0}, - [4512] = {.lex_state = 96}, - [4513] = {.lex_state = 0}, - [4514] = {.lex_state = 0}, - [4515] = {.lex_state = 0}, - [4516] = {.lex_state = 0}, - [4517] = {.lex_state = 0}, - [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 87}, - [4520] = {.lex_state = 87}, - [4521] = {.lex_state = 0}, - [4522] = {.lex_state = 41}, - [4523] = {.lex_state = 0}, - [4524] = {.lex_state = 0}, - [4525] = {.lex_state = 87}, - [4526] = {.lex_state = 0}, - [4527] = {.lex_state = 0}, - [4528] = {.lex_state = 0}, - [4529] = {.lex_state = 0}, - [4530] = {.lex_state = 0}, - [4531] = {.lex_state = 0}, - [4532] = {.lex_state = 0}, - [4533] = {.lex_state = 96}, - [4534] = {.lex_state = 0}, - [4535] = {.lex_state = 0}, - [4536] = {.lex_state = 0}, - [4537] = {.lex_state = 0}, - [4538] = {.lex_state = 0}, - [4539] = {.lex_state = 0}, - [4540] = {.lex_state = 0}, - [4541] = {.lex_state = 0}, - [4542] = {.lex_state = 0}, - [4543] = {.lex_state = 0}, - [4544] = {.lex_state = 0}, - [4545] = {.lex_state = 87}, - [4546] = {.lex_state = 0}, - [4547] = {.lex_state = 0}, - [4548] = {.lex_state = 69}, - [4549] = {.lex_state = 0}, - [4550] = {.lex_state = 87}, - [4551] = {.lex_state = 0}, - [4552] = {.lex_state = 0}, - [4553] = {.lex_state = 0}, - [4554] = {.lex_state = 96}, - [4555] = {.lex_state = 0}, - [4556] = {.lex_state = 87}, - [4557] = {.lex_state = 0}, - [4558] = {.lex_state = 0}, - [4559] = {.lex_state = 0}, - [4560] = {.lex_state = 0}, - [4561] = {.lex_state = 0}, - [4562] = {.lex_state = 0}, - [4563] = {.lex_state = 0}, - [4564] = {.lex_state = 0}, - [4565] = {.lex_state = 0}, - [4566] = {.lex_state = 0}, - [4567] = {.lex_state = 0}, - [4568] = {.lex_state = 0}, - [4569] = {.lex_state = 0}, - [4570] = {.lex_state = 96}, - [4571] = {.lex_state = 0}, - [4572] = {.lex_state = 96}, - [4573] = {.lex_state = 0}, - [4574] = {.lex_state = 0}, - [4575] = {.lex_state = 96}, - [4576] = {.lex_state = 0}, - [4577] = {.lex_state = 0}, - [4578] = {.lex_state = 0}, - [4579] = {.lex_state = 0}, - [4580] = {.lex_state = 87}, - [4581] = {.lex_state = 0}, - [4582] = {.lex_state = 87}, - [4583] = {.lex_state = 87}, - [4584] = {.lex_state = 0}, - [4585] = {.lex_state = 0}, - [4586] = {.lex_state = 0}, - [4587] = {.lex_state = 0}, - [4588] = {.lex_state = 0}, - [4589] = {.lex_state = 0}, - [4590] = {.lex_state = 0}, - [4591] = {.lex_state = 0}, - [4592] = {.lex_state = 0}, - [4593] = {.lex_state = 0}, - [4594] = {.lex_state = 0}, - [4595] = {.lex_state = 87}, - [4596] = {.lex_state = 0}, - [4597] = {.lex_state = 0}, - [4598] = {.lex_state = 0}, - [4599] = {.lex_state = 0}, - [4600] = {.lex_state = 0}, - [4601] = {.lex_state = 0}, - [4602] = {.lex_state = 0}, - [4603] = {.lex_state = 0}, - [4604] = {.lex_state = 0}, - [4605] = {.lex_state = 0}, - [4606] = {.lex_state = 0}, - [4607] = {.lex_state = 0}, - [4608] = {.lex_state = 0}, - [4609] = {.lex_state = 87}, - [4610] = {.lex_state = 0}, - [4611] = {.lex_state = 0}, - [4612] = {.lex_state = 0}, - [4613] = {.lex_state = 0}, - [4614] = {.lex_state = 0}, - [4615] = {.lex_state = 0}, - [4616] = {.lex_state = 0}, - [4617] = {.lex_state = 0}, - [4618] = {.lex_state = 0}, - [4619] = {.lex_state = 0}, - [4620] = {.lex_state = 0}, - [4621] = {.lex_state = 87}, - [4622] = {.lex_state = 0}, - [4623] = {.lex_state = 0}, - [4624] = {.lex_state = 0}, - [4625] = {.lex_state = 0}, - [4626] = {.lex_state = 0}, - [4627] = {.lex_state = 0}, - [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 0}, - [4630] = {.lex_state = 0}, - [4631] = {.lex_state = 0}, - [4632] = {.lex_state = 0}, - [4633] = {.lex_state = 0}, - [4634] = {.lex_state = 0}, - [4635] = {.lex_state = 0}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0}, - [4638] = {.lex_state = 0}, - [4639] = {.lex_state = 0}, - [4640] = {.lex_state = 0}, - [4641] = {.lex_state = 0}, - [4642] = {.lex_state = 0}, - [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 0}, - [4645] = {.lex_state = 0}, - [4646] = {.lex_state = 0}, - [4647] = {.lex_state = 0}, - [4648] = {.lex_state = 0}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 87}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 0}, - [4653] = {.lex_state = 0}, - [4654] = {.lex_state = 87}, - [4655] = {.lex_state = 0}, - [4656] = {.lex_state = 0}, - [4657] = {.lex_state = 0}, - [4658] = {.lex_state = 0}, - [4659] = {.lex_state = 0}, - [4660] = {.lex_state = 0}, - [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 0}, - [4663] = {.lex_state = 0}, - [4664] = {.lex_state = 0}, - [4665] = {.lex_state = 87}, - [4666] = {.lex_state = 0}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 0}, - [4670] = {.lex_state = 87}, - [4671] = {.lex_state = 0}, - [4672] = {.lex_state = 0}, - [4673] = {.lex_state = 0}, - [4674] = {.lex_state = 0}, - [4675] = {.lex_state = 0}, - [4676] = {.lex_state = 0}, - [4677] = {.lex_state = 0}, - [4678] = {.lex_state = 0}, - [4679] = {.lex_state = 0}, - [4680] = {.lex_state = 0}, - [4681] = {.lex_state = 0}, - [4682] = {.lex_state = 0}, - [4683] = {.lex_state = 0}, - [4684] = {.lex_state = 0}, - [4685] = {.lex_state = 87}, - [4686] = {.lex_state = 97}, - [4687] = {.lex_state = 0}, - [4688] = {.lex_state = 97}, - [4689] = {.lex_state = 0}, - [4690] = {.lex_state = 0}, - [4691] = {.lex_state = 0}, - [4692] = {.lex_state = 0}, - [4693] = {.lex_state = 0}, - [4694] = {.lex_state = 0}, - [4695] = {.lex_state = 0}, - [4696] = {.lex_state = 0}, - [4697] = {.lex_state = 0}, - [4698] = {.lex_state = 87}, - [4699] = {.lex_state = 87}, - [4700] = {.lex_state = 0}, - [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 87}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 87}, - [4705] = {.lex_state = 0}, - [4706] = {.lex_state = 0}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 0}, - [4709] = {.lex_state = 0}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0}, - [4712] = {.lex_state = 87}, - [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 87}, - [4715] = {.lex_state = 87}, - [4716] = {.lex_state = 0}, - [4717] = {.lex_state = 0}, - [4718] = {.lex_state = 87}, - [4719] = {.lex_state = 0}, - [4720] = {.lex_state = 0}, - [4721] = {.lex_state = 0}, - [4722] = {.lex_state = 0}, - [4723] = {.lex_state = 0}, - [4724] = {.lex_state = 87}, - [4725] = {.lex_state = 0}, - [4726] = {.lex_state = 0}, - [4727] = {.lex_state = 0}, - [4728] = {.lex_state = 0}, - [4729] = {.lex_state = 0}, - [4730] = {.lex_state = 0}, - [4731] = {.lex_state = 0}, - [4732] = {.lex_state = 0}, - [4733] = {.lex_state = 0}, - [4734] = {.lex_state = 0}, -}; - -static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { - [ts_builtin_sym_end] = ACTIONS(1), - [sym_identifier] = ACTIONS(1), - [sym_comment] = ACTIONS(3), - [anon_sym_module] = ACTIONS(1), - [anon_sym_import] = ACTIONS(1), - [anon_sym_SEMI] = ACTIONS(1), - [anon_sym_DOT] = ACTIONS(1), - [anon_sym_as] = ACTIONS(1), - [anon_sym_LBRACE] = ACTIONS(1), - [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_RBRACE] = ACTIONS(1), - [anon_sym_const] = ACTIONS(1), - [anon_sym_LPAREN] = ACTIONS(1), - [anon_sym_RPAREN] = ACTIONS(1), - [anon_sym_EQ] = ACTIONS(1), - [anon_sym___global] = ACTIONS(1), - [anon_sym_type] = ACTIONS(1), - [anon_sym_PIPE] = ACTIONS(1), - [anon_sym_fn] = ACTIONS(1), - [anon_sym_PLUS] = ACTIONS(1), - [anon_sym_DASH] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), - [anon_sym_SLASH] = ACTIONS(1), - [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_LT] = ACTIONS(1), - [anon_sym_GT] = ACTIONS(1), - [anon_sym_EQ_EQ] = ACTIONS(1), - [anon_sym_BANG_EQ] = ACTIONS(1), - [anon_sym_LT_EQ] = ACTIONS(1), - [anon_sym_GT_EQ] = ACTIONS(1), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [anon_sym_LBRACK] = ACTIONS(1), - [anon_sym_LT2] = ACTIONS(1), - [anon_sym_RBRACK] = ACTIONS(1), - [anon_sym_struct] = ACTIONS(1), - [anon_sym_union] = ACTIONS(1), - [anon_sym_pub] = ACTIONS(1), - [anon_sym_mut] = ACTIONS(1), - [anon_sym_COLON] = ACTIONS(1), - [anon_sym_enum] = ACTIONS(1), - [anon_sym_interface] = ACTIONS(1), - [anon_sym_PLUS_PLUS] = ACTIONS(1), - [anon_sym_DASH_DASH] = ACTIONS(1), - [anon_sym_QMARK] = ACTIONS(1), - [anon_sym_BANG] = ACTIONS(1), - [anon_sym_go] = ACTIONS(1), - [anon_sym_spawn] = ACTIONS(1), - [anon_sym_json_DOTdecode] = ACTIONS(1), - [anon_sym_LBRACK2] = ACTIONS(1), - [anon_sym_TILDE] = ACTIONS(1), - [anon_sym_CARET] = ACTIONS(1), - [anon_sym_AMP] = ACTIONS(1), - [anon_sym_LT_DASH] = ACTIONS(1), - [anon_sym_LT_LT] = ACTIONS(1), - [anon_sym_GT_GT] = ACTIONS(1), - [anon_sym_GT_GT_GT] = ACTIONS(1), - [anon_sym_AMP_CARET] = ACTIONS(1), - [anon_sym_AMP_AMP] = ACTIONS(1), - [anon_sym_PIPE_PIPE] = ACTIONS(1), - [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_or] = ACTIONS(1), - [sym_escape_sequence] = ACTIONS(1), - [sym_none] = ACTIONS(1), - [sym_true] = ACTIONS(1), - [sym_false] = ACTIONS(1), - [sym_nil] = ACTIONS(1), - [anon_sym_QMARK_DOT] = ACTIONS(1), - [anon_sym_POUND_LBRACK] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), - [anon_sym_else] = ACTIONS(1), - [anon_sym_DOLLARif] = ACTIONS(1), - [anon_sym_DOLLARelse] = ACTIONS(1), - [anon_sym_is] = ACTIONS(1), - [anon_sym_BANGis] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), - [anon_sym_BANGin] = ACTIONS(1), - [anon_sym_match] = ACTIONS(1), - [anon_sym_select] = ACTIONS(1), - [anon_sym_STAR_EQ] = ACTIONS(1), - [anon_sym_SLASH_EQ] = ACTIONS(1), - [anon_sym_PERCENT_EQ] = ACTIONS(1), - [anon_sym_LT_LT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_EQ] = ACTIONS(1), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1), - [anon_sym_AMP_EQ] = ACTIONS(1), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1), - [anon_sym_PLUS_EQ] = ACTIONS(1), - [anon_sym_DASH_EQ] = ACTIONS(1), - [anon_sym_PIPE_EQ] = ACTIONS(1), - [anon_sym_CARET_EQ] = ACTIONS(1), - [anon_sym_COLON_EQ] = ACTIONS(1), - [anon_sym_lock] = ACTIONS(1), - [anon_sym_rlock] = ACTIONS(1), - [anon_sym_unsafe] = ACTIONS(1), - [anon_sym_sql] = ACTIONS(1), - [sym_int_literal] = ACTIONS(1), - [sym_rune_literal] = ACTIONS(1), - [aux_sym_format_specifier_token1] = ACTIONS(1), - [aux_sym_format_specifier_token2] = ACTIONS(1), - [anon_sym_0] = ACTIONS(1), - [anon_sym_AT] = ACTIONS(1), - [aux_sym_pseudo_compile_time_identifier_token1] = ACTIONS(1), - [anon_sym_static] = ACTIONS(1), - [anon_sym_volatile] = ACTIONS(1), - [anon_sym_shared] = ACTIONS(1), - [anon_sym_map_LBRACK] = ACTIONS(1), - [anon_sym_chan] = ACTIONS(1), - [anon_sym_thread] = ACTIONS(1), - [anon_sym_atomic] = ACTIONS(1), - [anon_sym_assert] = ACTIONS(1), - [anon_sym_defer] = ACTIONS(1), - [anon_sym_goto] = ACTIONS(1), - [anon_sym_break] = ACTIONS(1), - [anon_sym_continue] = ACTIONS(1), - [anon_sym_return] = ACTIONS(1), - [anon_sym_DOLLARfor] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_DOT_DOT] = ACTIONS(1), - [anon_sym_POUND] = ACTIONS(1), - [anon_sym_asm] = ACTIONS(1), - [anon_sym_AT_LBRACK] = ACTIONS(1), - [sym___dolcbr] = ACTIONS(1), - [sym___double_quote] = ACTIONS(1), - [sym___single_quote] = ACTIONS(1), - [sym___c_double_quote] = ACTIONS(1), - [sym___c_single_quote] = ACTIONS(1), - [sym___r_double_quote] = ACTIONS(1), - [sym___r_single_quote] = ACTIONS(1), - }, - [1] = { - [sym_source_file] = STATE(4671), - [sym_module_clause] = STATE(2), - [sym_import_list] = STATE(4), - [sym_import_declaration] = STATE(1571), - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3443), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_import_list_repeat1] = STATE(1571), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_module] = ACTIONS(9), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [2] = { - [sym_import_list] = STATE(7), - [sym_import_declaration] = STATE(1571), - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_import_list_repeat1] = STATE(1571), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(123), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [3] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(127), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(130), - [anon_sym_LBRACE] = ACTIONS(133), - [anon_sym_const] = ACTIONS(136), - [anon_sym_LPAREN] = ACTIONS(139), - [anon_sym___global] = ACTIONS(142), - [anon_sym_type] = ACTIONS(145), - [anon_sym_fn] = ACTIONS(148), - [anon_sym_PLUS] = ACTIONS(151), - [anon_sym_DASH] = ACTIONS(151), - [anon_sym_STAR] = ACTIONS(154), - [anon_sym_struct] = ACTIONS(157), - [anon_sym_union] = ACTIONS(160), - [anon_sym_pub] = ACTIONS(163), - [anon_sym_mut] = ACTIONS(166), - [anon_sym_enum] = ACTIONS(169), - [anon_sym_interface] = ACTIONS(172), - [anon_sym_QMARK] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(178), - [anon_sym_go] = ACTIONS(181), - [anon_sym_spawn] = ACTIONS(184), - [anon_sym_json_DOTdecode] = ACTIONS(187), - [anon_sym_LBRACK2] = ACTIONS(190), - [anon_sym_TILDE] = ACTIONS(151), - [anon_sym_CARET] = ACTIONS(151), - [anon_sym_AMP] = ACTIONS(193), - [anon_sym_LT_DASH] = ACTIONS(196), - [sym_none] = ACTIONS(199), - [sym_true] = ACTIONS(199), - [sym_false] = ACTIONS(199), - [sym_nil] = ACTIONS(199), - [anon_sym_if] = ACTIONS(202), - [anon_sym_DOLLARif] = ACTIONS(205), - [anon_sym_match] = ACTIONS(208), - [anon_sym_select] = ACTIONS(211), - [anon_sym_lock] = ACTIONS(214), - [anon_sym_rlock] = ACTIONS(214), - [anon_sym_unsafe] = ACTIONS(217), - [anon_sym_sql] = ACTIONS(220), - [sym_int_literal] = ACTIONS(199), - [sym_float_literal] = ACTIONS(223), - [sym_rune_literal] = ACTIONS(223), - [anon_sym_AT] = ACTIONS(226), - [anon_sym_shared] = ACTIONS(229), - [anon_sym_map_LBRACK] = ACTIONS(232), - [anon_sym_chan] = ACTIONS(235), - [anon_sym_thread] = ACTIONS(238), - [anon_sym_atomic] = ACTIONS(241), - [anon_sym_assert] = ACTIONS(244), - [anon_sym_defer] = ACTIONS(247), - [anon_sym_goto] = ACTIONS(250), - [anon_sym_break] = ACTIONS(253), - [anon_sym_continue] = ACTIONS(256), - [anon_sym_return] = ACTIONS(259), - [anon_sym_DOLLARfor] = ACTIONS(262), - [anon_sym_for] = ACTIONS(265), - [anon_sym_POUND] = ACTIONS(268), - [anon_sym_asm] = ACTIONS(271), - [anon_sym_AT_LBRACK] = ACTIONS(274), - [sym___double_quote] = ACTIONS(277), - [sym___single_quote] = ACTIONS(280), - [sym___c_double_quote] = ACTIONS(283), - [sym___c_single_quote] = ACTIONS(286), - [sym___r_double_quote] = ACTIONS(289), - [sym___r_single_quote] = ACTIONS(292), - }, - [4] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(6), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(123), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [5] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(295), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [6] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(297), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [7] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(297), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [8] = { - [sym_const_declaration] = STATE(1553), - [sym_global_var_declaration] = STATE(1553), - [sym_type_declaration] = STATE(1553), - [sym_function_declaration] = STATE(1553), - [sym_static_method_declaration] = STATE(1553), - [sym_struct_declaration] = STATE(1553), - [sym_enum_declaration] = STATE(1553), - [sym_interface_declaration] = STATE(1553), - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_visibility_modifiers] = STATE(3517), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1553), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_attributes] = STATE(3463), - [sym_attribute] = STATE(3401), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_attributes_repeat1] = STATE(3413), - [ts_builtin_sym_end] = ACTIONS(123), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym___global] = ACTIONS(21), - [anon_sym_type] = ACTIONS(23), - [anon_sym_fn] = ACTIONS(25), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(31), - [anon_sym_union] = ACTIONS(33), - [anon_sym_pub] = ACTIONS(35), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(39), - [anon_sym_interface] = ACTIONS(41), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(53), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [anon_sym_AT_LBRACK] = ACTIONS(109), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [9] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [10] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [11] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(248), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(305), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [12] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(385), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [13] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [14] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4598), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4598), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(389), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [15] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4598), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4598), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(391), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [16] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4602), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4602), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(393), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [17] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4658), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4658), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(395), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [18] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4703), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4703), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(397), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [19] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(399), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [20] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4425), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4425), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(401), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [21] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(403), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [22] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4529), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4529), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(405), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [23] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4577), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4577), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(407), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [24] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [25] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(383), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [26] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(387), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [27] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4540), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4540), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(411), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [28] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [29] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4529), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4529), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(415), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [30] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4662), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4662), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(417), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [31] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4577), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4577), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(419), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [32] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4590), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4590), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(421), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [33] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(423), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [34] = { - [sym__expression] = STATE(1605), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4658), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4658), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(299), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [35] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4555), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4555), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(429), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [36] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4599), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4599), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(431), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [37] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4484), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4484), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(433), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [38] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4544), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4544), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(435), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [39] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4425), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4425), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(437), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [40] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4514), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4514), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(439), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [41] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4590), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4590), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(441), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [42] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4577), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4577), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(443), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [43] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4598), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4598), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(445), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [44] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4618), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4618), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(447), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [45] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4708), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4708), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(449), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [46] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4658), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4658), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(451), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [47] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4662), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4662), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(453), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [48] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4539), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4539), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(455), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [49] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4703), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4703), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(457), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [50] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4540), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4540), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(459), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [51] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4602), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4602), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(461), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [52] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4619), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4619), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(463), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [53] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4529), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4529), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(465), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [54] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement_list] = STATE(4648), - [sym__statement] = STATE(3666), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4648), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(467), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [55] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3686), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4657), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(469), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [56] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3686), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(57), - [sym_labeled_statement] = STATE(3768), - [sym_empty_labeled_statement] = STATE(4594), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(471), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [57] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3734), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(59), - [sym_labeled_statement] = STATE(3768), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_RBRACE] = ACTIONS(473), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [58] = { - [sym__expression] = STATE(261), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_strictly_expression_list] = STATE(1557), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(745), - [sym_mutable_expression] = STATE(3352), - [sym_expression_list] = STATE(3395), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(1560), - [sym_simple_statement] = STATE(1565), - [sym_assert_statement] = STATE(1565), - [sym_append_statement] = STATE(1565), - [sym_send_statement] = STATE(1565), - [sym_var_declaration] = STATE(1557), - [sym_assignment_statement] = STATE(1557), - [sym_block] = STATE(1565), - [sym_defer_statement] = STATE(1565), - [sym_goto_statement] = STATE(1565), - [sym_break_statement] = STATE(1565), - [sym_continue_statement] = STATE(1565), - [sym_return_statement] = STATE(1565), - [sym_label_definition] = STATE(58), - [sym_labeled_statement] = STATE(1565), - [sym_compile_time_for_statement] = STATE(1565), - [sym_for_statement] = STATE(1565), - [sym_hash_statement] = STATE(1565), - [sym_asm_statement] = STATE(1565), - [sym_identifier] = ACTIONS(7), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(15), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(89), - [anon_sym_defer] = ACTIONS(91), - [anon_sym_goto] = ACTIONS(93), - [anon_sym_break] = ACTIONS(95), - [anon_sym_continue] = ACTIONS(97), - [anon_sym_return] = ACTIONS(99), - [anon_sym_DOLLARfor] = ACTIONS(101), - [anon_sym_for] = ACTIONS(103), - [anon_sym_POUND] = ACTIONS(105), - [anon_sym_asm] = ACTIONS(107), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [59] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3734), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(59), - [sym_labeled_statement] = STATE(3768), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [60] = { - [sym__expression] = STATE(1623), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_strictly_expression_list] = STATE(3796), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(462), - [sym_mutable_expression] = STATE(3353), - [sym_expression_list] = STATE(3383), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__statement] = STATE(3686), - [sym_simple_statement] = STATE(3768), - [sym_assert_statement] = STATE(3768), - [sym_append_statement] = STATE(3768), - [sym_send_statement] = STATE(3768), - [sym_var_declaration] = STATE(3796), - [sym_assignment_statement] = STATE(3796), - [sym_block] = STATE(3768), - [sym_defer_statement] = STATE(3768), - [sym_goto_statement] = STATE(3768), - [sym_break_statement] = STATE(3768), - [sym_continue_statement] = STATE(3768), - [sym_return_statement] = STATE(3768), - [sym_label_definition] = STATE(59), - [sym_labeled_statement] = STATE(3768), - [sym_compile_time_for_statement] = STATE(3768), - [sym_for_statement] = STATE(3768), - [sym_hash_statement] = STATE(3768), - [sym_asm_statement] = STATE(3768), - [sym_identifier] = ACTIONS(427), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(303), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(351), - [anon_sym_defer] = ACTIONS(353), - [anon_sym_goto] = ACTIONS(355), - [anon_sym_break] = ACTIONS(357), - [anon_sym_continue] = ACTIONS(359), - [anon_sym_return] = ACTIONS(361), - [anon_sym_DOLLARfor] = ACTIONS(363), - [anon_sym_for] = ACTIONS(365), - [anon_sym_POUND] = ACTIONS(367), - [anon_sym_asm] = ACTIONS(369), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [61] = { - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(1422), - [sym_expression_list] = STATE(1567), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(481), - [sym_identifier] = ACTIONS(483), - [anon_sym_LF] = ACTIONS(485), - [anon_sym_CR] = ACTIONS(485), - [anon_sym_CR_LF] = ACTIONS(485), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(491), - [anon_sym_const] = ACTIONS(485), - [anon_sym_LPAREN] = ACTIONS(493), - [anon_sym___global] = ACTIONS(485), - [anon_sym_type] = ACTIONS(485), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(497), - [anon_sym_DASH] = ACTIONS(497), - [anon_sym_STAR] = ACTIONS(499), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_union] = ACTIONS(485), - [anon_sym_pub] = ACTIONS(485), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_enum] = ACTIONS(485), - [anon_sym_interface] = ACTIONS(485), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(505), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(511), - [anon_sym_LBRACK2] = ACTIONS(513), - [anon_sym_TILDE] = ACTIONS(497), - [anon_sym_CARET] = ACTIONS(497), - [anon_sym_AMP] = ACTIONS(515), - [anon_sym_LT_DASH] = ACTIONS(517), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(519), - [sym_rune_literal] = ACTIONS(519), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(485), - [anon_sym_defer] = ACTIONS(485), - [anon_sym_goto] = ACTIONS(485), - [anon_sym_break] = ACTIONS(485), - [anon_sym_continue] = ACTIONS(485), - [anon_sym_return] = ACTIONS(485), - [anon_sym_DOLLARfor] = ACTIONS(485), - [anon_sym_for] = ACTIONS(485), - [anon_sym_POUND] = ACTIONS(485), - [anon_sym_asm] = ACTIONS(485), - [anon_sym_AT_LBRACK] = ACTIONS(485), - [sym___double_quote] = ACTIONS(539), - [sym___single_quote] = ACTIONS(541), - [sym___c_double_quote] = ACTIONS(543), - [sym___c_single_quote] = ACTIONS(545), - [sym___r_double_quote] = ACTIONS(547), - [sym___r_single_quote] = ACTIONS(549), - }, - [62] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(521), - [sym_plain_type] = STATE(884), - [sym__plain_type_without_special] = STATE(898), - [sym_anon_struct_type] = STATE(896), - [sym_multi_return_type] = STATE(898), - [sym_result_type] = STATE(898), - [sym_option_type] = STATE(898), - [sym_qualified_type] = STATE(521), - [sym_fixed_array_type] = STATE(896), - [sym_array_type] = STATE(896), - [sym_pointer_type] = STATE(896), - [sym_wrong_pointer_type] = STATE(896), - [sym_map_type] = STATE(896), - [sym_channel_type] = STATE(896), - [sym_shared_type] = STATE(896), - [sym_thread_type] = STATE(896), - [sym_atomic_type] = STATE(896), - [sym_generic_type] = STATE(896), - [sym_function_type] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(553), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym___global] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(559), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_union] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(555), - [anon_sym_LBRACK2] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_DASH] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_AMP_CARET_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_COLON_EQ] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), - [sym_rune_literal] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(573), - [anon_sym_map_LBRACK] = ACTIONS(575), - [anon_sym_chan] = ACTIONS(577), - [anon_sym_thread] = ACTIONS(579), - [anon_sym_atomic] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_defer] = ACTIONS(555), - [anon_sym_goto] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_DOLLARfor] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(555), - [anon_sym_asm] = ACTIONS(555), - [anon_sym_AT_LBRACK] = ACTIONS(555), - [sym___double_quote] = ACTIONS(555), - [sym___single_quote] = ACTIONS(555), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(555), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(555), - }, - [63] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(583), - [sym_identifier] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_const] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym___global] = ACTIONS(585), - [anon_sym_type] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(585), - [anon_sym_union] = ACTIONS(585), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_enum] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(585), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(585), - [anon_sym_assert] = ACTIONS(585), - [anon_sym_defer] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(585), - [anon_sym_break] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_return] = ACTIONS(585), - [anon_sym_DOLLARfor] = ACTIONS(585), - [anon_sym_for] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_asm] = ACTIONS(585), - [anon_sym_AT_LBRACK] = ACTIONS(585), - [sym___double_quote] = ACTIONS(585), - [sym___single_quote] = ACTIONS(585), - [sym___c_double_quote] = ACTIONS(585), - [sym___c_single_quote] = ACTIONS(585), - [sym___r_double_quote] = ACTIONS(585), - [sym___r_single_quote] = ACTIONS(585), - }, - [64] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(521), - [sym_plain_type] = STATE(903), - [sym__plain_type_without_special] = STATE(898), - [sym_anon_struct_type] = STATE(896), - [sym_multi_return_type] = STATE(898), - [sym_result_type] = STATE(898), - [sym_option_type] = STATE(898), - [sym_qualified_type] = STATE(521), - [sym_fixed_array_type] = STATE(896), - [sym_array_type] = STATE(896), - [sym_pointer_type] = STATE(896), - [sym_wrong_pointer_type] = STATE(896), - [sym_map_type] = STATE(896), - [sym_channel_type] = STATE(896), - [sym_shared_type] = STATE(896), - [sym_thread_type] = STATE(896), - [sym_atomic_type] = STATE(896), - [sym_generic_type] = STATE(896), - [sym_function_type] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(587), - [sym_identifier] = ACTIONS(553), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(559), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(573), - [anon_sym_map_LBRACK] = ACTIONS(575), - [anon_sym_chan] = ACTIONS(577), - [anon_sym_thread] = ACTIONS(579), - [anon_sym_atomic] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), - }, - [65] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_const] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym___global] = ACTIONS(595), - [anon_sym_type] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_union] = ACTIONS(595), - [anon_sym_pub] = ACTIONS(595), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_interface] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(605), - [anon_sym_go] = ACTIONS(595), - [anon_sym_spawn] = ACTIONS(595), - [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(595), - [sym_none] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_nil] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_DOLLARif] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_match] = ACTIONS(595), - [anon_sym_select] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_LT_LT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), - [anon_sym_AMP_EQ] = ACTIONS(595), - [anon_sym_AMP_CARET_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_PIPE_EQ] = ACTIONS(595), - [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_lock] = ACTIONS(595), - [anon_sym_rlock] = ACTIONS(595), - [anon_sym_unsafe] = ACTIONS(595), - [anon_sym_sql] = ACTIONS(595), - [sym_int_literal] = ACTIONS(595), - [sym_float_literal] = ACTIONS(595), - [sym_rune_literal] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(595), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_goto] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_DOLLARfor] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(595), - [anon_sym_asm] = ACTIONS(595), - [anon_sym_AT_LBRACK] = ACTIONS(595), - [sym___double_quote] = ACTIONS(595), - [sym___single_quote] = ACTIONS(595), - [sym___c_double_quote] = ACTIONS(595), - [sym___c_single_quote] = ACTIONS(595), - [sym___r_double_quote] = ACTIONS(595), - [sym___r_single_quote] = ACTIONS(595), - }, - [66] = { - [sym_reference_expression] = STATE(4460), - [sym_type_reference_expression] = STATE(521), - [sym_plain_type] = STATE(882), - [sym__plain_type_without_special] = STATE(898), - [sym_anon_struct_type] = STATE(896), - [sym_multi_return_type] = STATE(898), - [sym_result_type] = STATE(898), - [sym_option_type] = STATE(898), - [sym_qualified_type] = STATE(521), - [sym_fixed_array_type] = STATE(896), - [sym_array_type] = STATE(896), - [sym_pointer_type] = STATE(896), - [sym_wrong_pointer_type] = STATE(896), - [sym_map_type] = STATE(896), - [sym_channel_type] = STATE(896), - [sym_shared_type] = STATE(896), - [sym_thread_type] = STATE(896), - [sym_atomic_type] = STATE(896), - [sym_generic_type] = STATE(896), - [sym_function_type] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(553), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(557), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym___global] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(559), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(561), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(563), - [anon_sym_union] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(565), - [anon_sym_BANG] = ACTIONS(567), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(569), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(571), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(573), - [anon_sym_map_LBRACK] = ACTIONS(575), - [anon_sym_chan] = ACTIONS(577), - [anon_sym_thread] = ACTIONS(579), - [anon_sym_atomic] = ACTIONS(581), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_DOLLARfor] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_asm] = ACTIONS(615), - [anon_sym_AT_LBRACK] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), - }, - [67] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4564), - [sym_short_element_list] = STATE(4565), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [68] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4656), - [sym_short_element_list] = STATE(4655), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [69] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4487), - [sym_short_element_list] = STATE(4488), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [70] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4411), - [sym_short_element_list] = STATE(4413), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [71] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4482), - [sym_short_element_list] = STATE(4481), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [72] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4464), - [sym_short_element_list] = STATE(4472), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [73] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4607), - [sym_short_element_list] = STATE(4612), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [74] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4695), - [sym_short_element_list] = STATE(4694), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [75] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4666), - [sym_short_element_list] = STATE(4734), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [76] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4646), - [sym_short_element_list] = STATE(4645), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [77] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4664), - [sym_short_element_list] = STATE(4614), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [78] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4616), - [sym_short_element_list] = STATE(4617), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [79] = { - [sym_struct_field_scope] = STATE(3479), - [sym_struct_field_declaration] = STATE(3479), - [sym__struct_field_definition] = STATE(3478), - [sym_embedded_definition] = STATE(3477), - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4563), - [sym_short_element_list] = STATE(4561), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1155), - [sym_type_reference_expression] = STATE(3424), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3424), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(3462), - [sym_function_type] = STATE(2424), - [aux_sym__struct_body_repeat1] = STATE(3382), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(617), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(623), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym___global] = ACTIONS(627), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_pub] = ACTIONS(639), - [anon_sym_mut] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [80] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(117), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4611), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(117), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(695), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [81] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(109), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4643), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(109), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(755), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [82] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(140), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4571), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(757), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [83] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [84] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(133), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4676), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(133), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [85] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(763), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [86] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(111), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4692), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(765), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [87] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(111), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4692), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(767), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [88] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(135), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4495), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(769), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [89] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4652), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(771), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [90] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(119), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4493), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(119), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(773), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [91] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(138), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4412), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(775), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [92] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4652), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [93] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(125), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4733), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [94] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(140), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4571), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(781), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [95] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(106), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4667), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [96] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(138), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4412), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(138), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(785), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [97] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(139), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4652), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(139), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(759), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [98] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [99] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(115), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4559), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(115), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(777), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [100] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(135), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4495), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(789), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [101] = { - [sym__expression] = STATE(2629), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(130), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4473), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [aux_sym_select_expression_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [102] = { - [sym__expression] = STATE(1670), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3366), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4541), - [sym_var_declaration] = STATE(4132), - [sym_var_definition_list] = STATE(4548), - [sym_var_definition] = STATE(3984), - [sym_assignment_statement] = STATE(4132), - [sym_block] = STATE(3718), - [sym_range_clause] = STATE(4197), - [sym_for_clause] = STATE(4197), - [sym_identifier] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [103] = { - [sym__expression] = STATE(1662), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3354), - [sym_expression_list] = STATE(3366), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4541), - [sym_var_declaration] = STATE(4132), - [sym_var_definition_list] = STATE(4548), - [sym_var_definition] = STATE(3984), - [sym_assignment_statement] = STATE(4132), - [sym_block] = STATE(1498), - [sym_range_clause] = STATE(4231), - [sym_for_clause] = STATE(4231), - [sym_identifier] = ACTIONS(793), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(795), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(859), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(811), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [104] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4526), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(861), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [105] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4640), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(863), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [106] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4719), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(865), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [107] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4601), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(867), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [108] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(110), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4681), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(110), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(869), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [109] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4628), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(871), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [110] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4690), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(873), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [111] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4678), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(875), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [112] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(127), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4627), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(127), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(877), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [113] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4592), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(879), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [114] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(104), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4530), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(104), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(881), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [115] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4536), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(883), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [116] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4630), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(885), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [117] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4604), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(887), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [118] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(134), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4716), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(889), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [119] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4710), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(891), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [120] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4456), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(893), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [121] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4451), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(895), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [122] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(120), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4453), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(120), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(897), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [123] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(107), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4603), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(899), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [124] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4674), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(901), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [125] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4726), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(903), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [126] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(124), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4677), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(124), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(905), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [127] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4622), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(907), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [128] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(129), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4725), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(129), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(909), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [129] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4723), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(911), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [130] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4454), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(913), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [131] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(113), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4589), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(113), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(915), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [132] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(105), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4634), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(917), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [133] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4633), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(919), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [134] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4516), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(921), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [135] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4509), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(923), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [136] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(121), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4442), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(121), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(925), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [137] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(141), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4513), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(141), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(927), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [138] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4441), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(929), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [139] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4635), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(931), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [140] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4588), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(933), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [141] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4517), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [142] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(116), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_select_else_arn_clause] = STATE(4408), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(116), - [sym_identifier] = ACTIONS(689), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(693), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(705), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(723), - [anon_sym_else] = ACTIONS(725), - [anon_sym_DOLLARif] = ACTIONS(727), - [anon_sym_match] = ACTIONS(729), - [anon_sym_select] = ACTIONS(731), - [anon_sym_lock] = ACTIONS(733), - [anon_sym_rlock] = ACTIONS(733), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_sql] = ACTIONS(737), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [143] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4673), - [sym_short_element_list] = STATE(4675), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [144] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4637), - [sym_short_element_list] = STATE(4636), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [145] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4625), - [sym_short_element_list] = STATE(4629), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(945), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [146] = { - [sym__expression] = STATE(2802), - [sym__expression_without_blocks] = STATE(1922), - [sym__expression_with_blocks] = STATE(2890), - [sym_inc_expression] = STATE(1922), - [sym_dec_expression] = STATE(1922), - [sym_or_block_expression] = STATE(1922), - [sym_option_propagation_expression] = STATE(1922), - [sym_result_propagation_expression] = STATE(1922), - [sym_anon_struct_value_expression] = STATE(2902), - [sym_go_expression] = STATE(1922), - [sym_spawn_expression] = STATE(1922), - [sym_parenthesized_expression] = STATE(1922), - [sym_call_expression] = STATE(1922), - [sym_type_initializer] = STATE(2902), - [sym_function_literal] = STATE(1922), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1922), - [sym_receive_expression] = STATE(1922), - [sym_binary_expression] = STATE(1922), - [sym_as_type_cast_expression] = STATE(1922), - [sym__max_group] = STATE(1922), - [sym_literal] = STATE(1922), - [sym_map_init_expression] = STATE(2902), - [sym_array_creation] = STATE(1922), - [sym_fixed_array_creation] = STATE(1922), - [sym_selector_expression] = STATE(1922), - [sym_index_expression] = STATE(1922), - [sym_slice_expression] = STATE(1922), - [sym_if_expression] = STATE(2902), - [sym_compile_time_if_expression] = STATE(2902), - [sym_is_expression] = STATE(1922), - [sym_not_is_expression] = STATE(1922), - [sym_in_expression] = STATE(1922), - [sym_not_in_expression] = STATE(1922), - [sym_enum_fetch] = STATE(1922), - [sym_match_expression] = STATE(2902), - [sym_select_expression] = STATE(2902), - [sym_select_arm] = STATE(146), - [sym_select_arm_statement] = STATE(4300), - [sym_select_var_declaration] = STATE(4492), - [sym_lock_expression] = STATE(2902), - [sym_unsafe_expression] = STATE(2902), - [sym_sql_expression] = STATE(2902), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(1922), - [sym_mutability_modifiers] = STATE(530), - [sym_mutable_identifier] = STATE(3923), - [sym_identifier_list] = STATE(4494), - [sym_expression_without_blocks_list] = STATE(3359), - [sym_plain_type] = STATE(4147), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_send_statement] = STATE(4492), - [aux_sym_select_expression_repeat1] = STATE(146), - [sym_identifier] = ACTIONS(947), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(953), - [anon_sym_RBRACE] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_fn] = ACTIONS(961), - [anon_sym_PLUS] = ACTIONS(964), - [anon_sym_DASH] = ACTIONS(964), - [anon_sym_STAR] = ACTIONS(967), - [anon_sym_struct] = ACTIONS(970), - [anon_sym_mut] = ACTIONS(973), - [anon_sym_QMARK] = ACTIONS(976), - [anon_sym_BANG] = ACTIONS(979), - [anon_sym_go] = ACTIONS(982), - [anon_sym_spawn] = ACTIONS(985), - [anon_sym_json_DOTdecode] = ACTIONS(988), - [anon_sym_LBRACK2] = ACTIONS(991), - [anon_sym_TILDE] = ACTIONS(964), - [anon_sym_CARET] = ACTIONS(964), - [anon_sym_AMP] = ACTIONS(994), - [anon_sym_LT_DASH] = ACTIONS(997), - [sym_none] = ACTIONS(1000), - [sym_true] = ACTIONS(1000), - [sym_false] = ACTIONS(1000), - [sym_nil] = ACTIONS(1000), - [anon_sym_if] = ACTIONS(1003), - [anon_sym_else] = ACTIONS(1006), - [anon_sym_DOLLARif] = ACTIONS(1008), - [anon_sym_match] = ACTIONS(1011), - [anon_sym_select] = ACTIONS(1014), - [anon_sym_lock] = ACTIONS(1017), - [anon_sym_rlock] = ACTIONS(1017), - [anon_sym_unsafe] = ACTIONS(1020), - [anon_sym_sql] = ACTIONS(1023), - [sym_int_literal] = ACTIONS(1000), - [sym_float_literal] = ACTIONS(1026), - [sym_rune_literal] = ACTIONS(1026), - [anon_sym_AT] = ACTIONS(1029), - [anon_sym_shared] = ACTIONS(1032), - [anon_sym_map_LBRACK] = ACTIONS(1035), - [anon_sym_chan] = ACTIONS(1038), - [anon_sym_thread] = ACTIONS(1041), - [anon_sym_atomic] = ACTIONS(1044), - [sym___double_quote] = ACTIONS(1047), - [sym___single_quote] = ACTIONS(1050), - [sym___c_double_quote] = ACTIONS(1053), - [sym___c_single_quote] = ACTIONS(1056), - [sym___r_double_quote] = ACTIONS(1059), - [sym___r_single_quote] = ACTIONS(1062), - }, - [147] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4647), - [sym_short_element_list] = STATE(4644), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1065), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [148] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4463), - [sym_short_element_list] = STATE(4462), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1067), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [149] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4546), - [sym_short_element_list] = STATE(4551), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1069), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [150] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4501), - [sym_short_element_list] = STATE(4503), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1071), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [151] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4683), - [sym_short_element_list] = STATE(4682), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1073), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [152] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4579), - [sym_short_element_list] = STATE(4584), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1075), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [153] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4527), - [sym_short_element_list] = STATE(4606), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1077), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [154] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4436), - [sym_short_element_list] = STATE(4437), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1079), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [155] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4479), - [sym_short_element_list] = STATE(4547), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1081), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [156] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element_list] = STATE(4729), - [sym_short_element_list] = STATE(4728), - [sym_element] = STATE(1939), - [sym_keyed_element] = STATE(3476), - [sym_field_name] = STATE(4432), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1147), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_spread_expression] = STATE(3476), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_element_list_repeat1] = STATE(3466), - [aux_sym_short_element_list_repeat1] = STATE(265), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_DOT_DOT_DOT] = ACTIONS(635), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [157] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4727), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1091), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [158] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4537), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1151), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [159] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4632), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1153), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [160] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4680), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1155), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [161] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4605), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1157), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [162] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4455), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1159), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [163] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4679), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1161), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [164] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4732), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1163), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [165] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4587), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1165), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [166] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4631), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1167), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [167] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4639), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1169), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [168] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4506), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1171), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [169] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arms] = STATE(4439), - [sym_match_arm] = STATE(173), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(173), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(173), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1173), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [170] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1285), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1293), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_attribute_expression] = STATE(4027), - [sym_if_attribute] = STATE(4184), - [sym__plain_attribute] = STATE(4184), - [sym_literal_attribute] = STATE(4184), - [sym_value_attribute] = STATE(4013), - [sym_key_value_attribute] = STATE(4184), - [aux_sym__array_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(1209), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(1219), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [171] = { - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2777), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2864), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4687), - [sym_attribute_expression] = STATE(4027), - [sym_if_attribute] = STATE(4184), - [sym__plain_attribute] = STATE(4184), - [sym_literal_attribute] = STATE(4184), - [sym_value_attribute] = STATE(4013), - [sym_key_value_attribute] = STATE(4184), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1273), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1283), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [172] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arm] = STATE(172), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(172), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1305), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1308), - [anon_sym_LBRACE] = ACTIONS(1311), - [anon_sym_RBRACE] = ACTIONS(1314), - [anon_sym_LPAREN] = ACTIONS(1316), - [anon_sym_fn] = ACTIONS(1319), - [anon_sym_PLUS] = ACTIONS(1322), - [anon_sym_DASH] = ACTIONS(1322), - [anon_sym_STAR] = ACTIONS(1325), - [anon_sym_struct] = ACTIONS(1328), - [anon_sym_mut] = ACTIONS(1331), - [anon_sym_QMARK] = ACTIONS(1334), - [anon_sym_BANG] = ACTIONS(1337), - [anon_sym_go] = ACTIONS(1340), - [anon_sym_spawn] = ACTIONS(1343), - [anon_sym_json_DOTdecode] = ACTIONS(1346), - [anon_sym_LBRACK2] = ACTIONS(1349), - [anon_sym_TILDE] = ACTIONS(1322), - [anon_sym_CARET] = ACTIONS(1322), - [anon_sym_AMP] = ACTIONS(1352), - [anon_sym_LT_DASH] = ACTIONS(1355), - [sym_none] = ACTIONS(1358), - [sym_true] = ACTIONS(1358), - [sym_false] = ACTIONS(1358), - [sym_nil] = ACTIONS(1358), - [anon_sym_if] = ACTIONS(1361), - [anon_sym_else] = ACTIONS(1364), - [anon_sym_DOLLARif] = ACTIONS(1367), - [anon_sym_match] = ACTIONS(1370), - [anon_sym_select] = ACTIONS(1373), - [anon_sym_lock] = ACTIONS(1376), - [anon_sym_rlock] = ACTIONS(1376), - [anon_sym_unsafe] = ACTIONS(1379), - [anon_sym_sql] = ACTIONS(1382), - [sym_int_literal] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1385), - [sym_rune_literal] = ACTIONS(1385), - [anon_sym_AT] = ACTIONS(1388), - [anon_sym_shared] = ACTIONS(1391), - [anon_sym_map_LBRACK] = ACTIONS(1394), - [anon_sym_chan] = ACTIONS(1397), - [anon_sym_thread] = ACTIONS(1400), - [anon_sym_atomic] = ACTIONS(1403), - [sym___double_quote] = ACTIONS(1406), - [sym___single_quote] = ACTIONS(1409), - [sym___c_double_quote] = ACTIONS(1412), - [sym___c_single_quote] = ACTIONS(1415), - [sym___r_double_quote] = ACTIONS(1418), - [sym___r_single_quote] = ACTIONS(1421), - }, - [173] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2651), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2651), - [sym_dec_expression] = STATE(2651), - [sym_or_block_expression] = STATE(2651), - [sym_option_propagation_expression] = STATE(2651), - [sym_result_propagation_expression] = STATE(2651), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2651), - [sym_spawn_expression] = STATE(2651), - [sym_parenthesized_expression] = STATE(2651), - [sym_call_expression] = STATE(2651), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2651), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2651), - [sym_receive_expression] = STATE(2651), - [sym_binary_expression] = STATE(2651), - [sym_as_type_cast_expression] = STATE(2651), - [sym__max_group] = STATE(2651), - [sym_literal] = STATE(2651), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2651), - [sym_fixed_array_creation] = STATE(2651), - [sym_selector_expression] = STATE(2651), - [sym_index_expression] = STATE(2651), - [sym_slice_expression] = STATE(2651), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2651), - [sym_not_is_expression] = STATE(2651), - [sym_in_expression] = STATE(2651), - [sym_not_in_expression] = STATE(2651), - [sym_enum_fetch] = STATE(2651), - [sym_match_expression] = STATE(2795), - [sym_match_arm] = STATE(172), - [sym_match_expression_list] = STATE(4259), - [sym_match_arm_type] = STATE(3953), - [sym_match_else_arm_clause] = STATE(172), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2651), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(3937), - [aux_sym_match_arms_repeat1] = STATE(172), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_else] = ACTIONS(1121), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [174] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1434), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [175] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [176] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [177] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3527), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1496), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [178] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [179] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1500), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [180] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [181] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1504), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [182] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3489), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [183] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3516), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1508), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [184] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3498), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [185] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1512), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [186] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [187] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3520), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1516), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [188] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3512), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [189] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1520), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [190] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1522), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [191] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3518), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1524), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [192] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3519), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1526), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [193] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [194] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1530), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [195] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [196] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1534), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [197] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1536), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [198] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1538), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [199] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [200] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3485), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1542), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [201] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3494), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [202] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1546), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [203] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [204] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1550), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [205] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [206] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1554), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [207] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [208] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3531), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1558), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [209] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3486), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [210] = { - [sym__expression] = STATE(2358), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_argument] = STATE(3628), - [sym_type_initializer] = STATE(2571), - [sym_keyed_element] = STATE(3570), - [sym_field_name] = STATE(4502), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2522), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_spread_expression] = STATE(3570), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3570), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [211] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3357), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4418), - [sym_var_declaration] = STATE(4132), - [sym_assignment_statement] = STATE(4132), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [212] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3357), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4722), - [sym_var_declaration] = STATE(4132), - [sym_assignment_statement] = STATE(4132), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [213] = { - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3566), - [sym_expression_list] = STATE(3712), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_LF] = ACTIONS(485), - [anon_sym_CR] = ACTIONS(485), - [anon_sym_CR_LF] = ACTIONS(485), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_RBRACE] = ACTIONS(485), - [anon_sym_LPAREN] = ACTIONS(1570), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1572), - [anon_sym_DASH] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1574), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(1576), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1578), - [anon_sym_LBRACK2] = ACTIONS(1580), - [anon_sym_TILDE] = ACTIONS(1572), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1582), - [anon_sym_LT_DASH] = ACTIONS(1584), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1460), - [sym_rune_literal] = ACTIONS(1460), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1586), - [sym___single_quote] = ACTIONS(1588), - [sym___c_double_quote] = ACTIONS(1590), - [sym___c_single_quote] = ACTIONS(1592), - [sym___r_double_quote] = ACTIONS(1594), - [sym___r_single_quote] = ACTIONS(1596), - }, - [214] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3357), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4483), - [sym_var_declaration] = STATE(4132), - [sym_assignment_statement] = STATE(4132), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [215] = { - [sym__expression] = STATE(1789), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_strictly_expression_list] = STATE(4132), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3357), - [sym_expression_list] = STATE(3381), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_simple_statement] = STATE(4524), - [sym_var_declaration] = STATE(4132), - [sym_assignment_statement] = STATE(4132), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1600), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [216] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(994), - [sym_plain_type] = STATE(1091), - [sym__plain_type_without_special] = STATE(1059), - [sym_anon_struct_type] = STATE(1060), - [sym_multi_return_type] = STATE(1059), - [sym_result_type] = STATE(1059), - [sym_option_type] = STATE(1059), - [sym_qualified_type] = STATE(994), - [sym_fixed_array_type] = STATE(1060), - [sym_array_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_wrong_pointer_type] = STATE(1060), - [sym_map_type] = STATE(1060), - [sym_channel_type] = STATE(1060), - [sym_shared_type] = STATE(1060), - [sym_thread_type] = STATE(1060), - [sym_atomic_type] = STATE(1060), - [sym_generic_type] = STATE(1060), - [sym_function_type] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(1602), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym___global] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(1620), - [anon_sym_map_LBRACK] = ACTIONS(1622), - [anon_sym_chan] = ACTIONS(1624), - [anon_sym_thread] = ACTIONS(1626), - [anon_sym_atomic] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_DOLLARfor] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_asm] = ACTIONS(615), - [anon_sym_AT_LBRACK] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), - }, - [217] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(994), - [sym_plain_type] = STATE(1066), - [sym__plain_type_without_special] = STATE(1059), - [sym_anon_struct_type] = STATE(1060), - [sym_multi_return_type] = STATE(1059), - [sym_result_type] = STATE(1059), - [sym_option_type] = STATE(1059), - [sym_qualified_type] = STATE(994), - [sym_fixed_array_type] = STATE(1060), - [sym_array_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_wrong_pointer_type] = STATE(1060), - [sym_map_type] = STATE(1060), - [sym_channel_type] = STATE(1060), - [sym_shared_type] = STATE(1060), - [sym_thread_type] = STATE(1060), - [sym_atomic_type] = STATE(1060), - [sym_generic_type] = STATE(1060), - [sym_function_type] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(1602), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym___global] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(555), - [anon_sym_LBRACK2] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_LT_DASH] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), - [sym_rune_literal] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(1620), - [anon_sym_map_LBRACK] = ACTIONS(1622), - [anon_sym_chan] = ACTIONS(1624), - [anon_sym_thread] = ACTIONS(1626), - [anon_sym_atomic] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_defer] = ACTIONS(555), - [anon_sym_goto] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_DOLLARfor] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(555), - [anon_sym_asm] = ACTIONS(555), - [anon_sym_AT_LBRACK] = ACTIONS(555), - [sym___double_quote] = ACTIONS(555), - [sym___single_quote] = ACTIONS(555), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(555), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(555), - }, - [218] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(591), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_const] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym___global] = ACTIONS(595), - [anon_sym_type] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_union] = ACTIONS(595), - [anon_sym_pub] = ACTIONS(595), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_enum] = ACTIONS(595), - [anon_sym_interface] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(1630), - [anon_sym_go] = ACTIONS(595), - [anon_sym_spawn] = ACTIONS(595), - [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(595), - [sym_none] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_nil] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_DOLLARif] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_match] = ACTIONS(595), - [anon_sym_select] = ACTIONS(595), - [anon_sym_lock] = ACTIONS(595), - [anon_sym_rlock] = ACTIONS(595), - [anon_sym_unsafe] = ACTIONS(595), - [anon_sym_sql] = ACTIONS(595), - [sym_int_literal] = ACTIONS(595), - [sym_float_literal] = ACTIONS(595), - [sym_rune_literal] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_assert] = ACTIONS(595), - [anon_sym_defer] = ACTIONS(595), - [anon_sym_goto] = ACTIONS(595), - [anon_sym_break] = ACTIONS(595), - [anon_sym_continue] = ACTIONS(595), - [anon_sym_return] = ACTIONS(595), - [anon_sym_DOLLARfor] = ACTIONS(595), - [anon_sym_for] = ACTIONS(595), - [anon_sym_POUND] = ACTIONS(595), - [anon_sym_asm] = ACTIONS(595), - [anon_sym_AT_LBRACK] = ACTIONS(595), - [sym___double_quote] = ACTIONS(595), - [sym___single_quote] = ACTIONS(595), - [sym___c_double_quote] = ACTIONS(595), - [sym___c_single_quote] = ACTIONS(595), - [sym___r_double_quote] = ACTIONS(595), - [sym___r_single_quote] = ACTIONS(595), - }, - [219] = { - [sym_reference_expression] = STATE(4444), - [sym_type_reference_expression] = STATE(994), - [sym_plain_type] = STATE(1084), - [sym__plain_type_without_special] = STATE(1059), - [sym_anon_struct_type] = STATE(1060), - [sym_multi_return_type] = STATE(1059), - [sym_result_type] = STATE(1059), - [sym_option_type] = STATE(1059), - [sym_qualified_type] = STATE(994), - [sym_fixed_array_type] = STATE(1060), - [sym_array_type] = STATE(1060), - [sym_pointer_type] = STATE(1060), - [sym_wrong_pointer_type] = STATE(1060), - [sym_map_type] = STATE(1060), - [sym_channel_type] = STATE(1060), - [sym_shared_type] = STATE(1060), - [sym_thread_type] = STATE(1060), - [sym_atomic_type] = STATE(1060), - [sym_generic_type] = STATE(1060), - [sym_function_type] = STATE(1060), - [ts_builtin_sym_end] = ACTIONS(587), - [sym_identifier] = ACTIONS(1602), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(1604), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(1606), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(1608), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(1610), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(1612), - [anon_sym_BANG] = ACTIONS(1614), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(1616), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(1620), - [anon_sym_map_LBRACK] = ACTIONS(1622), - [anon_sym_chan] = ACTIONS(1624), - [anon_sym_thread] = ACTIONS(1626), - [anon_sym_atomic] = ACTIONS(1628), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), - }, - [220] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [ts_builtin_sym_end] = ACTIONS(583), - [sym_identifier] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_const] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym___global] = ACTIONS(585), - [anon_sym_type] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(585), - [anon_sym_union] = ACTIONS(585), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_enum] = ACTIONS(585), - [anon_sym_interface] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(585), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(585), - [anon_sym_assert] = ACTIONS(585), - [anon_sym_defer] = ACTIONS(585), - [anon_sym_goto] = ACTIONS(585), - [anon_sym_break] = ACTIONS(585), - [anon_sym_continue] = ACTIONS(585), - [anon_sym_return] = ACTIONS(585), - [anon_sym_DOLLARfor] = ACTIONS(585), - [anon_sym_for] = ACTIONS(585), - [anon_sym_POUND] = ACTIONS(585), - [anon_sym_asm] = ACTIONS(585), - [anon_sym_AT_LBRACK] = ACTIONS(585), - [sym___double_quote] = ACTIONS(585), - [sym___single_quote] = ACTIONS(585), - [sym___c_double_quote] = ACTIONS(585), - [sym___c_single_quote] = ACTIONS(585), - [sym___r_double_quote] = ACTIONS(585), - [sym___r_single_quote] = ACTIONS(585), - }, - [221] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1632), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [222] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1638), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [223] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4278), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1323), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [224] = { - [sym__expression] = STATE(2462), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4307), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [225] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2353), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [226] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4204), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(915), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [227] = { - [sym__expression] = STATE(2431), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4193), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [228] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(282), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [229] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1670), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [230] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(221), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [231] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1674), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [232] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4356), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1884), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [233] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(229), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1678), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [234] = { - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2631), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4277), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [235] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(231), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [236] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [aux_sym_strictly_expression_list_repeat1] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), - [anon_sym_LF] = ACTIONS(1684), - [anon_sym_CR] = ACTIONS(1684), - [anon_sym_CR_LF] = ACTIONS(1684), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1690), - [anon_sym___global] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1684), - [anon_sym_pub] = ACTIONS(1684), - [anon_sym_mut] = ACTIONS(1684), - [anon_sym_enum] = ACTIONS(1684), - [anon_sym_interface] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(1684), - [anon_sym_spawn] = ACTIONS(1684), - [anon_sym_json_DOTdecode] = ACTIONS(1684), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(1684), - [sym_true] = ACTIONS(1684), - [sym_false] = ACTIONS(1684), - [sym_nil] = ACTIONS(1684), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_DOLLARif] = ACTIONS(1684), - [anon_sym_is] = ACTIONS(1718), - [anon_sym_BANGis] = ACTIONS(1720), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_select] = ACTIONS(1684), - [anon_sym_STAR_EQ] = ACTIONS(1690), - [anon_sym_SLASH_EQ] = ACTIONS(1690), - [anon_sym_PERCENT_EQ] = ACTIONS(1690), - [anon_sym_LT_LT_EQ] = ACTIONS(1690), - [anon_sym_GT_GT_EQ] = ACTIONS(1690), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1690), - [anon_sym_AMP_EQ] = ACTIONS(1690), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1690), - [anon_sym_PLUS_EQ] = ACTIONS(1690), - [anon_sym_DASH_EQ] = ACTIONS(1690), - [anon_sym_PIPE_EQ] = ACTIONS(1690), - [anon_sym_CARET_EQ] = ACTIONS(1690), - [anon_sym_COLON_EQ] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1684), - [anon_sym_rlock] = ACTIONS(1684), - [anon_sym_unsafe] = ACTIONS(1684), - [anon_sym_sql] = ACTIONS(1684), - [sym_int_literal] = ACTIONS(1684), - [sym_float_literal] = ACTIONS(1684), - [sym_rune_literal] = ACTIONS(1684), - [anon_sym_AT] = ACTIONS(1684), - [anon_sym_shared] = ACTIONS(1684), - [anon_sym_map_LBRACK] = ACTIONS(1684), - [anon_sym_chan] = ACTIONS(1684), - [anon_sym_thread] = ACTIONS(1684), - [anon_sym_atomic] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_defer] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_DOLLARfor] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_asm] = ACTIONS(1684), - [anon_sym_AT_LBRACK] = ACTIONS(1684), - [sym___double_quote] = ACTIONS(1684), - [sym___single_quote] = ACTIONS(1684), - [sym___c_double_quote] = ACTIONS(1684), - [sym___c_single_quote] = ACTIONS(1684), - [sym___r_double_quote] = ACTIONS(1684), - [sym___r_single_quote] = ACTIONS(1684), - }, - [237] = { - [sym__expression] = STATE(2459), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4186), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [238] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4232), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2544), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [239] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [240] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [241] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(268), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [242] = { - [sym__expression] = STATE(2429), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4224), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [243] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1734), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [244] = { - [sym__expression] = STATE(2464), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4346), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [245] = { - [sym__expression] = STATE(2463), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2631), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4161), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [246] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(240), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [247] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(239), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [248] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [249] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4178), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2773), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [250] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(260), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [251] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2353), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [252] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2353), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [253] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4320), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1985), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [254] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4303), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2172), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [255] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4396), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1071), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [256] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(222), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [257] = { - [sym__expression] = STATE(2454), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4177), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [258] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4320), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1985), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [259] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4232), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2544), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [260] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1762), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [261] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [aux_sym_strictly_expression_list_repeat1] = STATE(3349), - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1766), - [anon_sym_CR] = ACTIONS(1766), - [anon_sym_CR_LF] = ACTIONS(1766), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_COMMA] = ACTIONS(1768), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(1770), - [anon_sym___global] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_pub] = ACTIONS(1766), - [anon_sym_mut] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_interface] = ACTIONS(1766), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(1766), - [anon_sym_spawn] = ACTIONS(1766), - [anon_sym_json_DOTdecode] = ACTIONS(1766), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(1766), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), - [sym_nil] = ACTIONS(1766), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_DOLLARif] = ACTIONS(1766), - [anon_sym_is] = ACTIONS(1718), - [anon_sym_BANGis] = ACTIONS(1720), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_select] = ACTIONS(1766), - [anon_sym_STAR_EQ] = ACTIONS(1770), - [anon_sym_SLASH_EQ] = ACTIONS(1770), - [anon_sym_PERCENT_EQ] = ACTIONS(1770), - [anon_sym_LT_LT_EQ] = ACTIONS(1770), - [anon_sym_GT_GT_EQ] = ACTIONS(1770), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1770), - [anon_sym_AMP_EQ] = ACTIONS(1770), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1770), - [anon_sym_PLUS_EQ] = ACTIONS(1770), - [anon_sym_DASH_EQ] = ACTIONS(1770), - [anon_sym_PIPE_EQ] = ACTIONS(1770), - [anon_sym_CARET_EQ] = ACTIONS(1770), - [anon_sym_COLON_EQ] = ACTIONS(1770), - [anon_sym_lock] = ACTIONS(1766), - [anon_sym_rlock] = ACTIONS(1766), - [anon_sym_unsafe] = ACTIONS(1766), - [anon_sym_sql] = ACTIONS(1766), - [sym_int_literal] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), - [sym_rune_literal] = ACTIONS(1766), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_shared] = ACTIONS(1766), - [anon_sym_map_LBRACK] = ACTIONS(1766), - [anon_sym_chan] = ACTIONS(1766), - [anon_sym_thread] = ACTIONS(1766), - [anon_sym_atomic] = ACTIONS(1766), - [anon_sym_assert] = ACTIONS(1766), - [anon_sym_defer] = ACTIONS(1766), - [anon_sym_goto] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_DOLLARfor] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_asm] = ACTIONS(1766), - [anon_sym_AT_LBRACK] = ACTIONS(1766), - [sym___double_quote] = ACTIONS(1766), - [sym___single_quote] = ACTIONS(1766), - [sym___c_double_quote] = ACTIONS(1766), - [sym___c_single_quote] = ACTIONS(1766), - [sym___r_double_quote] = ACTIONS(1766), - [sym___r_single_quote] = ACTIONS(1766), - }, - [262] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4179), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2915), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [263] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4303), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2172), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [264] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element] = STATE(1939), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(1780), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1783), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1789), - [anon_sym_LPAREN] = ACTIONS(1791), - [anon_sym_fn] = ACTIONS(1794), - [anon_sym_PLUS] = ACTIONS(1797), - [anon_sym_DASH] = ACTIONS(1797), - [anon_sym_STAR] = ACTIONS(1800), - [anon_sym_struct] = ACTIONS(1803), - [anon_sym_mut] = ACTIONS(1806), - [anon_sym_QMARK] = ACTIONS(1809), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_go] = ACTIONS(1815), - [anon_sym_spawn] = ACTIONS(1818), - [anon_sym_json_DOTdecode] = ACTIONS(1821), - [anon_sym_LBRACK2] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1797), - [anon_sym_CARET] = ACTIONS(1797), - [anon_sym_AMP] = ACTIONS(1827), - [anon_sym_LT_DASH] = ACTIONS(1830), - [sym_none] = ACTIONS(1833), - [sym_true] = ACTIONS(1833), - [sym_false] = ACTIONS(1833), - [sym_nil] = ACTIONS(1833), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_DOLLARif] = ACTIONS(1839), - [anon_sym_match] = ACTIONS(1842), - [anon_sym_select] = ACTIONS(1845), - [anon_sym_lock] = ACTIONS(1848), - [anon_sym_rlock] = ACTIONS(1848), - [anon_sym_unsafe] = ACTIONS(1851), - [anon_sym_sql] = ACTIONS(1854), - [sym_int_literal] = ACTIONS(1833), - [sym_float_literal] = ACTIONS(1857), - [sym_rune_literal] = ACTIONS(1857), - [anon_sym_AT] = ACTIONS(1860), - [anon_sym_shared] = ACTIONS(1863), - [anon_sym_map_LBRACK] = ACTIONS(1866), - [anon_sym_chan] = ACTIONS(1869), - [anon_sym_thread] = ACTIONS(1872), - [anon_sym_atomic] = ACTIONS(1875), - [sym___double_quote] = ACTIONS(1878), - [sym___single_quote] = ACTIONS(1881), - [sym___c_double_quote] = ACTIONS(1884), - [sym___c_single_quote] = ACTIONS(1887), - [sym___r_double_quote] = ACTIONS(1890), - [sym___r_single_quote] = ACTIONS(1893), - }, - [265] = { - [sym__expression] = STATE(1133), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_element] = STATE(1939), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_short_element_list_repeat1] = STATE(264), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [266] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4178), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2773), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [267] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(248), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [268] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1902), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [269] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(271), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [270] = { - [sym__expression] = STATE(2463), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4161), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [271] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1906), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [272] = { - [sym__expression] = STATE(2449), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4145), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [273] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(275), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [274] = { - [sym__expression] = STATE(2440), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4277), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [275] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(1910), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [276] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4139), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1183), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [277] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4109), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2139), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [278] = { - [sym__expression] = STATE(2453), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4106), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [279] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4216), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1718), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [280] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1918), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1921), - [anon_sym_LBRACE] = ACTIONS(1924), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1929), - [anon_sym_fn] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1935), - [anon_sym_DASH] = ACTIONS(1935), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_struct] = ACTIONS(1941), - [anon_sym_mut] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1947), - [anon_sym_BANG] = ACTIONS(1950), - [anon_sym_go] = ACTIONS(1953), - [anon_sym_spawn] = ACTIONS(1956), - [anon_sym_json_DOTdecode] = ACTIONS(1959), - [anon_sym_LBRACK2] = ACTIONS(1962), - [anon_sym_TILDE] = ACTIONS(1935), - [anon_sym_CARET] = ACTIONS(1935), - [anon_sym_AMP] = ACTIONS(1965), - [anon_sym_LT_DASH] = ACTIONS(1968), - [sym_none] = ACTIONS(1971), - [sym_true] = ACTIONS(1971), - [sym_false] = ACTIONS(1971), - [sym_nil] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_DOLLARif] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1980), - [anon_sym_select] = ACTIONS(1983), - [anon_sym_lock] = ACTIONS(1986), - [anon_sym_rlock] = ACTIONS(1986), - [anon_sym_unsafe] = ACTIONS(1989), - [anon_sym_sql] = ACTIONS(1992), - [sym_int_literal] = ACTIONS(1971), - [sym_float_literal] = ACTIONS(1995), - [sym_rune_literal] = ACTIONS(1995), - [anon_sym_AT] = ACTIONS(1998), - [anon_sym_shared] = ACTIONS(2001), - [anon_sym_map_LBRACK] = ACTIONS(2004), - [anon_sym_chan] = ACTIONS(2007), - [anon_sym_thread] = ACTIONS(2010), - [anon_sym_atomic] = ACTIONS(2013), - [sym___double_quote] = ACTIONS(2016), - [sym___single_quote] = ACTIONS(2019), - [sym___c_double_quote] = ACTIONS(2022), - [sym___c_single_quote] = ACTIONS(2025), - [sym___r_double_quote] = ACTIONS(2028), - [sym___r_single_quote] = ACTIONS(2031), - }, - [281] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(243), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [282] = { - [sym__expression] = STATE(2838), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_map_keyed_element] = STATE(2071), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym_map_init_expression_repeat1] = STATE(280), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_RBRACE] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [283] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4178), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2773), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [284] = { - [sym__expression] = STATE(2446), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4235), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [285] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4396), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(1071), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [286] = { - [sym__expression] = STATE(2441), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4398), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [287] = { - [sym__expression] = STATE(2442), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(4008), - [sym_expression_list] = STATE(4585), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_var_declaration] = STATE(4321), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [288] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4163), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_block] = STATE(2353), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [289] = { - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(573), - [sym_mutable_expression] = STATE(3878), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [290] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(349), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2066), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [291] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2072), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [292] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [293] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4576), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [294] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2078), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [295] = { - [sym__expression] = STATE(2640), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4576), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [296] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4421), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [297] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [298] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2092), - [anon_sym_LF] = ACTIONS(2092), - [anon_sym_CR] = ACTIONS(2092), - [anon_sym_CR_LF] = ACTIONS(2092), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2092), - [anon_sym_type] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2092), - [anon_sym_PLUS] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_STAR] = ACTIONS(2092), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2092), - [anon_sym_union] = ACTIONS(2092), - [anon_sym_pub] = ACTIONS(2092), - [anon_sym_mut] = ACTIONS(2092), - [anon_sym_enum] = ACTIONS(2092), - [anon_sym_interface] = ACTIONS(2092), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2092), - [anon_sym_spawn] = ACTIONS(2092), - [anon_sym_json_DOTdecode] = ACTIONS(2092), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_CARET] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_LT_DASH] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2092), - [sym_true] = ACTIONS(2092), - [sym_false] = ACTIONS(2092), - [sym_nil] = ACTIONS(2092), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_DOLLARif] = ACTIONS(2092), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2092), - [anon_sym_select] = ACTIONS(2092), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2092), - [anon_sym_rlock] = ACTIONS(2092), - [anon_sym_unsafe] = ACTIONS(2092), - [anon_sym_sql] = ACTIONS(2092), - [sym_int_literal] = ACTIONS(2092), - [sym_float_literal] = ACTIONS(2092), - [sym_rune_literal] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2092), - [anon_sym_shared] = ACTIONS(2092), - [anon_sym_map_LBRACK] = ACTIONS(2092), - [anon_sym_chan] = ACTIONS(2092), - [anon_sym_thread] = ACTIONS(2092), - [anon_sym_atomic] = ACTIONS(2092), - [anon_sym_assert] = ACTIONS(2092), - [anon_sym_defer] = ACTIONS(2092), - [anon_sym_goto] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_DOLLARfor] = ACTIONS(2092), - [anon_sym_for] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(2092), - [anon_sym_asm] = ACTIONS(2092), - [anon_sym_AT_LBRACK] = ACTIONS(2092), - [sym___double_quote] = ACTIONS(2092), - [sym___single_quote] = ACTIONS(2092), - [sym___c_double_quote] = ACTIONS(2092), - [sym___c_single_quote] = ACTIONS(2092), - [sym___r_double_quote] = ACTIONS(2092), - [sym___r_single_quote] = ACTIONS(2092), - }, - [299] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4535), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [300] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4448), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [301] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [302] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(294), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2096), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [303] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [304] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2098), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [305] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4498), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [306] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4505), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [307] = { - [sym__expression] = STATE(2632), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4498), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [308] = { - [sym__expression] = STATE(2638), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4535), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [309] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [310] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4578), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [311] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_CR] = ACTIONS(2108), - [anon_sym_CR_LF] = ACTIONS(2108), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2108), - [anon_sym___global] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2108), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_STAR_EQ] = ACTIONS(2108), - [anon_sym_SLASH_EQ] = ACTIONS(2108), - [anon_sym_PERCENT_EQ] = ACTIONS(2108), - [anon_sym_LT_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_GT_EQ] = ACTIONS(2108), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2108), - [anon_sym_AMP_EQ] = ACTIONS(2108), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2108), - [anon_sym_PLUS_EQ] = ACTIONS(2108), - [anon_sym_DASH_EQ] = ACTIONS(2108), - [anon_sym_PIPE_EQ] = ACTIONS(2108), - [anon_sym_CARET_EQ] = ACTIONS(2108), - [anon_sym_COLON_EQ] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - [sym_rune_literal] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2108), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [anon_sym_assert] = ACTIONS(2108), - [anon_sym_defer] = ACTIONS(2108), - [anon_sym_goto] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_DOLLARfor] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_asm] = ACTIONS(2108), - [anon_sym_AT_LBRACK] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2108), - [sym___single_quote] = ACTIONS(2108), - [sym___c_double_quote] = ACTIONS(2108), - [sym___c_single_quote] = ACTIONS(2108), - [sym___r_double_quote] = ACTIONS(2108), - [sym___r_single_quote] = ACTIONS(2108), - }, - [312] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_CR] = ACTIONS(2112), - [anon_sym_CR_LF] = ACTIONS(2112), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2112), - [anon_sym___global] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_interface] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2112), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_STAR_EQ] = ACTIONS(2112), - [anon_sym_SLASH_EQ] = ACTIONS(2112), - [anon_sym_PERCENT_EQ] = ACTIONS(2112), - [anon_sym_LT_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_GT_EQ] = ACTIONS(2112), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2112), - [anon_sym_AMP_EQ] = ACTIONS(2112), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2112), - [anon_sym_PLUS_EQ] = ACTIONS(2112), - [anon_sym_DASH_EQ] = ACTIONS(2112), - [anon_sym_PIPE_EQ] = ACTIONS(2112), - [anon_sym_CARET_EQ] = ACTIONS(2112), - [anon_sym_COLON_EQ] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - [sym_rune_literal] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2112), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [anon_sym_assert] = ACTIONS(2112), - [anon_sym_defer] = ACTIONS(2112), - [anon_sym_goto] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_DOLLARfor] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_asm] = ACTIONS(2112), - [anon_sym_AT_LBRACK] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2112), - [sym___single_quote] = ACTIONS(2112), - [sym___c_double_quote] = ACTIONS(2112), - [sym___c_single_quote] = ACTIONS(2112), - [sym___r_double_quote] = ACTIONS(2112), - [sym___r_single_quote] = ACTIONS(2112), - }, - [313] = { - [sym__expression] = STATE(2618), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(573), - [sym_mutable_expression] = STATE(3878), - [sym_expression_list] = STATE(4385), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [314] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4383), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [315] = { - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4730), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [316] = { - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4641), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [317] = { - [sym__expression] = STATE(2662), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4641), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [318] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4469), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [319] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2116), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [320] = { - [sym__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4435), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [321] = { - [sym__expression] = STATE(2637), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4435), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [322] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [323] = { - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4687), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [324] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2120), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [325] = { - [sym__expression] = STATE(2656), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4687), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [326] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_CR] = ACTIONS(2124), - [anon_sym_CR_LF] = ACTIONS(2124), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_COMMA] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2124), - [anon_sym___global] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_interface] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2124), - [anon_sym_spawn] = ACTIONS(2124), - [anon_sym_json_DOTdecode] = ACTIONS(2124), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2124), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(2124), - [sym_true] = ACTIONS(2124), - [sym_false] = ACTIONS(2124), - [sym_nil] = ACTIONS(2124), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_DOLLARif] = ACTIONS(2124), - [anon_sym_is] = ACTIONS(2126), - [anon_sym_BANGis] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_select] = ACTIONS(2124), - [anon_sym_STAR_EQ] = ACTIONS(2124), - [anon_sym_SLASH_EQ] = ACTIONS(2124), - [anon_sym_PERCENT_EQ] = ACTIONS(2124), - [anon_sym_LT_LT_EQ] = ACTIONS(2124), - [anon_sym_GT_GT_EQ] = ACTIONS(2124), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2124), - [anon_sym_AMP_EQ] = ACTIONS(2124), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2124), - [anon_sym_PLUS_EQ] = ACTIONS(2124), - [anon_sym_DASH_EQ] = ACTIONS(2124), - [anon_sym_PIPE_EQ] = ACTIONS(2124), - [anon_sym_CARET_EQ] = ACTIONS(2124), - [anon_sym_COLON_EQ] = ACTIONS(2124), - [anon_sym_lock] = ACTIONS(2124), - [anon_sym_rlock] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_sql] = ACTIONS(2124), - [sym_int_literal] = ACTIONS(2124), - [sym_float_literal] = ACTIONS(2124), - [sym_rune_literal] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2124), - [anon_sym_shared] = ACTIONS(2124), - [anon_sym_map_LBRACK] = ACTIONS(2124), - [anon_sym_chan] = ACTIONS(2124), - [anon_sym_thread] = ACTIONS(2124), - [anon_sym_atomic] = ACTIONS(2124), - [anon_sym_assert] = ACTIONS(2124), - [anon_sym_defer] = ACTIONS(2124), - [anon_sym_goto] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_DOLLARfor] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(2124), - [anon_sym_asm] = ACTIONS(2124), - [anon_sym_AT_LBRACK] = ACTIONS(2124), - [sym___double_quote] = ACTIONS(2124), - [sym___single_quote] = ACTIONS(2124), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2124), - [sym___r_double_quote] = ACTIONS(2124), - [sym___r_single_quote] = ACTIONS(2124), - }, - [327] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2130), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [328] = { - [sym__expression] = STATE(2652), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4466), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [329] = { - [sym__expression] = STATE(2652), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4466), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [330] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4415), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [331] = { - [sym__expression] = STATE(2649), - [sym__expression_without_blocks] = STATE(2850), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2850), - [sym_dec_expression] = STATE(2850), - [sym_or_block_expression] = STATE(2850), - [sym_option_propagation_expression] = STATE(2850), - [sym_result_propagation_expression] = STATE(2850), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2850), - [sym_spawn_expression] = STATE(2850), - [sym_parenthesized_expression] = STATE(2850), - [sym_call_expression] = STATE(2850), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2850), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2850), - [sym_receive_expression] = STATE(2850), - [sym_binary_expression] = STATE(2850), - [sym_as_type_cast_expression] = STATE(2850), - [sym__max_group] = STATE(2850), - [sym_literal] = STATE(2850), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2850), - [sym_fixed_array_creation] = STATE(2850), - [sym_selector_expression] = STATE(2850), - [sym_index_expression] = STATE(2850), - [sym_slice_expression] = STATE(2850), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2850), - [sym_not_is_expression] = STATE(2850), - [sym_in_expression] = STATE(2850), - [sym_not_in_expression] = STATE(2850), - [sym_enum_fetch] = STATE(2850), - [sym_match_expression] = STATE(2795), - [sym_match_arm_type] = STATE(4391), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2850), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(3951), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(4395), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(1127), - [anon_sym_lock] = ACTIONS(1129), - [anon_sym_rlock] = ACTIONS(1129), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [332] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(319), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2134), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [333] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(304), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2136), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [334] = { - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3566), - [sym_expression_list] = STATE(3767), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [335] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2138), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [336] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(380), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2140), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [337] = { - [sym__expression] = STATE(2661), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4557), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [338] = { - [sym__expression] = STATE(2661), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4557), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [339] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2142), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [340] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(327), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2144), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [341] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2146), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [342] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [343] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2148), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [344] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2150), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [345] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(366), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2152), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [346] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(335), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2154), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [347] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4427), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [348] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4446), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [349] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [350] = { - [sym__expression] = STATE(2643), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4623), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [351] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4649), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [352] = { - [sym__expression] = STATE(2644), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4649), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [353] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2076), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_STAR_EQ] = ACTIONS(2076), - [anon_sym_SLASH_EQ] = ACTIONS(2076), - [anon_sym_PERCENT_EQ] = ACTIONS(2076), - [anon_sym_LT_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2076), - [anon_sym_AMP_EQ] = ACTIONS(2076), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2076), - [anon_sym_PLUS_EQ] = ACTIONS(2076), - [anon_sym_DASH_EQ] = ACTIONS(2076), - [anon_sym_PIPE_EQ] = ACTIONS(2076), - [anon_sym_CARET_EQ] = ACTIONS(2076), - [anon_sym_COLON_EQ] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [354] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_CR] = ACTIONS(2164), - [anon_sym_CR_LF] = ACTIONS(2164), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2164), - [anon_sym___global] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_mut] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2164), - [anon_sym_spawn] = ACTIONS(2164), - [anon_sym_json_DOTdecode] = ACTIONS(2164), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_LT_DASH] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_CARET] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_or] = ACTIONS(2164), - [sym_none] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_nil] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_DOLLARif] = ACTIONS(2164), - [anon_sym_is] = ACTIONS(2164), - [anon_sym_BANGis] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_BANGin] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_select] = ACTIONS(2164), - [anon_sym_STAR_EQ] = ACTIONS(2164), - [anon_sym_SLASH_EQ] = ACTIONS(2164), - [anon_sym_PERCENT_EQ] = ACTIONS(2164), - [anon_sym_LT_LT_EQ] = ACTIONS(2164), - [anon_sym_GT_GT_EQ] = ACTIONS(2164), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2164), - [anon_sym_AMP_EQ] = ACTIONS(2164), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2164), - [anon_sym_PLUS_EQ] = ACTIONS(2164), - [anon_sym_DASH_EQ] = ACTIONS(2164), - [anon_sym_PIPE_EQ] = ACTIONS(2164), - [anon_sym_CARET_EQ] = ACTIONS(2164), - [anon_sym_COLON_EQ] = ACTIONS(2164), - [anon_sym_lock] = ACTIONS(2164), - [anon_sym_rlock] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_sql] = ACTIONS(2164), - [sym_int_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2164), - [sym_rune_literal] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_shared] = ACTIONS(2164), - [anon_sym_map_LBRACK] = ACTIONS(2164), - [anon_sym_chan] = ACTIONS(2164), - [anon_sym_thread] = ACTIONS(2164), - [anon_sym_atomic] = ACTIONS(2164), - [anon_sym_assert] = ACTIONS(2164), - [anon_sym_defer] = ACTIONS(2164), - [anon_sym_goto] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_DOLLARfor] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2164), - [anon_sym_asm] = ACTIONS(2164), - [anon_sym_AT_LBRACK] = ACTIONS(2164), - [sym___double_quote] = ACTIONS(2164), - [sym___single_quote] = ACTIONS(2164), - [sym___c_double_quote] = ACTIONS(2164), - [sym___c_single_quote] = ACTIONS(2164), - [sym___r_double_quote] = ACTIONS(2164), - [sym___r_single_quote] = ACTIONS(2164), - }, - [355] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4385), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [356] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4490), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [357] = { - [sym__expression] = STATE(2643), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4623), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [358] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(364), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2168), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [359] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4421), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [360] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4511), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [361] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2174), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [362] = { - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(1422), - [sym_expression_list] = STATE(1519), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [363] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LF] = ACTIONS(2210), - [anon_sym_CR] = ACTIONS(2210), - [anon_sym_CR_LF] = ACTIONS(2210), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_const] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2210), - [anon_sym___global] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2210), - [anon_sym_pub] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2210), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(1718), - [anon_sym_BANGis] = ACTIONS(1720), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_STAR_EQ] = ACTIONS(2210), - [anon_sym_SLASH_EQ] = ACTIONS(2210), - [anon_sym_PERCENT_EQ] = ACTIONS(2210), - [anon_sym_LT_LT_EQ] = ACTIONS(2210), - [anon_sym_GT_GT_EQ] = ACTIONS(2210), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2210), - [anon_sym_AMP_EQ] = ACTIONS(2210), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2210), - [anon_sym_PLUS_EQ] = ACTIONS(2210), - [anon_sym_DASH_EQ] = ACTIONS(2210), - [anon_sym_PIPE_EQ] = ACTIONS(2210), - [anon_sym_CARET_EQ] = ACTIONS(2210), - [anon_sym_COLON_EQ] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - [sym_rune_literal] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2210), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [anon_sym_assert] = ACTIONS(2210), - [anon_sym_defer] = ACTIONS(2210), - [anon_sym_goto] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_DOLLARfor] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_asm] = ACTIONS(2210), - [anon_sym_AT_LBRACK] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2210), - [sym___single_quote] = ACTIONS(2210), - [sym___c_double_quote] = ACTIONS(2210), - [sym___c_single_quote] = ACTIONS(2210), - [sym___r_double_quote] = ACTIONS(2210), - [sym___r_single_quote] = ACTIONS(2210), - }, - [364] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2212), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [365] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4448), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [366] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2216), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [367] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_CR] = ACTIONS(2220), - [anon_sym_CR_LF] = ACTIONS(2220), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2220), - [anon_sym___global] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(1694), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1696), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1704), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2220), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_LT_DASH] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(1696), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1696), - [anon_sym_AMP_CARET] = ACTIONS(1696), - [anon_sym_AMP_AMP] = ACTIONS(1712), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_or] = ACTIONS(1716), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(1718), - [anon_sym_BANGis] = ACTIONS(1720), - [anon_sym_in] = ACTIONS(1722), - [anon_sym_BANGin] = ACTIONS(1724), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_STAR_EQ] = ACTIONS(2220), - [anon_sym_SLASH_EQ] = ACTIONS(2220), - [anon_sym_PERCENT_EQ] = ACTIONS(2220), - [anon_sym_LT_LT_EQ] = ACTIONS(2220), - [anon_sym_GT_GT_EQ] = ACTIONS(2220), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2220), - [anon_sym_AMP_EQ] = ACTIONS(2220), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2220), - [anon_sym_PLUS_EQ] = ACTIONS(2220), - [anon_sym_DASH_EQ] = ACTIONS(2220), - [anon_sym_PIPE_EQ] = ACTIONS(2220), - [anon_sym_CARET_EQ] = ACTIONS(2220), - [anon_sym_COLON_EQ] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), - [sym_rune_literal] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2220), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [anon_sym_assert] = ACTIONS(2220), - [anon_sym_defer] = ACTIONS(2220), - [anon_sym_goto] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_DOLLARfor] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_asm] = ACTIONS(2220), - [anon_sym_AT_LBRACK] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2220), - [sym___single_quote] = ACTIONS(2220), - [sym___c_double_quote] = ACTIONS(2220), - [sym___c_single_quote] = ACTIONS(2220), - [sym___r_double_quote] = ACTIONS(2220), - [sym___r_single_quote] = ACTIONS(2220), - }, - [368] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4532), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [369] = { - [sym__expression] = STATE(958), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(1422), - [sym_expression_list] = STATE(1522), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [370] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4553), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [371] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2226), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [372] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(371), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(1189), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [373] = { - [sym_type_parameters] = STATE(4291), - [sym_argument_list] = STATE(953), - [sym_or_block] = STATE(954), - [ts_builtin_sym_end] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_CR] = ACTIONS(2230), - [anon_sym_CR_LF] = ACTIONS(2230), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1686), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(1692), - [anon_sym_EQ] = ACTIONS(2230), - [anon_sym___global] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(1700), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_pub] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_QMARK] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_go] = ACTIONS(2230), - [anon_sym_spawn] = ACTIONS(2230), - [anon_sym_json_DOTdecode] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(1710), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_CARET] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_or] = ACTIONS(2230), - [sym_none] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_nil] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(1686), - [anon_sym_POUND_LBRACK] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_DOLLARif] = ACTIONS(2230), - [anon_sym_is] = ACTIONS(2230), - [anon_sym_BANGis] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_BANGin] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_select] = ACTIONS(2230), - [anon_sym_STAR_EQ] = ACTIONS(2230), - [anon_sym_SLASH_EQ] = ACTIONS(2230), - [anon_sym_PERCENT_EQ] = ACTIONS(2230), - [anon_sym_LT_LT_EQ] = ACTIONS(2230), - [anon_sym_GT_GT_EQ] = ACTIONS(2230), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2230), - [anon_sym_AMP_EQ] = ACTIONS(2230), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2230), - [anon_sym_PLUS_EQ] = ACTIONS(2230), - [anon_sym_DASH_EQ] = ACTIONS(2230), - [anon_sym_PIPE_EQ] = ACTIONS(2230), - [anon_sym_CARET_EQ] = ACTIONS(2230), - [anon_sym_COLON_EQ] = ACTIONS(2230), - [anon_sym_lock] = ACTIONS(2230), - [anon_sym_rlock] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_sql] = ACTIONS(2230), - [sym_int_literal] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), - [sym_rune_literal] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_shared] = ACTIONS(2230), - [anon_sym_map_LBRACK] = ACTIONS(2230), - [anon_sym_chan] = ACTIONS(2230), - [anon_sym_thread] = ACTIONS(2230), - [anon_sym_atomic] = ACTIONS(2230), - [anon_sym_assert] = ACTIONS(2230), - [anon_sym_defer] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_DOLLARfor] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym_AT_LBRACK] = ACTIONS(2230), - [sym___double_quote] = ACTIONS(2230), - [sym___single_quote] = ACTIONS(2230), - [sym___c_double_quote] = ACTIONS(2230), - [sym___c_single_quote] = ACTIONS(2230), - [sym___r_double_quote] = ACTIONS(2230), - [sym___r_single_quote] = ACTIONS(2230), - }, - [374] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1388), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1348), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(344), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2232), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1223), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [375] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2243), - [anon_sym_fn] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2249), - [anon_sym_DASH] = ACTIONS(2249), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_RBRACK] = ACTIONS(2255), - [anon_sym_struct] = ACTIONS(2257), - [anon_sym_mut] = ACTIONS(2260), - [anon_sym_QMARK] = ACTIONS(2263), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_go] = ACTIONS(2269), - [anon_sym_spawn] = ACTIONS(2272), - [anon_sym_json_DOTdecode] = ACTIONS(2275), - [anon_sym_LBRACK2] = ACTIONS(2278), - [anon_sym_TILDE] = ACTIONS(2249), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2281), - [anon_sym_LT_DASH] = ACTIONS(2284), - [sym_none] = ACTIONS(2287), - [sym_true] = ACTIONS(2287), - [sym_false] = ACTIONS(2287), - [sym_nil] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2290), - [anon_sym_DOLLARif] = ACTIONS(2293), - [anon_sym_match] = ACTIONS(2296), - [anon_sym_select] = ACTIONS(2299), - [anon_sym_lock] = ACTIONS(2302), - [anon_sym_rlock] = ACTIONS(2302), - [anon_sym_unsafe] = ACTIONS(2305), - [anon_sym_sql] = ACTIONS(2308), - [sym_int_literal] = ACTIONS(2287), - [sym_float_literal] = ACTIONS(2311), - [sym_rune_literal] = ACTIONS(2311), - [anon_sym_AT] = ACTIONS(2314), - [anon_sym_shared] = ACTIONS(2317), - [anon_sym_map_LBRACK] = ACTIONS(2320), - [anon_sym_chan] = ACTIONS(2323), - [anon_sym_thread] = ACTIONS(2326), - [anon_sym_atomic] = ACTIONS(2329), - [sym___double_quote] = ACTIONS(2332), - [sym___single_quote] = ACTIONS(2335), - [sym___c_double_quote] = ACTIONS(2338), - [sym___c_single_quote] = ACTIONS(2341), - [sym___r_double_quote] = ACTIONS(2344), - [sym___r_single_quote] = ACTIONS(2347), - }, - [376] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4532), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [377] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4553), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [378] = { - [sym__expression] = STATE(2658), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4730), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [379] = { - [sym__expression] = STATE(2365), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3566), - [sym_expression_list] = STATE(3766), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [380] = { - [sym__expression] = STATE(1281), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [aux_sym__array_repeat1] = STATE(375), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_RBRACK] = ACTIONS(2354), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [381] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4553), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2356), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [382] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4427), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [383] = { - [sym__expression] = STATE(2650), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3656), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4672), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [384] = { - [sym__expression] = STATE(2605), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3939), - [sym_expression_list] = STATE(4569), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [385] = { - [sym__expression] = STATE(2650), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_range] = STATE(4672), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(1291), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [386] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [387] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2982), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(3004), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2376), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2378), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [388] = { - [sym__expression] = STATE(2695), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4508), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [389] = { - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(696), - [sym_mutable_expression] = STATE(3343), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [390] = { - [sym_else_branch] = STATE(901), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_CR] = ACTIONS(2400), - [anon_sym_CR_LF] = ACTIONS(2400), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_EQ] = ACTIONS(2400), - [anon_sym___global] = ACTIONS(2400), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PERCENT] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_EQ_EQ] = ACTIONS(2400), - [anon_sym_BANG_EQ] = ACTIONS(2400), - [anon_sym_LT_EQ] = ACTIONS(2400), - [anon_sym_GT_EQ] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_union] = ACTIONS(2400), - [anon_sym_pub] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_interface] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2400), - [anon_sym_DASH_DASH] = ACTIONS(2400), - [anon_sym_QMARK] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_go] = ACTIONS(2400), - [anon_sym_spawn] = ACTIONS(2400), - [anon_sym_json_DOTdecode] = ACTIONS(2400), - [anon_sym_LBRACK2] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_LT_DASH] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(2400), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2400), - [anon_sym_AMP_CARET] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_or] = ACTIONS(2400), - [sym_none] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_nil] = ACTIONS(2400), - [anon_sym_QMARK_DOT] = ACTIONS(2400), - [anon_sym_POUND_LBRACK] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_DOLLARif] = ACTIONS(2400), - [anon_sym_is] = ACTIONS(2400), - [anon_sym_BANGis] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_BANGin] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_select] = ACTIONS(2400), - [anon_sym_STAR_EQ] = ACTIONS(2400), - [anon_sym_SLASH_EQ] = ACTIONS(2400), - [anon_sym_PERCENT_EQ] = ACTIONS(2400), - [anon_sym_LT_LT_EQ] = ACTIONS(2400), - [anon_sym_GT_GT_EQ] = ACTIONS(2400), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2400), - [anon_sym_AMP_EQ] = ACTIONS(2400), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2400), - [anon_sym_PLUS_EQ] = ACTIONS(2400), - [anon_sym_DASH_EQ] = ACTIONS(2400), - [anon_sym_PIPE_EQ] = ACTIONS(2400), - [anon_sym_CARET_EQ] = ACTIONS(2400), - [anon_sym_COLON_EQ] = ACTIONS(2400), - [anon_sym_lock] = ACTIONS(2400), - [anon_sym_rlock] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_sql] = ACTIONS(2400), - [sym_int_literal] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - [sym_rune_literal] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2400), - [anon_sym_chan] = ACTIONS(2400), - [anon_sym_thread] = ACTIONS(2400), - [anon_sym_atomic] = ACTIONS(2400), - [anon_sym_assert] = ACTIONS(2400), - [anon_sym_defer] = ACTIONS(2400), - [anon_sym_goto] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_DOLLARfor] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_asm] = ACTIONS(2400), - [anon_sym_AT_LBRACK] = ACTIONS(2400), - [sym___double_quote] = ACTIONS(2400), - [sym___single_quote] = ACTIONS(2400), - [sym___c_double_quote] = ACTIONS(2400), - [sym___c_single_quote] = ACTIONS(2400), - [sym___r_double_quote] = ACTIONS(2400), - [sym___r_single_quote] = ACTIONS(2400), - }, - [391] = { - [sym_else_branch] = STATE(922), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_CR] = ACTIONS(2406), - [anon_sym_CR_LF] = ACTIONS(2406), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_COMMA] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(2406), - [anon_sym___global] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_interface] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2406), - [anon_sym_json_DOTdecode] = ACTIONS(2406), - [anon_sym_LBRACK2] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_LT_DASH] = ACTIONS(2406), - [anon_sym_LT_LT] = ACTIONS(2406), - [anon_sym_GT_GT] = ACTIONS(2406), - [anon_sym_GT_GT_GT] = ACTIONS(2406), - [anon_sym_AMP_CARET] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_or] = ACTIONS(2406), - [sym_none] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_nil] = ACTIONS(2406), - [anon_sym_QMARK_DOT] = ACTIONS(2406), - [anon_sym_POUND_LBRACK] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(2402), - [anon_sym_DOLLARif] = ACTIONS(2406), - [anon_sym_is] = ACTIONS(2406), - [anon_sym_BANGis] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_BANGin] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_select] = ACTIONS(2406), - [anon_sym_STAR_EQ] = ACTIONS(2406), - [anon_sym_SLASH_EQ] = ACTIONS(2406), - [anon_sym_PERCENT_EQ] = ACTIONS(2406), - [anon_sym_LT_LT_EQ] = ACTIONS(2406), - [anon_sym_GT_GT_EQ] = ACTIONS(2406), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2406), - [anon_sym_AMP_EQ] = ACTIONS(2406), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2406), - [anon_sym_PLUS_EQ] = ACTIONS(2406), - [anon_sym_DASH_EQ] = ACTIONS(2406), - [anon_sym_PIPE_EQ] = ACTIONS(2406), - [anon_sym_CARET_EQ] = ACTIONS(2406), - [anon_sym_COLON_EQ] = ACTIONS(2406), - [anon_sym_lock] = ACTIONS(2406), - [anon_sym_rlock] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_sql] = ACTIONS(2406), - [sym_int_literal] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), - [sym_rune_literal] = ACTIONS(2406), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_shared] = ACTIONS(2406), - [anon_sym_map_LBRACK] = ACTIONS(2406), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2406), - [anon_sym_atomic] = ACTIONS(2406), - [anon_sym_assert] = ACTIONS(2406), - [anon_sym_defer] = ACTIONS(2406), - [anon_sym_goto] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_DOLLARfor] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_asm] = ACTIONS(2406), - [anon_sym_AT_LBRACK] = ACTIONS(2406), - [sym___double_quote] = ACTIONS(2406), - [sym___single_quote] = ACTIONS(2406), - [sym___c_double_quote] = ACTIONS(2406), - [sym___c_single_quote] = ACTIONS(2406), - [sym___r_double_quote] = ACTIONS(2406), - [sym___r_single_quote] = ACTIONS(2406), - }, - [392] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2998), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2996), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2408), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2410), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [393] = { - [sym__expression] = STATE(2615), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(573), - [sym_mutable_expression] = STATE(3343), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [394] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2946), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2999), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2412), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2414), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [395] = { - [sym__expression] = STATE(2859), - [sym__expression_without_blocks] = STATE(2869), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2869), - [sym_dec_expression] = STATE(2869), - [sym_or_block_expression] = STATE(2869), - [sym_option_propagation_expression] = STATE(2869), - [sym_result_propagation_expression] = STATE(2869), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2869), - [sym_spawn_expression] = STATE(2869), - [sym_parenthesized_expression] = STATE(2869), - [sym_call_expression] = STATE(2869), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2869), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2869), - [sym_receive_expression] = STATE(2869), - [sym_binary_expression] = STATE(2869), - [sym_as_type_cast_expression] = STATE(2869), - [sym__max_group] = STATE(2869), - [sym_literal] = STATE(2869), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2869), - [sym_fixed_array_creation] = STATE(2869), - [sym_selector_expression] = STATE(2869), - [sym_index_expression] = STATE(2869), - [sym_slice_expression] = STATE(2869), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2869), - [sym_not_is_expression] = STATE(2869), - [sym_in_expression] = STATE(2869), - [sym_not_in_expression] = STATE(2869), - [sym_enum_fetch] = STATE(2869), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2869), - [sym_mutability_modifiers] = STATE(817), - [sym_expression_without_blocks_list] = STATE(4538), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [396] = { - [sym__expression] = STATE(2859), - [sym__expression_without_blocks] = STATE(2869), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2869), - [sym_dec_expression] = STATE(2869), - [sym_or_block_expression] = STATE(2869), - [sym_option_propagation_expression] = STATE(2869), - [sym_result_propagation_expression] = STATE(2869), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2869), - [sym_spawn_expression] = STATE(2869), - [sym_parenthesized_expression] = STATE(2869), - [sym_call_expression] = STATE(2869), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2869), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2869), - [sym_receive_expression] = STATE(2869), - [sym_binary_expression] = STATE(2869), - [sym_as_type_cast_expression] = STATE(2869), - [sym__max_group] = STATE(2869), - [sym_literal] = STATE(2869), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2869), - [sym_fixed_array_creation] = STATE(2869), - [sym_selector_expression] = STATE(2869), - [sym_index_expression] = STATE(2869), - [sym_slice_expression] = STATE(2869), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2869), - [sym_not_is_expression] = STATE(2869), - [sym_in_expression] = STATE(2869), - [sym_not_in_expression] = STATE(2869), - [sym_enum_fetch] = STATE(2869), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2869), - [sym_mutability_modifiers] = STATE(817), - [sym_expression_without_blocks_list] = STATE(4534), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [397] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2968), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2978), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2416), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2418), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [398] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2983), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2967), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2420), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2422), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [399] = { - [sym__expression] = STATE(973), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(749), - [sym_mutable_expression] = STATE(1428), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [400] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2947), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2942), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2424), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2426), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [401] = { - [sym__expression] = STATE(2691), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2428), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [402] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2977), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2937), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2430), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2432), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [403] = { - [sym__expression] = STATE(1628), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(815), - [sym_mutable_expression] = STATE(3333), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [404] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2959), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2960), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2496), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2498), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [405] = { - [sym__expression] = STATE(2706), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [406] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2951), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2993), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2502), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2504), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [407] = { - [sym__expression] = STATE(1763), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(770), - [sym_mutable_expression] = STATE(3347), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [408] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2954), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2957), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2508), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2510), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [409] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(3001), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(3003), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2512), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2514), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [410] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2938), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2939), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2516), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2518), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [411] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2984), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2935), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2520), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2522), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [412] = { - [sym__expression] = STATE(2794), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4450), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [413] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2972), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2952), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2524), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2526), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [414] = { - [sym__expression] = STATE(2830), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4414), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [415] = { - [sym__expression] = STATE(2851), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4420), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [416] = { - [sym__expression] = STATE(2612), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym__definite_range] = STATE(4720), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [417] = { - [sym__expression] = STATE(2839), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4426), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [418] = { - [sym__expression] = STATE(1777), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(781), - [sym_mutable_expression] = STATE(3345), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [419] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4015), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [420] = { - [sym__expression] = STATE(2806), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4447), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [421] = { - [sym__expression] = STATE(2792), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4468), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [422] = { - [sym__expression] = STATE(1918), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(771), - [sym_mutable_expression] = STATE(3343), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [423] = { - [sym__expression] = STATE(2854), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2572), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [424] = { - [sym__expression] = STATE(2677), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4581), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [425] = { - [sym__expression] = STATE(2812), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2574), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [426] = { - [sym__expression] = STATE(2788), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4489), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [427] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2985), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2971), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2578), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [428] = { - [sym__expression] = STATE(2743), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4510), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [429] = { - [sym__expression] = STATE(236), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(757), - [sym_mutable_expression] = STATE(1122), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [430] = { - [sym__expression] = STATE(2702), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4531), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [431] = { - [sym__expression] = STATE(2633), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(639), - [sym_mutable_expression] = STATE(3343), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [432] = { - [sym__expression] = STATE(2685), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4552), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [433] = { - [sym__expression] = STATE(2466), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(843), - [sym_mutable_expression] = STATE(3665), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [434] = { - [sym__expression] = STATE(2681), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(583), - [sym_mutable_expression] = STATE(4568), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [435] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2964), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2948), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_RBRACK] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(2586), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [436] = { - [sym__expression] = STATE(2660), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [437] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2973), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2979), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [438] = { - [sym__expression] = STATE(2762), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [439] = { - [sym__expression] = STATE(2834), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [440] = { - [sym__expression] = STATE(2630), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [441] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2987), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2988), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [442] = { - [sym__expression] = STATE(2328), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [443] = { - [sym__expression] = STATE(2842), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [444] = { - [sym__expression] = STATE(301), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [445] = { - [sym__expression] = STATE(303), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [446] = { - [sym__expression] = STATE(298), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [447] = { - [sym__expression] = STATE(981), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [448] = { - [sym__expression] = STATE(2484), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [449] = { - [sym__expression] = STATE(964), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [450] = { - [sym__expression] = STATE(2491), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [451] = { - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [452] = { - [sym__expression] = STATE(966), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [453] = { - [sym__expression] = STATE(353), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [454] = { - [sym__expression] = STATE(292), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [455] = { - [sym__expression] = STATE(297), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [456] = { - [sym__expression] = STATE(2329), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [457] = { - [sym__expression] = STATE(2859), - [sym__expression_without_blocks] = STATE(2900), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2900), - [sym_dec_expression] = STATE(2900), - [sym_or_block_expression] = STATE(2900), - [sym_option_propagation_expression] = STATE(2900), - [sym_result_propagation_expression] = STATE(2900), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2900), - [sym_spawn_expression] = STATE(2900), - [sym_parenthesized_expression] = STATE(2900), - [sym_call_expression] = STATE(2900), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2900), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2900), - [sym_receive_expression] = STATE(2900), - [sym_binary_expression] = STATE(2900), - [sym_as_type_cast_expression] = STATE(2900), - [sym__max_group] = STATE(2900), - [sym_literal] = STATE(2900), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2900), - [sym_fixed_array_creation] = STATE(2900), - [sym_selector_expression] = STATE(2900), - [sym_index_expression] = STATE(2900), - [sym_slice_expression] = STATE(2900), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2900), - [sym_not_is_expression] = STATE(2900), - [sym_in_expression] = STATE(2900), - [sym_not_in_expression] = STATE(2900), - [sym_enum_fetch] = STATE(2900), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2900), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [458] = { - [sym__expression] = STATE(959), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [459] = { - [sym__expression] = STATE(2487), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [460] = { - [sym__expression] = STATE(2833), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [461] = { - [sym__expression] = STATE(311), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [462] = { - [sym__expression] = STATE(1921), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [463] = { - [sym__expression] = STATE(2856), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [464] = { - [sym__expression] = STATE(968), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [465] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2963), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2981), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [466] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4017), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [467] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4015), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [468] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4010), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [469] = { - [sym__expression] = STATE(2798), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [470] = { - [sym__expression] = STATE(970), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [471] = { - [sym__expression] = STATE(2659), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [472] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4017), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [473] = { - [sym__expression] = STATE(312), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [474] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4010), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(1099), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1103), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1113), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [475] = { - [sym__expression] = STATE(971), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [476] = { - [sym__expression] = STATE(2525), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [477] = { - [sym__expression] = STATE(960), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [478] = { - [sym__expression] = STATE(2593), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [479] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [480] = { - [sym__expression] = STATE(2552), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [481] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4309), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [482] = { - [sym__expression] = STATE(2617), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [483] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4315), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [484] = { - [sym__expression] = STATE(978), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [485] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4338), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [486] = { - [sym__expression] = STATE(2616), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [487] = { - [sym__expression] = STATE(2485), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [488] = { - [sym__expression] = STATE(2757), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [489] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2991), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2992), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [490] = { - [sym__expression] = STATE(2735), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [491] = { - [sym__expression] = STATE(2498), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [492] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4340), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [493] = { - [sym__expression] = STATE(2494), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [494] = { - [sym__expression] = STATE(2493), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [495] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4335), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [496] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4312), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [497] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [498] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2944), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2936), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [499] = { - [sym__expression] = STATE(2501), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [500] = { - [sym__expression] = STATE(2678), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [501] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_COLON_EQ] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [502] = { - [sym__expression] = STATE(2554), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [503] = { - [sym__expression] = STATE(2147), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [504] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [505] = { - [sym__expression] = STATE(2614), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [506] = { - [sym__expression] = STATE(2286), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [507] = { - [sym__expression] = STATE(2291), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [508] = { - [sym__expression] = STATE(2516), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [509] = { - [sym__expression] = STATE(2521), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [510] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2080), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(2086), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [511] = { - [sym__expression] = STATE(2610), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [512] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [513] = { - [sym__expression] = STATE(2559), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [514] = { - [sym__expression] = STATE(2517), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [515] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2965), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2966), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [516] = { - [sym__expression] = STATE(2628), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [517] = { - [sym__expression] = STATE(2626), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [518] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [519] = { - [sym__expression] = STATE(2609), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [520] = { - [sym__expression] = STATE(1674), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [521] = { - [sym_type_parameters] = STATE(945), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_COLON_EQ] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [522] = { - [sym__expression] = STATE(1816), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [523] = { - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [524] = { - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4174), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [525] = { - [sym__expression] = STATE(1673), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [526] = { - [sym__expression] = STATE(1672), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [527] = { - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4172), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [528] = { - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4170), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [529] = { - [sym__expression] = STATE(1671), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [530] = { - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2726), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [531] = { - [sym__expression] = STATE(2625), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [532] = { - [sym__expression] = STATE(1786), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [533] = { - [sym__expression] = STATE(1764), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [534] = { - [sym__expression] = STATE(1765), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [535] = { - [sym__expression] = STATE(1766), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [536] = { - [sym__expression] = STATE(1768), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [537] = { - [sym__expression] = STATE(1773), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [538] = { - [sym__expression] = STATE(2624), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [539] = { - [sym__expression] = STATE(1774), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [540] = { - [sym__expression] = STATE(2623), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [541] = { - [sym__expression] = STATE(2831), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [542] = { - [sym__expression] = STATE(2769), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [543] = { - [sym__expression] = STATE(1767), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [544] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [545] = { - [sym__expression] = STATE(1769), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [546] = { - [sym__expression] = STATE(1891), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [547] = { - [sym__expression] = STATE(1899), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [548] = { - [sym__expression] = STATE(1900), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [549] = { - [sym__expression] = STATE(1770), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [550] = { - [sym__expression] = STATE(1906), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [551] = { - [sym__expression] = STATE(1903), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [552] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [553] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [554] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2945), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2943), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [555] = { - [sym__expression] = STATE(1771), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [556] = { - [sym__expression] = STATE(2642), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [557] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_DOLLARelse] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_STAR_EQ] = ACTIONS(2730), - [anon_sym_SLASH_EQ] = ACTIONS(2730), - [anon_sym_PERCENT_EQ] = ACTIONS(2730), - [anon_sym_LT_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_GT_EQ] = ACTIONS(2730), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2730), - [anon_sym_AMP_EQ] = ACTIONS(2730), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2730), - [anon_sym_PLUS_EQ] = ACTIONS(2730), - [anon_sym_DASH_EQ] = ACTIONS(2730), - [anon_sym_PIPE_EQ] = ACTIONS(2730), - [anon_sym_CARET_EQ] = ACTIONS(2730), - [anon_sym_COLON_EQ] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), - }, - [558] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_DOLLARelse] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_COLON_EQ] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [559] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [560] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [561] = { - [sym__expression] = STATE(2622), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [562] = { - [sym__expression] = STATE(2298), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [563] = { - [sym__expression] = STATE(2309), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [564] = { - [sym__expression] = STATE(2313), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [565] = { - [sym__expression] = STATE(2829), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [566] = { - [sym__expression] = STATE(2621), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [567] = { - [sym__expression] = STATE(2821), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [568] = { - [sym__expression] = STATE(2680), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [569] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_CR] = ACTIONS(2734), - [anon_sym_CR_LF] = ACTIONS(2734), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2734), - [anon_sym_as] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_EQ] = ACTIONS(2734), - [anon_sym___global] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_pub] = ACTIONS(2734), - [anon_sym_mut] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_go] = ACTIONS(2734), - [anon_sym_spawn] = ACTIONS(2734), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [sym_none] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_nil] = ACTIONS(2734), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_DOLLARif] = ACTIONS(2734), - [anon_sym_DOLLARelse] = ACTIONS(2736), - [anon_sym_is] = ACTIONS(2734), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_select] = ACTIONS(2734), - [anon_sym_STAR_EQ] = ACTIONS(2734), - [anon_sym_SLASH_EQ] = ACTIONS(2734), - [anon_sym_PERCENT_EQ] = ACTIONS(2734), - [anon_sym_LT_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_GT_EQ] = ACTIONS(2734), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2734), - [anon_sym_AMP_EQ] = ACTIONS(2734), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2734), - [anon_sym_PLUS_EQ] = ACTIONS(2734), - [anon_sym_DASH_EQ] = ACTIONS(2734), - [anon_sym_PIPE_EQ] = ACTIONS(2734), - [anon_sym_CARET_EQ] = ACTIONS(2734), - [anon_sym_COLON_EQ] = ACTIONS(2734), - [anon_sym_lock] = ACTIONS(2734), - [anon_sym_rlock] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_sql] = ACTIONS(2734), - [sym_int_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_shared] = ACTIONS(2734), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2734), - [anon_sym_thread] = ACTIONS(2734), - [anon_sym_atomic] = ACTIONS(2734), - [anon_sym_assert] = ACTIONS(2734), - [anon_sym_defer] = ACTIONS(2734), - [anon_sym_goto] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_DOLLARfor] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_asm] = ACTIONS(2734), - [anon_sym_AT_LBRACK] = ACTIONS(2734), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), - }, - [570] = { - [sym__expression] = STATE(2815), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [571] = { - [sym__expression] = STATE(2481), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [572] = { - [sym__expression] = STATE(2728), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [573] = { - [sym__expression] = STATE(2636), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [574] = { - [sym__expression] = STATE(2645), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [575] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [576] = { - [sym__expression] = STATE(2730), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [577] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [578] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [579] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4404), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [580] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4402), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [581] = { - [sym__expression] = STATE(984), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [582] = { - [sym__expression] = STATE(2785), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [583] = { - [sym__expression] = STATE(2719), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [584] = { - [sym__expression] = STATE(985), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [585] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [586] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [587] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4148), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [588] = { - [sym__expression] = STATE(2594), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [589] = { - [sym__expression] = STATE(2597), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [590] = { - [sym__expression] = STATE(2703), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [591] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4152), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [592] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4155), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [593] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [594] = { - [sym__expression] = STATE(2467), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [595] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2956), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [596] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_EQ] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_DOLLARelse] = ACTIONS(2742), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_STAR_EQ] = ACTIONS(2740), - [anon_sym_SLASH_EQ] = ACTIONS(2740), - [anon_sym_PERCENT_EQ] = ACTIONS(2740), - [anon_sym_LT_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2740), - [anon_sym_AMP_EQ] = ACTIONS(2740), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2740), - [anon_sym_PLUS_EQ] = ACTIONS(2740), - [anon_sym_DASH_EQ] = ACTIONS(2740), - [anon_sym_PIPE_EQ] = ACTIONS(2740), - [anon_sym_CARET_EQ] = ACTIONS(2740), - [anon_sym_COLON_EQ] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), - }, - [597] = { - [sym__expression] = STATE(2863), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [598] = { - [sym__expression] = STATE(2668), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [599] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [600] = { - [sym__expression] = STATE(2808), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [601] = { - [sym__expression] = STATE(2314), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [602] = { - [sym__expression] = STATE(2315), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [603] = { - [sym__expression] = STATE(2304), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [604] = { - [sym__expression] = STATE(2319), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [605] = { - [sym__expression] = STATE(2305), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [606] = { - [sym__expression] = STATE(990), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [607] = { - [sym__expression] = STATE(2294), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [608] = { - [sym__expression] = STATE(965), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [609] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4242), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [610] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4239), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [611] = { - [sym__expression] = STATE(2882), - [sym__expression_without_blocks] = STATE(2145), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2145), - [sym_dec_expression] = STATE(2145), - [sym_or_block_expression] = STATE(2145), - [sym_option_propagation_expression] = STATE(2145), - [sym_result_propagation_expression] = STATE(2145), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2145), - [sym_spawn_expression] = STATE(2145), - [sym_parenthesized_expression] = STATE(2145), - [sym_call_expression] = STATE(2145), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2145), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2145), - [sym_receive_expression] = STATE(2145), - [sym_binary_expression] = STATE(2145), - [sym_as_type_cast_expression] = STATE(2145), - [sym__max_group] = STATE(2145), - [sym_literal] = STATE(2145), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2145), - [sym_fixed_array_creation] = STATE(2145), - [sym_selector_expression] = STATE(2145), - [sym_index_expression] = STATE(2145), - [sym_slice_expression] = STATE(2145), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2145), - [sym_not_is_expression] = STATE(2145), - [sym_in_expression] = STATE(2145), - [sym_not_in_expression] = STATE(2145), - [sym_enum_fetch] = STATE(2145), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2145), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [612] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_EQ] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_STAR_EQ] = ACTIONS(2730), - [anon_sym_SLASH_EQ] = ACTIONS(2730), - [anon_sym_PERCENT_EQ] = ACTIONS(2730), - [anon_sym_LT_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_GT_EQ] = ACTIONS(2730), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2730), - [anon_sym_AMP_EQ] = ACTIONS(2730), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2730), - [anon_sym_PLUS_EQ] = ACTIONS(2730), - [anon_sym_DASH_EQ] = ACTIONS(2730), - [anon_sym_PIPE_EQ] = ACTIONS(2730), - [anon_sym_CARET_EQ] = ACTIONS(2730), - [anon_sym_COLON_EQ] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), - }, - [613] = { - [sym__expression] = STATE(2461), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [614] = { - [sym__expression] = STATE(2455), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [615] = { - [sym__expression] = STATE(989), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [616] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4237), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [617] = { - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [618] = { - [sym__expression] = STATE(988), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [619] = { - [sym__expression] = STATE(1280), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [620] = { - [sym__expression] = STATE(983), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [621] = { - [sym__expression] = STATE(982), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [622] = { - [sym__expression] = STATE(991), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [623] = { - [sym__expression] = STATE(1137), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [624] = { - [sym__expression] = STATE(1279), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [625] = { - [sym__expression] = STATE(2289), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [626] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [627] = { - [sym__expression] = STATE(2832), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [628] = { - [sym__expression] = STATE(1136), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [629] = { - [sym__expression] = STATE(1135), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [630] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [631] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [632] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [633] = { - [sym__expression] = STATE(1134), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [634] = { - [sym__expression] = STATE(2290), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [635] = { - [sym__expression] = STATE(2293), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [636] = { - [sym__expression] = STATE(2295), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [637] = { - [sym__expression] = STATE(2144), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [638] = { - [sym__expression] = STATE(2296), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [639] = { - [sym__expression] = STATE(2646), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [640] = { - [sym__expression] = STATE(2313), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [641] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [642] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [643] = { - [sym__expression] = STATE(2458), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [644] = { - [sym__expression] = STATE(2456), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [645] = { - [sym__expression] = STATE(2227), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [646] = { - [sym__expression] = STATE(2452), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [647] = { - [sym__expression] = STATE(2195), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [648] = { - [sym__expression] = STATE(2147), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [649] = { - [sym__expression] = STATE(2451), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [650] = { - [sym__expression] = STATE(2450), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(2618), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_go] = ACTIONS(2624), - [anon_sym_spawn] = ACTIONS(2626), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(2618), - [anon_sym_CARET] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2628), - [anon_sym_LT_DASH] = ACTIONS(2630), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(2632), - [anon_sym_lock] = ACTIONS(2634), - [anon_sym_rlock] = ACTIONS(2634), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [651] = { - [sym__expression] = STATE(2247), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [652] = { - [sym__expression] = STATE(1619), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [653] = { - [sym__expression] = STATE(2144), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [654] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4338), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [655] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4315), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [656] = { - [sym__expression] = STATE(2239), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [657] = { - [sym__expression] = STATE(2238), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [658] = { - [sym__expression] = STATE(2146), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4309), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [659] = { - [sym__expression] = STATE(1618), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [660] = { - [sym__expression] = STATE(2236), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [661] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [662] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [663] = { - [sym__expression] = STATE(1616), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [664] = { - [sym__expression] = STATE(2448), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [665] = { - [sym__expression] = STATE(1615), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [666] = { - [sym__expression] = STATE(2447), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [667] = { - [sym__expression] = STATE(1621), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [668] = { - [sym__expression] = STATE(1625), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [669] = { - [sym__expression] = STATE(1626), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [670] = { - [sym__expression] = STATE(1620), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [671] = { - [sym__expression] = STATE(2673), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [672] = { - [sym__expression] = STATE(2235), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [673] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [674] = { - [sym__expression] = STATE(2234), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [675] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [676] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [677] = { - [sym__expression] = STATE(2434), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [678] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [679] = { - [sym__expression] = STATE(2435), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [680] = { - [sym__expression] = STATE(2436), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [681] = { - [sym__expression] = STATE(2437), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [682] = { - [sym__expression] = STATE(2438), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [683] = { - [sym__expression] = STATE(2608), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [684] = { - [sym__expression] = STATE(2873), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [685] = { - [sym__expression] = STATE(2559), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [686] = { - [sym__expression] = STATE(2607), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [687] = { - [sym__expression] = STATE(2439), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [688] = { - [sym__expression] = STATE(2601), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [689] = { - [sym__expression] = STATE(2598), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [690] = { - [sym__expression] = STATE(2596), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [691] = { - [sym__expression] = STATE(2595), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [692] = { - [sym__expression] = STATE(2641), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [693] = { - [sym__expression] = STATE(2665), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [694] = { - [sym__expression] = STATE(1128), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [695] = { - [sym__expression] = STATE(1139), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [696] = { - [sym__expression] = STATE(2663), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2046), - [anon_sym_DASH] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2048), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2050), - [anon_sym_go] = ACTIONS(2052), - [anon_sym_spawn] = ACTIONS(2054), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2058), - [anon_sym_LT_DASH] = ACTIONS(2060), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2062), - [anon_sym_lock] = ACTIONS(2064), - [anon_sym_rlock] = ACTIONS(2064), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [697] = { - [sym__expression] = STATE(2288), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2646), - [anon_sym_DASH] = ACTIONS(2646), - [anon_sym_STAR] = ACTIONS(2648), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2652), - [anon_sym_go] = ACTIONS(2654), - [anon_sym_spawn] = ACTIONS(2656), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2646), - [anon_sym_CARET] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2662), - [anon_sym_LT_DASH] = ACTIONS(2664), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2674), - [anon_sym_lock] = ACTIONS(2676), - [anon_sym_rlock] = ACTIONS(2676), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [698] = { - [sym__expression] = STATE(2805), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [699] = { - [sym__expression] = STATE(2310), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [700] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4237), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [701] = { - [sym__expression] = STATE(2311), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [702] = { - [sym__expression] = STATE(2855), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [703] = { - [sym__expression] = STATE(2187), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [704] = { - [sym__expression] = STATE(2312), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [705] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4239), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [706] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4242), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [707] = { - [sym__expression] = STATE(2316), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [708] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2766), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2766), - [anon_sym_SLASH_EQ] = ACTIONS(2766), - [anon_sym_PERCENT_EQ] = ACTIONS(2766), - [anon_sym_LT_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_GT_EQ] = ACTIONS(2766), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2766), - [anon_sym_AMP_EQ] = ACTIONS(2766), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2766), - [anon_sym_PLUS_EQ] = ACTIONS(2766), - [anon_sym_DASH_EQ] = ACTIONS(2766), - [anon_sym_PIPE_EQ] = ACTIONS(2766), - [anon_sym_CARET_EQ] = ACTIONS(2766), - [anon_sym_COLON_EQ] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [709] = { - [sym__expression] = STATE(1129), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [710] = { - [sym__expression] = STATE(1132), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [711] = { - [sym__expression] = STATE(2810), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [712] = { - [sym__expression] = STATE(2813), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [713] = { - [sym__expression] = STATE(2816), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [714] = { - [sym__expression] = STATE(2819), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [715] = { - [sym__expression] = STATE(1131), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [716] = { - [sym__expression] = STATE(2820), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [717] = { - [sym__expression] = STATE(1140), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [718] = { - [sym__expression] = STATE(1794), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [719] = { - [sym__expression] = STATE(2797), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [720] = { - [sym__expression] = STATE(2707), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [721] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [722] = { - [sym__expression] = STATE(1130), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [723] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2990), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2989), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [724] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [725] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [726] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4322), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [727] = { - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [728] = { - [sym__expression] = STATE(1820), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [729] = { - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4271), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [730] = { - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4275), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [731] = { - [sym__expression] = STATE(1271), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [732] = { - [sym__expression] = STATE(1272), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [733] = { - [sym__expression] = STATE(1887), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [734] = { - [sym__expression] = STATE(2154), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [735] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4323), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [736] = { - [sym__expression] = STATE(1270), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4276), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [737] = { - [sym__expression] = STATE(2317), - [sym__expression_without_blocks] = STATE(2245), - [sym__expression_with_blocks] = STATE(2245), - [sym_inc_expression] = STATE(2245), - [sym_dec_expression] = STATE(2245), - [sym_or_block_expression] = STATE(2245), - [sym_option_propagation_expression] = STATE(2245), - [sym_result_propagation_expression] = STATE(2245), - [sym_anon_struct_value_expression] = STATE(2233), - [sym_go_expression] = STATE(2245), - [sym_spawn_expression] = STATE(2245), - [sym_parenthesized_expression] = STATE(2245), - [sym_call_expression] = STATE(2245), - [sym_type_initializer] = STATE(2233), - [sym_function_literal] = STATE(2245), - [sym_reference_expression] = STATE(2232), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2245), - [sym_receive_expression] = STATE(2245), - [sym_binary_expression] = STATE(2245), - [sym_as_type_cast_expression] = STATE(2245), - [sym__max_group] = STATE(2245), - [sym_literal] = STATE(2245), - [sym_map_init_expression] = STATE(2233), - [sym_array_creation] = STATE(2245), - [sym_fixed_array_creation] = STATE(2245), - [sym_selector_expression] = STATE(2245), - [sym_index_expression] = STATE(2245), - [sym_slice_expression] = STATE(2245), - [sym_if_expression] = STATE(2233), - [sym_compile_time_if_expression] = STATE(2233), - [sym_is_expression] = STATE(2245), - [sym_not_is_expression] = STATE(2245), - [sym_in_expression] = STATE(2245), - [sym_not_in_expression] = STATE(2245), - [sym_enum_fetch] = STATE(2245), - [sym_match_expression] = STATE(2233), - [sym_select_expression] = STATE(2233), - [sym_lock_expression] = STATE(2233), - [sym_unsafe_expression] = STATE(2233), - [sym_sql_expression] = STATE(2233), - [sym_c_string_literal] = STATE(2249), - [sym_raw_string_literal] = STATE(2249), - [sym_interpreted_string_literal] = STATE(2249), - [sym_pseudo_compile_time_identifier] = STATE(2245), - [sym_mutability_modifiers] = STATE(827), - [sym_plain_type] = STATE(4353), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2636), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2640), - [anon_sym_LPAREN] = ACTIONS(2642), - [anon_sym_fn] = ACTIONS(2644), - [anon_sym_PLUS] = ACTIONS(2744), - [anon_sym_DASH] = ACTIONS(2744), - [anon_sym_STAR] = ACTIONS(2746), - [anon_sym_struct] = ACTIONS(2650), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2748), - [anon_sym_go] = ACTIONS(2750), - [anon_sym_spawn] = ACTIONS(2752), - [anon_sym_json_DOTdecode] = ACTIONS(2658), - [anon_sym_LBRACK2] = ACTIONS(2660), - [anon_sym_TILDE] = ACTIONS(2744), - [anon_sym_CARET] = ACTIONS(2744), - [anon_sym_AMP] = ACTIONS(2754), - [anon_sym_LT_DASH] = ACTIONS(2756), - [sym_none] = ACTIONS(2666), - [sym_true] = ACTIONS(2666), - [sym_false] = ACTIONS(2666), - [sym_nil] = ACTIONS(2666), - [anon_sym_if] = ACTIONS(2668), - [anon_sym_DOLLARif] = ACTIONS(2670), - [anon_sym_match] = ACTIONS(2672), - [anon_sym_select] = ACTIONS(2758), - [anon_sym_lock] = ACTIONS(2760), - [anon_sym_rlock] = ACTIONS(2760), - [anon_sym_unsafe] = ACTIONS(2678), - [anon_sym_sql] = ACTIONS(2680), - [sym_int_literal] = ACTIONS(2666), - [sym_float_literal] = ACTIONS(2682), - [sym_rune_literal] = ACTIONS(2682), - [anon_sym_AT] = ACTIONS(2684), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2686), - [sym___single_quote] = ACTIONS(2688), - [sym___c_double_quote] = ACTIONS(2690), - [sym___c_single_quote] = ACTIONS(2692), - [sym___r_double_quote] = ACTIONS(2694), - [sym___r_single_quote] = ACTIONS(2696), - }, - [738] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4327), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [739] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [740] = { - [sym__expression] = STATE(1273), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [741] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [742] = { - [sym__expression] = STATE(2847), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [743] = { - [sym__expression] = STATE(2848), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [744] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3684), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [745] = { - [sym__expression] = STATE(1917), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [746] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [747] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [748] = { - [sym__expression] = STATE(1652), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [749] = { - [sym__expression] = STATE(977), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [750] = { - [sym__expression] = STATE(2433), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [751] = { - [sym__expression] = STATE(1651), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [752] = { - [sym__expression] = STATE(1650), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [753] = { - [sym__expression] = STATE(1649), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [754] = { - [sym__expression] = STATE(2653), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [755] = { - [sym__expression] = STATE(2736), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [756] = { - [sym__expression] = STATE(1648), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [757] = { - [sym__expression] = STATE(326), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [758] = { - [sym__expression] = STATE(2600), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [759] = { - [sym__expression] = STATE(2599), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [760] = { - [sym__expression] = STATE(2498), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4100), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2528), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2532), - [anon_sym_go] = ACTIONS(2534), - [anon_sym_spawn] = ACTIONS(2536), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(2528), - [anon_sym_CARET] = ACTIONS(2528), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_LT_DASH] = ACTIONS(2540), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2542), - [anon_sym_lock] = ACTIONS(2544), - [anon_sym_rlock] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [761] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4010), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [762] = { - [sym__expression] = STATE(2654), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [763] = { - [sym__expression] = STATE(1622), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [764] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4015), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [765] = { - [sym__expression] = STATE(2489), - [sym__expression_without_blocks] = STATE(2796), - [sym__expression_with_blocks] = STATE(2796), - [sym_inc_expression] = STATE(2796), - [sym_dec_expression] = STATE(2796), - [sym_or_block_expression] = STATE(2796), - [sym_option_propagation_expression] = STATE(2796), - [sym_result_propagation_expression] = STATE(2796), - [sym_anon_struct_value_expression] = STATE(2795), - [sym_go_expression] = STATE(2796), - [sym_spawn_expression] = STATE(2796), - [sym_parenthesized_expression] = STATE(2796), - [sym_call_expression] = STATE(2796), - [sym_type_initializer] = STATE(2795), - [sym_function_literal] = STATE(2796), - [sym_reference_expression] = STATE(2669), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2796), - [sym_receive_expression] = STATE(2796), - [sym_binary_expression] = STATE(2796), - [sym_as_type_cast_expression] = STATE(2796), - [sym__max_group] = STATE(2796), - [sym_literal] = STATE(2796), - [sym_map_init_expression] = STATE(2795), - [sym_array_creation] = STATE(2796), - [sym_fixed_array_creation] = STATE(2796), - [sym_selector_expression] = STATE(2796), - [sym_index_expression] = STATE(2796), - [sym_slice_expression] = STATE(2796), - [sym_if_expression] = STATE(2795), - [sym_compile_time_if_expression] = STATE(2795), - [sym_is_expression] = STATE(2796), - [sym_not_is_expression] = STATE(2796), - [sym_in_expression] = STATE(2796), - [sym_not_in_expression] = STATE(2796), - [sym_enum_fetch] = STATE(2796), - [sym_match_expression] = STATE(2795), - [sym_select_expression] = STATE(2795), - [sym_lock_expression] = STATE(2795), - [sym_unsafe_expression] = STATE(2795), - [sym_sql_expression] = STATE(2795), - [sym_c_string_literal] = STATE(2674), - [sym_raw_string_literal] = STATE(2674), - [sym_interpreted_string_literal] = STATE(2674), - [sym_pseudo_compile_time_identifier] = STATE(2796), - [sym_mutability_modifiers] = STATE(830), - [sym_plain_type] = STATE(4017), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1087), - [anon_sym_LBRACE] = ACTIONS(1089), - [anon_sym_LPAREN] = ACTIONS(1093), - [anon_sym_fn] = ACTIONS(1095), - [anon_sym_PLUS] = ACTIONS(1097), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(1101), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_go] = ACTIONS(1105), - [anon_sym_spawn] = ACTIONS(1107), - [anon_sym_json_DOTdecode] = ACTIONS(1109), - [anon_sym_LBRACK2] = ACTIONS(1111), - [anon_sym_TILDE] = ACTIONS(1097), - [anon_sym_CARET] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(2616), - [anon_sym_LT_DASH] = ACTIONS(1115), - [sym_none] = ACTIONS(1117), - [sym_true] = ACTIONS(1117), - [sym_false] = ACTIONS(1117), - [sym_nil] = ACTIONS(1117), - [anon_sym_if] = ACTIONS(1119), - [anon_sym_DOLLARif] = ACTIONS(1123), - [anon_sym_match] = ACTIONS(1125), - [anon_sym_select] = ACTIONS(2568), - [anon_sym_lock] = ACTIONS(2570), - [anon_sym_rlock] = ACTIONS(2570), - [anon_sym_unsafe] = ACTIONS(1131), - [anon_sym_sql] = ACTIONS(1133), - [sym_int_literal] = ACTIONS(1117), - [sym_float_literal] = ACTIONS(1135), - [sym_rune_literal] = ACTIONS(1135), - [anon_sym_AT] = ACTIONS(1137), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1139), - [sym___single_quote] = ACTIONS(1141), - [sym___c_double_quote] = ACTIONS(1143), - [sym___c_single_quote] = ACTIONS(1145), - [sym___r_double_quote] = ACTIONS(1147), - [sym___r_single_quote] = ACTIONS(1149), - }, - [766] = { - [sym__expression] = STATE(2811), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [767] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(3002), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(3005), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [768] = { - [sym__expression] = STATE(2840), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [769] = { - [sym__expression] = STATE(2648), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [770] = { - [sym__expression] = STATE(1811), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [771] = { - [sym__expression] = STATE(1926), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [772] = { - [sym__expression] = STATE(1781), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [773] = { - [sym__expression] = STATE(2875), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [774] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4322), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [775] = { - [sym__expression] = STATE(1780), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [776] = { - [sym__expression] = STATE(1779), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [777] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4323), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [778] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4327), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [779] = { - [sym__expression] = STATE(1778), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1562), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(807), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_go] = ACTIONS(815), - [anon_sym_spawn] = ACTIONS(817), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(821), - [anon_sym_TILDE] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(823), - [anon_sym_LT_DASH] = ACTIONS(825), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(835), - [anon_sym_lock] = ACTIONS(837), - [anon_sym_rlock] = ACTIONS(837), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [780] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4225), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [781] = { - [sym__expression] = STATE(1810), - [sym__expression_without_blocks] = STATE(2032), - [sym__expression_with_blocks] = STATE(2032), - [sym_inc_expression] = STATE(2032), - [sym_dec_expression] = STATE(2032), - [sym_or_block_expression] = STATE(2032), - [sym_option_propagation_expression] = STATE(2032), - [sym_result_propagation_expression] = STATE(2032), - [sym_anon_struct_value_expression] = STATE(2072), - [sym_go_expression] = STATE(2032), - [sym_spawn_expression] = STATE(2032), - [sym_parenthesized_expression] = STATE(2032), - [sym_call_expression] = STATE(2032), - [sym_type_initializer] = STATE(2072), - [sym_function_literal] = STATE(2032), - [sym_reference_expression] = STATE(1955), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2032), - [sym_receive_expression] = STATE(2032), - [sym_binary_expression] = STATE(2032), - [sym_as_type_cast_expression] = STATE(2032), - [sym__max_group] = STATE(2032), - [sym_literal] = STATE(2032), - [sym_map_init_expression] = STATE(2072), - [sym_array_creation] = STATE(2032), - [sym_fixed_array_creation] = STATE(2032), - [sym_selector_expression] = STATE(2032), - [sym_index_expression] = STATE(2032), - [sym_slice_expression] = STATE(2032), - [sym_if_expression] = STATE(2072), - [sym_compile_time_if_expression] = STATE(2072), - [sym_is_expression] = STATE(2032), - [sym_not_is_expression] = STATE(2032), - [sym_in_expression] = STATE(2032), - [sym_not_in_expression] = STATE(2032), - [sym_enum_fetch] = STATE(2032), - [sym_match_expression] = STATE(2072), - [sym_select_expression] = STATE(2072), - [sym_lock_expression] = STATE(2072), - [sym_unsafe_expression] = STATE(2072), - [sym_sql_expression] = STATE(2072), - [sym_c_string_literal] = STATE(2102), - [sym_raw_string_literal] = STATE(2102), - [sym_interpreted_string_literal] = STATE(2102), - [sym_pseudo_compile_time_identifier] = STATE(2032), - [sym_mutability_modifiers] = STATE(787), - [sym_plain_type] = STATE(4333), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2546), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_LBRACE] = ACTIONS(2506), - [anon_sym_LPAREN] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(803), - [anon_sym_PLUS] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2548), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2552), - [anon_sym_go] = ACTIONS(2554), - [anon_sym_spawn] = ACTIONS(2556), - [anon_sym_json_DOTdecode] = ACTIONS(819), - [anon_sym_LBRACK2] = ACTIONS(2558), - [anon_sym_TILDE] = ACTIONS(2548), - [anon_sym_CARET] = ACTIONS(2548), - [anon_sym_AMP] = ACTIONS(2560), - [anon_sym_LT_DASH] = ACTIONS(2562), - [sym_none] = ACTIONS(827), - [sym_true] = ACTIONS(827), - [sym_false] = ACTIONS(827), - [sym_nil] = ACTIONS(827), - [anon_sym_if] = ACTIONS(829), - [anon_sym_DOLLARif] = ACTIONS(831), - [anon_sym_match] = ACTIONS(833), - [anon_sym_select] = ACTIONS(2564), - [anon_sym_lock] = ACTIONS(2566), - [anon_sym_rlock] = ACTIONS(2566), - [anon_sym_unsafe] = ACTIONS(839), - [anon_sym_sql] = ACTIONS(841), - [sym_int_literal] = ACTIONS(827), - [sym_float_literal] = ACTIONS(843), - [sym_rune_literal] = ACTIONS(843), - [anon_sym_AT] = ACTIONS(845), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(847), - [sym___single_quote] = ACTIONS(849), - [sym___c_double_quote] = ACTIONS(851), - [sym___c_single_quote] = ACTIONS(853), - [sym___r_double_quote] = ACTIONS(855), - [sym___r_single_quote] = ACTIONS(857), - }, - [782] = { - [sym__expression] = STATE(1638), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [783] = { - [sym__expression] = STATE(1645), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [784] = { - [sym__expression] = STATE(2878), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [785] = { - [sym__expression] = STATE(1614), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [786] = { - [sym__expression] = STATE(962), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [787] = { - [sym__expression] = STATE(2865), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [788] = { - [sym__expression] = STATE(979), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [789] = { - [sym__expression] = STATE(2880), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [790] = { - [sym__expression] = STATE(1617), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [791] = { - [sym__expression] = STATE(1788), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [792] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_LT_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_AMP_EQ] = ACTIONS(2772), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_PIPE_EQ] = ACTIONS(2772), - [anon_sym_CARET_EQ] = ACTIONS(2772), - [anon_sym_COLON_EQ] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [793] = { - [sym__expression] = STATE(2793), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [794] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4233), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [795] = { - [sym__expression] = STATE(2877), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [796] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2975), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2974), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [797] = { - [sym__expression] = STATE(2783), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [798] = { - [sym__expression] = STATE(2883), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [799] = { - [sym__expression] = STATE(2634), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [800] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4238), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [801] = { - [sym__expression] = STATE(2666), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [802] = { - [sym__expression] = STATE(1762), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [803] = { - [sym__expression] = STATE(373), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [804] = { - [sym__expression] = STATE(354), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4188), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [805] = { - [sym__expression] = STATE(980), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_go] = ACTIONS(2600), - [anon_sym_spawn] = ACTIONS(2602), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2594), - [anon_sym_CARET] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2604), - [anon_sym_LT_DASH] = ACTIONS(2606), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(2608), - [anon_sym_lock] = ACTIONS(2610), - [anon_sym_rlock] = ACTIONS(2610), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [806] = { - [sym__expression] = STATE(1624), - [sym__expression_without_blocks] = STATE(1759), - [sym__expression_with_blocks] = STATE(1759), - [sym_inc_expression] = STATE(1759), - [sym_dec_expression] = STATE(1759), - [sym_or_block_expression] = STATE(1759), - [sym_option_propagation_expression] = STATE(1759), - [sym_result_propagation_expression] = STATE(1759), - [sym_anon_struct_value_expression] = STATE(1702), - [sym_go_expression] = STATE(1759), - [sym_spawn_expression] = STATE(1759), - [sym_parenthesized_expression] = STATE(1759), - [sym_call_expression] = STATE(1759), - [sym_type_initializer] = STATE(1702), - [sym_function_literal] = STATE(1759), - [sym_reference_expression] = STATE(1734), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1759), - [sym_receive_expression] = STATE(1759), - [sym_binary_expression] = STATE(1759), - [sym_as_type_cast_expression] = STATE(1759), - [sym__max_group] = STATE(1759), - [sym_literal] = STATE(1759), - [sym_map_init_expression] = STATE(1702), - [sym_array_creation] = STATE(1759), - [sym_fixed_array_creation] = STATE(1759), - [sym_selector_expression] = STATE(1759), - [sym_index_expression] = STATE(1759), - [sym_slice_expression] = STATE(1759), - [sym_if_expression] = STATE(1702), - [sym_compile_time_if_expression] = STATE(1702), - [sym_is_expression] = STATE(1759), - [sym_not_is_expression] = STATE(1759), - [sym_in_expression] = STATE(1759), - [sym_not_in_expression] = STATE(1759), - [sym_enum_fetch] = STATE(1759), - [sym_match_expression] = STATE(1702), - [sym_select_expression] = STATE(1702), - [sym_lock_expression] = STATE(1702), - [sym_unsafe_expression] = STATE(1702), - [sym_sql_expression] = STATE(1702), - [sym_c_string_literal] = STATE(1752), - [sym_raw_string_literal] = STATE(1752), - [sym_interpreted_string_literal] = STATE(1752), - [sym_pseudo_compile_time_identifier] = STATE(1759), - [sym_mutability_modifiers] = STATE(789), - [sym_plain_type] = STATE(4249), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2762), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(301), - [anon_sym_LBRACE] = ACTIONS(2764), - [anon_sym_LPAREN] = ACTIONS(307), - [anon_sym_fn] = ACTIONS(309), - [anon_sym_PLUS] = ACTIONS(311), - [anon_sym_DASH] = ACTIONS(311), - [anon_sym_STAR] = ACTIONS(313), - [anon_sym_struct] = ACTIONS(315), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(317), - [anon_sym_go] = ACTIONS(319), - [anon_sym_spawn] = ACTIONS(321), - [anon_sym_json_DOTdecode] = ACTIONS(323), - [anon_sym_LBRACK2] = ACTIONS(325), - [anon_sym_TILDE] = ACTIONS(311), - [anon_sym_CARET] = ACTIONS(311), - [anon_sym_AMP] = ACTIONS(327), - [anon_sym_LT_DASH] = ACTIONS(329), - [sym_none] = ACTIONS(331), - [sym_true] = ACTIONS(331), - [sym_false] = ACTIONS(331), - [sym_nil] = ACTIONS(331), - [anon_sym_if] = ACTIONS(333), - [anon_sym_DOLLARif] = ACTIONS(335), - [anon_sym_match] = ACTIONS(337), - [anon_sym_select] = ACTIONS(339), - [anon_sym_lock] = ACTIONS(341), - [anon_sym_rlock] = ACTIONS(341), - [anon_sym_unsafe] = ACTIONS(343), - [anon_sym_sql] = ACTIONS(345), - [sym_int_literal] = ACTIONS(331), - [sym_float_literal] = ACTIONS(347), - [sym_rune_literal] = ACTIONS(347), - [anon_sym_AT] = ACTIONS(349), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(371), - [sym___single_quote] = ACTIONS(373), - [sym___c_double_quote] = ACTIONS(375), - [sym___c_single_quote] = ACTIONS(377), - [sym___r_double_quote] = ACTIONS(379), - [sym___r_single_quote] = ACTIONS(381), - }, - [807] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [808] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3677), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [809] = { - [sym__expression] = STATE(367), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [810] = { - [sym__expression] = STATE(2688), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2592), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [811] = { - [sym__expression] = STATE(363), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [812] = { - [sym__expression] = STATE(2225), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(3675), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [813] = { - [sym__expression] = STATE(354), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4156), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [814] = { - [sym__expression] = STATE(1274), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [815] = { - [sym__expression] = STATE(1640), - [sym__expression_without_blocks] = STATE(1800), - [sym__expression_with_blocks] = STATE(1800), - [sym_inc_expression] = STATE(1800), - [sym_dec_expression] = STATE(1800), - [sym_or_block_expression] = STATE(1800), - [sym_option_propagation_expression] = STATE(1800), - [sym_result_propagation_expression] = STATE(1800), - [sym_anon_struct_value_expression] = STATE(1883), - [sym_go_expression] = STATE(1800), - [sym_spawn_expression] = STATE(1800), - [sym_parenthesized_expression] = STATE(1800), - [sym_call_expression] = STATE(1800), - [sym_type_initializer] = STATE(1883), - [sym_function_literal] = STATE(1800), - [sym_reference_expression] = STATE(1888), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1800), - [sym_receive_expression] = STATE(1800), - [sym_binary_expression] = STATE(1800), - [sym_as_type_cast_expression] = STATE(1800), - [sym__max_group] = STATE(1800), - [sym_literal] = STATE(1800), - [sym_map_init_expression] = STATE(1883), - [sym_array_creation] = STATE(1800), - [sym_fixed_array_creation] = STATE(1800), - [sym_selector_expression] = STATE(1800), - [sym_index_expression] = STATE(1800), - [sym_slice_expression] = STATE(1800), - [sym_if_expression] = STATE(1883), - [sym_compile_time_if_expression] = STATE(1883), - [sym_is_expression] = STATE(1800), - [sym_not_is_expression] = STATE(1800), - [sym_in_expression] = STATE(1800), - [sym_not_in_expression] = STATE(1800), - [sym_enum_fetch] = STATE(1800), - [sym_match_expression] = STATE(1883), - [sym_select_expression] = STATE(1883), - [sym_lock_expression] = STATE(1883), - [sym_unsafe_expression] = STATE(1883), - [sym_sql_expression] = STATE(1883), - [sym_c_string_literal] = STATE(1801), - [sym_raw_string_literal] = STATE(1801), - [sym_interpreted_string_literal] = STATE(1801), - [sym_pseudo_compile_time_identifier] = STATE(1800), - [sym_mutability_modifiers] = STATE(837), - [sym_plain_type] = STATE(4297), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2434), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2438), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_PLUS] = ACTIONS(2444), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2448), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2450), - [anon_sym_go] = ACTIONS(2452), - [anon_sym_spawn] = ACTIONS(2454), - [anon_sym_json_DOTdecode] = ACTIONS(2456), - [anon_sym_LBRACK2] = ACTIONS(2458), - [anon_sym_TILDE] = ACTIONS(2444), - [anon_sym_CARET] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_LT_DASH] = ACTIONS(2462), - [sym_none] = ACTIONS(2464), - [sym_true] = ACTIONS(2464), - [sym_false] = ACTIONS(2464), - [sym_nil] = ACTIONS(2464), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_DOLLARif] = ACTIONS(2468), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_select] = ACTIONS(2472), - [anon_sym_lock] = ACTIONS(2474), - [anon_sym_rlock] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2476), - [anon_sym_sql] = ACTIONS(2478), - [sym_int_literal] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2480), - [sym_rune_literal] = ACTIONS(2480), - [anon_sym_AT] = ACTIONS(2482), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2484), - [sym___single_quote] = ACTIONS(2486), - [sym___c_double_quote] = ACTIONS(2488), - [sym___c_single_quote] = ACTIONS(2490), - [sym___r_double_quote] = ACTIONS(2492), - [sym___r_single_quote] = ACTIONS(2494), - }, - [816] = { - [sym__expression] = STATE(2619), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [817] = { - [sym__expression] = STATE(2871), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [818] = { - [sym__expression] = STATE(2620), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [819] = { - [sym__expression] = STATE(960), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [820] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4400), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [821] = { - [sym__expression] = STATE(976), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [822] = { - [sym__expression] = STATE(961), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [823] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4402), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [824] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4404), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [825] = { - [sym__expression] = STATE(963), - [sym__expression_without_blocks] = STATE(1081), - [sym__expression_with_blocks] = STATE(1081), - [sym_inc_expression] = STATE(1081), - [sym_dec_expression] = STATE(1081), - [sym_or_block_expression] = STATE(1081), - [sym_option_propagation_expression] = STATE(1081), - [sym_result_propagation_expression] = STATE(1081), - [sym_anon_struct_value_expression] = STATE(1080), - [sym_go_expression] = STATE(1081), - [sym_spawn_expression] = STATE(1081), - [sym_parenthesized_expression] = STATE(1081), - [sym_call_expression] = STATE(1081), - [sym_type_initializer] = STATE(1080), - [sym_function_literal] = STATE(1081), - [sym_reference_expression] = STATE(1098), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1081), - [sym_receive_expression] = STATE(1081), - [sym_binary_expression] = STATE(1081), - [sym_as_type_cast_expression] = STATE(1081), - [sym__max_group] = STATE(1081), - [sym_literal] = STATE(1081), - [sym_map_init_expression] = STATE(1080), - [sym_array_creation] = STATE(1081), - [sym_fixed_array_creation] = STATE(1081), - [sym_selector_expression] = STATE(1081), - [sym_index_expression] = STATE(1081), - [sym_slice_expression] = STATE(1081), - [sym_if_expression] = STATE(1080), - [sym_compile_time_if_expression] = STATE(1080), - [sym_is_expression] = STATE(1081), - [sym_not_is_expression] = STATE(1081), - [sym_in_expression] = STATE(1081), - [sym_not_in_expression] = STATE(1081), - [sym_enum_fetch] = STATE(1081), - [sym_match_expression] = STATE(1080), - [sym_select_expression] = STATE(1080), - [sym_lock_expression] = STATE(1080), - [sym_unsafe_expression] = STATE(1080), - [sym_sql_expression] = STATE(1080), - [sym_c_string_literal] = STATE(1000), - [sym_raw_string_literal] = STATE(1000), - [sym_interpreted_string_literal] = STATE(1000), - [sym_pseudo_compile_time_identifier] = STATE(1081), - [sym_mutability_modifiers] = STATE(784), - [sym_plain_type] = STATE(4407), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(483), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(489), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_fn] = ACTIONS(495), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_struct] = ACTIONS(501), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_go] = ACTIONS(507), - [anon_sym_spawn] = ACTIONS(509), - [anon_sym_json_DOTdecode] = ACTIONS(2186), - [anon_sym_LBRACK2] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2180), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_LT_DASH] = ACTIONS(2192), - [sym_none] = ACTIONS(519), - [sym_true] = ACTIONS(519), - [sym_false] = ACTIONS(519), - [sym_nil] = ACTIONS(519), - [anon_sym_if] = ACTIONS(521), - [anon_sym_DOLLARif] = ACTIONS(523), - [anon_sym_match] = ACTIONS(525), - [anon_sym_select] = ACTIONS(527), - [anon_sym_lock] = ACTIONS(529), - [anon_sym_rlock] = ACTIONS(529), - [anon_sym_unsafe] = ACTIONS(531), - [anon_sym_sql] = ACTIONS(533), - [sym_int_literal] = ACTIONS(519), - [sym_float_literal] = ACTIONS(2194), - [sym_rune_literal] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(2196), - [sym___single_quote] = ACTIONS(2198), - [sym___c_double_quote] = ACTIONS(2200), - [sym___c_single_quote] = ACTIONS(2202), - [sym___r_double_quote] = ACTIONS(2204), - [sym___r_single_quote] = ACTIONS(2206), - }, - [826] = { - [sym__expression] = STATE(1275), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [827] = { - [sym__expression] = STATE(2861), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [828] = { - [sym__expression] = STATE(1796), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [829] = { - [sym__expression] = STATE(1138), - [sym__expression_without_blocks] = STATE(1175), - [sym__expression_with_blocks] = STATE(1175), - [sym_inc_expression] = STATE(1175), - [sym_dec_expression] = STATE(1175), - [sym_or_block_expression] = STATE(1175), - [sym_option_propagation_expression] = STATE(1175), - [sym_result_propagation_expression] = STATE(1175), - [sym_anon_struct_value_expression] = STATE(1176), - [sym_go_expression] = STATE(1175), - [sym_spawn_expression] = STATE(1175), - [sym_parenthesized_expression] = STATE(1175), - [sym_call_expression] = STATE(1175), - [sym_type_initializer] = STATE(1176), - [sym_function_literal] = STATE(1175), - [sym_reference_expression] = STATE(1197), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1175), - [sym_receive_expression] = STATE(1175), - [sym_binary_expression] = STATE(1175), - [sym_as_type_cast_expression] = STATE(1175), - [sym__max_group] = STATE(1175), - [sym_literal] = STATE(1175), - [sym_map_init_expression] = STATE(1176), - [sym_array_creation] = STATE(1175), - [sym_fixed_array_creation] = STATE(1175), - [sym_selector_expression] = STATE(1175), - [sym_index_expression] = STATE(1175), - [sym_slice_expression] = STATE(1175), - [sym_if_expression] = STATE(1176), - [sym_compile_time_if_expression] = STATE(1176), - [sym_is_expression] = STATE(1175), - [sym_not_is_expression] = STATE(1175), - [sym_in_expression] = STATE(1175), - [sym_not_in_expression] = STATE(1175), - [sym_enum_fetch] = STATE(1175), - [sym_match_expression] = STATE(1176), - [sym_select_expression] = STATE(1176), - [sym_lock_expression] = STATE(1176), - [sym_unsafe_expression] = STATE(1176), - [sym_sql_expression] = STATE(1176), - [sym_c_string_literal] = STATE(1174), - [sym_raw_string_literal] = STATE(1174), - [sym_interpreted_string_literal] = STATE(1174), - [sym_pseudo_compile_time_identifier] = STATE(1175), - [sym_mutability_modifiers] = STATE(798), - [sym_plain_type] = STATE(4165), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(619), - [anon_sym_LBRACE] = ACTIONS(621), - [anon_sym_LPAREN] = ACTIONS(625), - [anon_sym_fn] = ACTIONS(629), - [anon_sym_PLUS] = ACTIONS(631), - [anon_sym_DASH] = ACTIONS(631), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_struct] = ACTIONS(637), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(643), - [anon_sym_go] = ACTIONS(645), - [anon_sym_spawn] = ACTIONS(647), - [anon_sym_json_DOTdecode] = ACTIONS(649), - [anon_sym_LBRACK2] = ACTIONS(651), - [anon_sym_TILDE] = ACTIONS(631), - [anon_sym_CARET] = ACTIONS(631), - [anon_sym_AMP] = ACTIONS(653), - [anon_sym_LT_DASH] = ACTIONS(655), - [sym_none] = ACTIONS(657), - [sym_true] = ACTIONS(657), - [sym_false] = ACTIONS(657), - [sym_nil] = ACTIONS(657), - [anon_sym_if] = ACTIONS(659), - [anon_sym_DOLLARif] = ACTIONS(661), - [anon_sym_match] = ACTIONS(663), - [anon_sym_select] = ACTIONS(665), - [anon_sym_lock] = ACTIONS(667), - [anon_sym_rlock] = ACTIONS(667), - [anon_sym_unsafe] = ACTIONS(669), - [anon_sym_sql] = ACTIONS(671), - [sym_int_literal] = ACTIONS(657), - [sym_float_literal] = ACTIONS(673), - [sym_rune_literal] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(675), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(677), - [sym___single_quote] = ACTIONS(679), - [sym___c_double_quote] = ACTIONS(681), - [sym___c_single_quote] = ACTIONS(683), - [sym___r_double_quote] = ACTIONS(685), - [sym___r_single_quote] = ACTIONS(687), - }, - [830] = { - [sym__expression] = STATE(2860), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [831] = { - [sym__expression] = STATE(1276), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [832] = { - [sym__expression] = STATE(354), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4120), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [833] = { - [sym__expression] = STATE(2870), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2934), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2994), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2044), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [834] = { - [sym__expression] = STATE(354), - [sym__expression_without_blocks] = STATE(872), - [sym__expression_with_blocks] = STATE(872), - [sym_inc_expression] = STATE(872), - [sym_dec_expression] = STATE(872), - [sym_or_block_expression] = STATE(872), - [sym_option_propagation_expression] = STATE(872), - [sym_result_propagation_expression] = STATE(872), - [sym_anon_struct_value_expression] = STATE(876), - [sym_go_expression] = STATE(872), - [sym_spawn_expression] = STATE(872), - [sym_parenthesized_expression] = STATE(872), - [sym_call_expression] = STATE(872), - [sym_type_initializer] = STATE(876), - [sym_function_literal] = STATE(872), - [sym_reference_expression] = STATE(873), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(872), - [sym_receive_expression] = STATE(872), - [sym_binary_expression] = STATE(872), - [sym_as_type_cast_expression] = STATE(872), - [sym__max_group] = STATE(872), - [sym_literal] = STATE(872), - [sym_map_init_expression] = STATE(876), - [sym_array_creation] = STATE(872), - [sym_fixed_array_creation] = STATE(872), - [sym_selector_expression] = STATE(872), - [sym_index_expression] = STATE(872), - [sym_slice_expression] = STATE(872), - [sym_if_expression] = STATE(876), - [sym_compile_time_if_expression] = STATE(876), - [sym_is_expression] = STATE(872), - [sym_not_is_expression] = STATE(872), - [sym_in_expression] = STATE(872), - [sym_not_in_expression] = STATE(872), - [sym_enum_fetch] = STATE(872), - [sym_match_expression] = STATE(876), - [sym_select_expression] = STATE(876), - [sym_lock_expression] = STATE(876), - [sym_unsafe_expression] = STATE(876), - [sym_sql_expression] = STATE(876), - [sym_c_string_literal] = STATE(859), - [sym_raw_string_literal] = STATE(859), - [sym_interpreted_string_literal] = STATE(859), - [sym_pseudo_compile_time_identifier] = STATE(872), - [sym_mutability_modifiers] = STATE(597), - [sym_plain_type] = STATE(4220), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2580), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(13), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_fn] = ACTIONS(475), - [anon_sym_PLUS] = ACTIONS(27), - [anon_sym_DASH] = ACTIONS(27), - [anon_sym_STAR] = ACTIONS(29), - [anon_sym_struct] = ACTIONS(477), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(45), - [anon_sym_go] = ACTIONS(47), - [anon_sym_spawn] = ACTIONS(49), - [anon_sym_json_DOTdecode] = ACTIONS(51), - [anon_sym_LBRACK2] = ACTIONS(479), - [anon_sym_TILDE] = ACTIONS(27), - [anon_sym_CARET] = ACTIONS(27), - [anon_sym_AMP] = ACTIONS(55), - [anon_sym_LT_DASH] = ACTIONS(57), - [sym_none] = ACTIONS(59), - [sym_true] = ACTIONS(59), - [sym_false] = ACTIONS(59), - [sym_nil] = ACTIONS(59), - [anon_sym_if] = ACTIONS(61), - [anon_sym_DOLLARif] = ACTIONS(63), - [anon_sym_match] = ACTIONS(65), - [anon_sym_select] = ACTIONS(67), - [anon_sym_lock] = ACTIONS(69), - [anon_sym_rlock] = ACTIONS(69), - [anon_sym_unsafe] = ACTIONS(71), - [anon_sym_sql] = ACTIONS(73), - [sym_int_literal] = ACTIONS(59), - [sym_float_literal] = ACTIONS(75), - [sym_rune_literal] = ACTIONS(75), - [anon_sym_AT] = ACTIONS(77), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(111), - [sym___single_quote] = ACTIONS(113), - [sym___c_double_quote] = ACTIONS(115), - [sym___c_single_quote] = ACTIONS(117), - [sym___r_double_quote] = ACTIONS(119), - [sym___r_single_quote] = ACTIONS(121), - }, - [835] = { - [sym__expression] = STATE(2868), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [836] = { - [sym__expression] = STATE(2675), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [837] = { - [sym__expression] = STATE(2858), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1251), - [anon_sym_DASH] = ACTIONS(1251), - [anon_sym_STAR] = ACTIONS(1253), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1257), - [anon_sym_go] = ACTIONS(1259), - [anon_sym_spawn] = ACTIONS(1261), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(1251), - [anon_sym_CARET] = ACTIONS(1251), - [anon_sym_AMP] = ACTIONS(1267), - [anon_sym_LT_DASH] = ACTIONS(1269), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [838] = { - [sym__expression] = STATE(2639), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2380), - [anon_sym_DASH] = ACTIONS(2380), - [anon_sym_STAR] = ACTIONS(2382), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2384), - [anon_sym_go] = ACTIONS(2386), - [anon_sym_spawn] = ACTIONS(2388), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(2380), - [anon_sym_CARET] = ACTIONS(2380), - [anon_sym_AMP] = ACTIONS(2390), - [anon_sym_LT_DASH] = ACTIONS(2392), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(2394), - [anon_sym_lock] = ACTIONS(2396), - [anon_sym_rlock] = ACTIONS(2396), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [839] = { - [sym__expression] = STATE(1277), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [840] = { - [sym__expression] = STATE(2763), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(684), - [sym_plain_type] = STATE(3667), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1241), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(2366), - [anon_sym_go] = ACTIONS(2368), - [anon_sym_spawn] = ACTIONS(2370), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1265), - [anon_sym_TILDE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2362), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_LT_DASH] = ACTIONS(2374), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1279), - [anon_sym_lock] = ACTIONS(1281), - [anon_sym_rlock] = ACTIONS(1281), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [841] = { - [sym__expression] = STATE(1785), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [842] = { - [sym__expression] = STATE(1278), - [sym__expression_without_blocks] = STATE(1340), - [sym__expression_with_blocks] = STATE(1340), - [sym_inc_expression] = STATE(1340), - [sym_dec_expression] = STATE(1340), - [sym_or_block_expression] = STATE(1340), - [sym_option_propagation_expression] = STATE(1340), - [sym_result_propagation_expression] = STATE(1340), - [sym_anon_struct_value_expression] = STATE(1341), - [sym_go_expression] = STATE(1340), - [sym_spawn_expression] = STATE(1340), - [sym_parenthesized_expression] = STATE(1340), - [sym_call_expression] = STATE(1340), - [sym_type_initializer] = STATE(1341), - [sym_function_literal] = STATE(1340), - [sym_reference_expression] = STATE(1402), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(1340), - [sym_receive_expression] = STATE(1340), - [sym_binary_expression] = STATE(1340), - [sym_as_type_cast_expression] = STATE(1340), - [sym__max_group] = STATE(1340), - [sym_literal] = STATE(1340), - [sym_map_init_expression] = STATE(1341), - [sym_array_creation] = STATE(1340), - [sym_fixed_array_creation] = STATE(1340), - [sym_selector_expression] = STATE(1340), - [sym_index_expression] = STATE(1340), - [sym_slice_expression] = STATE(1340), - [sym_if_expression] = STATE(1341), - [sym_compile_time_if_expression] = STATE(1341), - [sym_is_expression] = STATE(1340), - [sym_not_is_expression] = STATE(1340), - [sym_in_expression] = STATE(1340), - [sym_not_in_expression] = STATE(1340), - [sym_enum_fetch] = STATE(1340), - [sym_match_expression] = STATE(1341), - [sym_select_expression] = STATE(1341), - [sym_lock_expression] = STATE(1341), - [sym_unsafe_expression] = STATE(1341), - [sym_sql_expression] = STATE(1341), - [sym_c_string_literal] = STATE(1291), - [sym_raw_string_literal] = STATE(1291), - [sym_interpreted_string_literal] = STATE(1291), - [sym_pseudo_compile_time_identifier] = STATE(1340), - [sym_mutability_modifiers] = STATE(773), - [sym_plain_type] = STATE(4141), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1175), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1177), - [anon_sym_LBRACE] = ACTIONS(1179), - [anon_sym_LPAREN] = ACTIONS(1181), - [anon_sym_fn] = ACTIONS(1183), - [anon_sym_PLUS] = ACTIONS(1185), - [anon_sym_DASH] = ACTIONS(1185), - [anon_sym_STAR] = ACTIONS(1187), - [anon_sym_struct] = ACTIONS(1191), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1193), - [anon_sym_go] = ACTIONS(1195), - [anon_sym_spawn] = ACTIONS(1197), - [anon_sym_json_DOTdecode] = ACTIONS(1199), - [anon_sym_LBRACK2] = ACTIONS(1201), - [anon_sym_TILDE] = ACTIONS(1185), - [anon_sym_CARET] = ACTIONS(1185), - [anon_sym_AMP] = ACTIONS(1203), - [anon_sym_LT_DASH] = ACTIONS(1205), - [sym_none] = ACTIONS(1207), - [sym_true] = ACTIONS(1207), - [sym_false] = ACTIONS(1207), - [sym_nil] = ACTIONS(1207), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_DOLLARif] = ACTIONS(1211), - [anon_sym_match] = ACTIONS(1213), - [anon_sym_select] = ACTIONS(1215), - [anon_sym_lock] = ACTIONS(1217), - [anon_sym_rlock] = ACTIONS(1217), - [anon_sym_unsafe] = ACTIONS(2070), - [anon_sym_sql] = ACTIONS(1221), - [sym_int_literal] = ACTIONS(1207), - [sym_float_literal] = ACTIONS(1225), - [sym_rune_literal] = ACTIONS(1225), - [anon_sym_AT] = ACTIONS(1227), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1229), - [sym___single_quote] = ACTIONS(1231), - [sym___c_double_quote] = ACTIONS(1233), - [sym___c_single_quote] = ACTIONS(1235), - [sym___r_double_quote] = ACTIONS(1237), - [sym___r_single_quote] = ACTIONS(1239), - }, - [843] = { - [sym__expression] = STATE(2308), - [sym__expression_without_blocks] = STATE(2572), - [sym__expression_with_blocks] = STATE(2572), - [sym_inc_expression] = STATE(2572), - [sym_dec_expression] = STATE(2572), - [sym_or_block_expression] = STATE(2572), - [sym_option_propagation_expression] = STATE(2572), - [sym_result_propagation_expression] = STATE(2572), - [sym_anon_struct_value_expression] = STATE(2571), - [sym_go_expression] = STATE(2572), - [sym_spawn_expression] = STATE(2572), - [sym_parenthesized_expression] = STATE(2572), - [sym_call_expression] = STATE(2572), - [sym_type_initializer] = STATE(2571), - [sym_function_literal] = STATE(2572), - [sym_reference_expression] = STATE(2557), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2572), - [sym_receive_expression] = STATE(2572), - [sym_binary_expression] = STATE(2572), - [sym_as_type_cast_expression] = STATE(2572), - [sym__max_group] = STATE(2572), - [sym_literal] = STATE(2572), - [sym_map_init_expression] = STATE(2571), - [sym_array_creation] = STATE(2572), - [sym_fixed_array_creation] = STATE(2572), - [sym_selector_expression] = STATE(2572), - [sym_index_expression] = STATE(2572), - [sym_slice_expression] = STATE(2572), - [sym_if_expression] = STATE(2571), - [sym_compile_time_if_expression] = STATE(2571), - [sym_is_expression] = STATE(2572), - [sym_not_is_expression] = STATE(2572), - [sym_in_expression] = STATE(2572), - [sym_not_in_expression] = STATE(2572), - [sym_enum_fetch] = STATE(2572), - [sym_match_expression] = STATE(2571), - [sym_select_expression] = STATE(2571), - [sym_lock_expression] = STATE(2571), - [sym_unsafe_expression] = STATE(2571), - [sym_sql_expression] = STATE(2571), - [sym_c_string_literal] = STATE(2578), - [sym_raw_string_literal] = STATE(2578), - [sym_interpreted_string_literal] = STATE(2578), - [sym_pseudo_compile_time_identifier] = STATE(2572), - [sym_mutability_modifiers] = STATE(795), - [sym_plain_type] = STATE(4248), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1426), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_fn] = ACTIONS(1436), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_struct] = ACTIONS(1444), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_go] = ACTIONS(1448), - [anon_sym_spawn] = ACTIONS(1450), - [anon_sym_json_DOTdecode] = ACTIONS(1452), - [anon_sym_LBRACK2] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1438), - [anon_sym_AMP] = ACTIONS(1456), - [anon_sym_LT_DASH] = ACTIONS(1458), - [sym_none] = ACTIONS(1460), - [sym_true] = ACTIONS(1460), - [sym_false] = ACTIONS(1460), - [sym_nil] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_DOLLARif] = ACTIONS(1464), - [anon_sym_match] = ACTIONS(1466), - [anon_sym_select] = ACTIONS(1468), - [anon_sym_lock] = ACTIONS(1470), - [anon_sym_rlock] = ACTIONS(1470), - [anon_sym_unsafe] = ACTIONS(1472), - [anon_sym_sql] = ACTIONS(1474), - [sym_int_literal] = ACTIONS(1460), - [sym_float_literal] = ACTIONS(1476), - [sym_rune_literal] = ACTIONS(1476), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1480), - [sym___single_quote] = ACTIONS(1482), - [sym___c_double_quote] = ACTIONS(1484), - [sym___c_single_quote] = ACTIONS(1486), - [sym___r_double_quote] = ACTIONS(1488), - [sym___r_single_quote] = ACTIONS(1490), - }, - [844] = { - [sym__expression] = STATE(1790), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [845] = { - [sym__expression] = STATE(1795), - [sym__expression_without_blocks] = STATE(2104), - [sym__expression_with_blocks] = STATE(2104), - [sym_inc_expression] = STATE(2104), - [sym_dec_expression] = STATE(2104), - [sym_or_block_expression] = STATE(2104), - [sym_option_propagation_expression] = STATE(2104), - [sym_result_propagation_expression] = STATE(2104), - [sym_anon_struct_value_expression] = STATE(2119), - [sym_go_expression] = STATE(2104), - [sym_spawn_expression] = STATE(2104), - [sym_parenthesized_expression] = STATE(2104), - [sym_call_expression] = STATE(2104), - [sym_type_initializer] = STATE(2119), - [sym_function_literal] = STATE(2104), - [sym_reference_expression] = STATE(2036), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2104), - [sym_receive_expression] = STATE(2104), - [sym_binary_expression] = STATE(2104), - [sym_as_type_cast_expression] = STATE(2104), - [sym__max_group] = STATE(2104), - [sym_literal] = STATE(2104), - [sym_map_init_expression] = STATE(2119), - [sym_array_creation] = STATE(2104), - [sym_fixed_array_creation] = STATE(2104), - [sym_selector_expression] = STATE(2104), - [sym_index_expression] = STATE(2104), - [sym_slice_expression] = STATE(2104), - [sym_if_expression] = STATE(2119), - [sym_compile_time_if_expression] = STATE(2119), - [sym_is_expression] = STATE(2104), - [sym_not_is_expression] = STATE(2104), - [sym_in_expression] = STATE(2104), - [sym_not_in_expression] = STATE(2104), - [sym_enum_fetch] = STATE(2104), - [sym_match_expression] = STATE(2119), - [sym_select_expression] = STATE(2119), - [sym_lock_expression] = STATE(2119), - [sym_unsafe_expression] = STATE(2119), - [sym_sql_expression] = STATE(2119), - [sym_c_string_literal] = STATE(2030), - [sym_raw_string_literal] = STATE(2030), - [sym_interpreted_string_literal] = STATE(2030), - [sym_pseudo_compile_time_identifier] = STATE(2104), - [sym_mutability_modifiers] = STATE(835), - [sym_plain_type] = STATE(4201), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(2706), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(691), - [anon_sym_LBRACE] = ACTIONS(2708), - [anon_sym_LPAREN] = ACTIONS(697), - [anon_sym_fn] = ACTIONS(699), - [anon_sym_PLUS] = ACTIONS(701), - [anon_sym_DASH] = ACTIONS(701), - [anon_sym_STAR] = ACTIONS(703), - [anon_sym_struct] = ACTIONS(2710), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(707), - [anon_sym_go] = ACTIONS(709), - [anon_sym_spawn] = ACTIONS(711), - [anon_sym_json_DOTdecode] = ACTIONS(713), - [anon_sym_LBRACK2] = ACTIONS(715), - [anon_sym_TILDE] = ACTIONS(701), - [anon_sym_CARET] = ACTIONS(701), - [anon_sym_AMP] = ACTIONS(717), - [anon_sym_LT_DASH] = ACTIONS(719), - [sym_none] = ACTIONS(721), - [sym_true] = ACTIONS(721), - [sym_false] = ACTIONS(721), - [sym_nil] = ACTIONS(721), - [anon_sym_if] = ACTIONS(2712), - [anon_sym_DOLLARif] = ACTIONS(2714), - [anon_sym_match] = ACTIONS(2716), - [anon_sym_select] = ACTIONS(2718), - [anon_sym_lock] = ACTIONS(2720), - [anon_sym_rlock] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2722), - [anon_sym_sql] = ACTIONS(2724), - [sym_int_literal] = ACTIONS(721), - [sym_float_literal] = ACTIONS(739), - [sym_rune_literal] = ACTIONS(739), - [anon_sym_AT] = ACTIONS(741), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(743), - [sym___single_quote] = ACTIONS(745), - [sym___c_double_quote] = ACTIONS(747), - [sym___c_single_quote] = ACTIONS(749), - [sym___r_double_quote] = ACTIONS(751), - [sym___r_single_quote] = ACTIONS(753), - }, - [846] = { - [sym__expression] = STATE(2204), - [sym__expression_without_blocks] = STATE(2338), - [sym__expression_with_blocks] = STATE(2338), - [sym_inc_expression] = STATE(2338), - [sym_dec_expression] = STATE(2338), - [sym_or_block_expression] = STATE(2338), - [sym_option_propagation_expression] = STATE(2338), - [sym_result_propagation_expression] = STATE(2338), - [sym_anon_struct_value_expression] = STATE(2340), - [sym_go_expression] = STATE(2338), - [sym_spawn_expression] = STATE(2338), - [sym_parenthesized_expression] = STATE(2338), - [sym_call_expression] = STATE(2338), - [sym_type_initializer] = STATE(2340), - [sym_function_literal] = STATE(2338), - [sym_reference_expression] = STATE(2341), - [sym_type_reference_expression] = STATE(3581), - [sym_unary_expression] = STATE(2338), - [sym_receive_expression] = STATE(2338), - [sym_binary_expression] = STATE(2338), - [sym_as_type_cast_expression] = STATE(2338), - [sym__max_group] = STATE(2338), - [sym_literal] = STATE(2338), - [sym_map_init_expression] = STATE(2340), - [sym_array_creation] = STATE(2338), - [sym_fixed_array_creation] = STATE(2338), - [sym_selector_expression] = STATE(2338), - [sym_index_expression] = STATE(2338), - [sym_slice_expression] = STATE(2338), - [sym_if_expression] = STATE(2340), - [sym_compile_time_if_expression] = STATE(2340), - [sym_is_expression] = STATE(2338), - [sym_not_is_expression] = STATE(2338), - [sym_in_expression] = STATE(2338), - [sym_not_in_expression] = STATE(2338), - [sym_enum_fetch] = STATE(2338), - [sym_match_expression] = STATE(2340), - [sym_select_expression] = STATE(2340), - [sym_lock_expression] = STATE(2340), - [sym_unsafe_expression] = STATE(2340), - [sym_sql_expression] = STATE(2340), - [sym_c_string_literal] = STATE(2336), - [sym_raw_string_literal] = STATE(2336), - [sym_interpreted_string_literal] = STATE(2336), - [sym_pseudo_compile_time_identifier] = STATE(2338), - [sym_mutability_modifiers] = STATE(817), - [sym_plain_type] = STATE(4269), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(1640), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(1243), - [anon_sym_LBRACE] = ACTIONS(1245), - [anon_sym_LPAREN] = ACTIONS(1247), - [anon_sym_fn] = ACTIONS(1249), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_struct] = ACTIONS(1255), - [anon_sym_mut] = ACTIONS(37), - [anon_sym_QMARK] = ACTIONS(43), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_go] = ACTIONS(1650), - [anon_sym_spawn] = ACTIONS(1652), - [anon_sym_json_DOTdecode] = ACTIONS(1263), - [anon_sym_LBRACK2] = ACTIONS(1654), - [anon_sym_TILDE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1644), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_LT_DASH] = ACTIONS(1658), - [sym_none] = ACTIONS(1271), - [sym_true] = ACTIONS(1271), - [sym_false] = ACTIONS(1271), - [sym_nil] = ACTIONS(1271), - [anon_sym_if] = ACTIONS(1634), - [anon_sym_DOLLARif] = ACTIONS(1275), - [anon_sym_match] = ACTIONS(1277), - [anon_sym_select] = ACTIONS(1660), - [anon_sym_lock] = ACTIONS(1662), - [anon_sym_rlock] = ACTIONS(1662), - [anon_sym_unsafe] = ACTIONS(1636), - [anon_sym_sql] = ACTIONS(1285), - [sym_int_literal] = ACTIONS(1271), - [sym_float_literal] = ACTIONS(1287), - [sym_rune_literal] = ACTIONS(1287), - [anon_sym_AT] = ACTIONS(1289), - [anon_sym_shared] = ACTIONS(79), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(1293), - [sym___single_quote] = ACTIONS(1295), - [sym___c_double_quote] = ACTIONS(1297), - [sym___c_single_quote] = ACTIONS(1299), - [sym___r_double_quote] = ACTIONS(1301), - [sym___r_single_quote] = ACTIONS(1303), - }, - [847] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_EQ] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_STAR_EQ] = ACTIONS(2784), - [anon_sym_SLASH_EQ] = ACTIONS(2784), - [anon_sym_PERCENT_EQ] = ACTIONS(2784), - [anon_sym_LT_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_GT_EQ] = ACTIONS(2784), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2784), - [anon_sym_AMP_EQ] = ACTIONS(2784), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2784), - [anon_sym_PLUS_EQ] = ACTIONS(2784), - [anon_sym_DASH_EQ] = ACTIONS(2784), - [anon_sym_PIPE_EQ] = ACTIONS(2784), - [anon_sym_CARET_EQ] = ACTIONS(2784), - [anon_sym_COLON_EQ] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_defer] = ACTIONS(2784), - [anon_sym_goto] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_DOLLARfor] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_asm] = ACTIONS(2784), - [anon_sym_AT_LBRACK] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), - }, - [848] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_EQ] = ACTIONS(2788), - [anon_sym___global] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_STAR_EQ] = ACTIONS(2788), - [anon_sym_SLASH_EQ] = ACTIONS(2788), - [anon_sym_PERCENT_EQ] = ACTIONS(2788), - [anon_sym_LT_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_GT_EQ] = ACTIONS(2788), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2788), - [anon_sym_AMP_EQ] = ACTIONS(2788), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2788), - [anon_sym_PLUS_EQ] = ACTIONS(2788), - [anon_sym_DASH_EQ] = ACTIONS(2788), - [anon_sym_PIPE_EQ] = ACTIONS(2788), - [anon_sym_CARET_EQ] = ACTIONS(2788), - [anon_sym_COLON_EQ] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [anon_sym_assert] = ACTIONS(2788), - [anon_sym_defer] = ACTIONS(2788), - [anon_sym_goto] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_DOLLARfor] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_asm] = ACTIONS(2788), - [anon_sym_AT_LBRACK] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), - }, - [849] = { - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_identifier] = ACTIONS(2792), - [anon_sym_LF] = ACTIONS(2792), - [anon_sym_CR] = ACTIONS(2792), - [anon_sym_CR_LF] = ACTIONS(2792), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_const] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_EQ] = ACTIONS(2792), - [anon_sym___global] = ACTIONS(2792), - [anon_sym_type] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_union] = ACTIONS(2792), - [anon_sym_pub] = ACTIONS(2792), - [anon_sym_mut] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_interface] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_go] = ACTIONS(2792), - [anon_sym_spawn] = ACTIONS(2792), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2792), - [sym_none] = ACTIONS(2792), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_nil] = ACTIONS(2792), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_DOLLARif] = ACTIONS(2792), - [anon_sym_is] = ACTIONS(2792), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2792), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_select] = ACTIONS(2792), - [anon_sym_STAR_EQ] = ACTIONS(2792), - [anon_sym_SLASH_EQ] = ACTIONS(2792), - [anon_sym_PERCENT_EQ] = ACTIONS(2792), - [anon_sym_LT_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_GT_EQ] = ACTIONS(2792), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2792), - [anon_sym_AMP_EQ] = ACTIONS(2792), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2792), - [anon_sym_PLUS_EQ] = ACTIONS(2792), - [anon_sym_DASH_EQ] = ACTIONS(2792), - [anon_sym_PIPE_EQ] = ACTIONS(2792), - [anon_sym_CARET_EQ] = ACTIONS(2792), - [anon_sym_COLON_EQ] = ACTIONS(2792), - [anon_sym_lock] = ACTIONS(2792), - [anon_sym_rlock] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_sql] = ACTIONS(2792), - [sym_int_literal] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_shared] = ACTIONS(2792), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2792), - [anon_sym_thread] = ACTIONS(2792), - [anon_sym_atomic] = ACTIONS(2792), - [anon_sym_assert] = ACTIONS(2792), - [anon_sym_defer] = ACTIONS(2792), - [anon_sym_goto] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_DOLLARfor] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_asm] = ACTIONS(2792), - [anon_sym_AT_LBRACK] = ACTIONS(2792), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), - }, - [850] = { - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_identifier] = ACTIONS(2796), - [anon_sym_LF] = ACTIONS(2796), - [anon_sym_CR] = ACTIONS(2796), - [anon_sym_CR_LF] = ACTIONS(2796), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_as] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_const] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_EQ] = ACTIONS(2796), - [anon_sym___global] = ACTIONS(2796), - [anon_sym_type] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_union] = ACTIONS(2796), - [anon_sym_pub] = ACTIONS(2796), - [anon_sym_mut] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_interface] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_go] = ACTIONS(2796), - [anon_sym_spawn] = ACTIONS(2796), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2796), - [sym_none] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_nil] = ACTIONS(2796), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_DOLLARif] = ACTIONS(2796), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2796), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_select] = ACTIONS(2796), - [anon_sym_STAR_EQ] = ACTIONS(2796), - [anon_sym_SLASH_EQ] = ACTIONS(2796), - [anon_sym_PERCENT_EQ] = ACTIONS(2796), - [anon_sym_LT_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_GT_EQ] = ACTIONS(2796), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2796), - [anon_sym_AMP_EQ] = ACTIONS(2796), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2796), - [anon_sym_PLUS_EQ] = ACTIONS(2796), - [anon_sym_DASH_EQ] = ACTIONS(2796), - [anon_sym_PIPE_EQ] = ACTIONS(2796), - [anon_sym_CARET_EQ] = ACTIONS(2796), - [anon_sym_COLON_EQ] = ACTIONS(2796), - [anon_sym_lock] = ACTIONS(2796), - [anon_sym_rlock] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_sql] = ACTIONS(2796), - [sym_int_literal] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_shared] = ACTIONS(2796), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2796), - [anon_sym_thread] = ACTIONS(2796), - [anon_sym_atomic] = ACTIONS(2796), - [anon_sym_assert] = ACTIONS(2796), - [anon_sym_defer] = ACTIONS(2796), - [anon_sym_goto] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_DOLLARfor] = ACTIONS(2796), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_asm] = ACTIONS(2796), - [anon_sym_AT_LBRACK] = ACTIONS(2796), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), - }, - [851] = { - [ts_builtin_sym_end] = ACTIONS(2798), - [sym_identifier] = ACTIONS(2800), - [anon_sym_LF] = ACTIONS(2800), - [anon_sym_CR] = ACTIONS(2800), - [anon_sym_CR_LF] = ACTIONS(2800), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_as] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_const] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_EQ] = ACTIONS(2800), - [anon_sym___global] = ACTIONS(2800), - [anon_sym_type] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_union] = ACTIONS(2800), - [anon_sym_pub] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_interface] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_go] = ACTIONS(2800), - [anon_sym_spawn] = ACTIONS(2800), - [anon_sym_json_DOTdecode] = ACTIONS(2800), - [anon_sym_LBRACK2] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_LT_DASH] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2800), - [anon_sym_AMP_CARET] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2800), - [sym_none] = ACTIONS(2800), - [sym_true] = ACTIONS(2800), - [sym_false] = ACTIONS(2800), - [sym_nil] = ACTIONS(2800), - [anon_sym_QMARK_DOT] = ACTIONS(2800), - [anon_sym_POUND_LBRACK] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_DOLLARif] = ACTIONS(2800), - [anon_sym_is] = ACTIONS(2800), - [anon_sym_BANGis] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2800), - [anon_sym_BANGin] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_select] = ACTIONS(2800), - [anon_sym_STAR_EQ] = ACTIONS(2800), - [anon_sym_SLASH_EQ] = ACTIONS(2800), - [anon_sym_PERCENT_EQ] = ACTIONS(2800), - [anon_sym_LT_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_GT_EQ] = ACTIONS(2800), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2800), - [anon_sym_AMP_EQ] = ACTIONS(2800), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2800), - [anon_sym_PLUS_EQ] = ACTIONS(2800), - [anon_sym_DASH_EQ] = ACTIONS(2800), - [anon_sym_PIPE_EQ] = ACTIONS(2800), - [anon_sym_CARET_EQ] = ACTIONS(2800), - [anon_sym_COLON_EQ] = ACTIONS(2800), - [anon_sym_lock] = ACTIONS(2800), - [anon_sym_rlock] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_sql] = ACTIONS(2800), - [sym_int_literal] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2800), - [sym_rune_literal] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_shared] = ACTIONS(2800), - [anon_sym_map_LBRACK] = ACTIONS(2800), - [anon_sym_chan] = ACTIONS(2800), - [anon_sym_thread] = ACTIONS(2800), - [anon_sym_atomic] = ACTIONS(2800), - [anon_sym_assert] = ACTIONS(2800), - [anon_sym_defer] = ACTIONS(2800), - [anon_sym_goto] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_DOLLARfor] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2800), - [anon_sym_asm] = ACTIONS(2800), - [anon_sym_AT_LBRACK] = ACTIONS(2800), - [sym___double_quote] = ACTIONS(2800), - [sym___single_quote] = ACTIONS(2800), - [sym___c_double_quote] = ACTIONS(2800), - [sym___c_single_quote] = ACTIONS(2800), - [sym___r_double_quote] = ACTIONS(2800), - [sym___r_single_quote] = ACTIONS(2800), - }, - [852] = { - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_LF] = ACTIONS(2804), - [anon_sym_CR] = ACTIONS(2804), - [anon_sym_CR_LF] = ACTIONS(2804), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_EQ] = ACTIONS(2804), - [anon_sym___global] = ACTIONS(2804), - [anon_sym_type] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_union] = ACTIONS(2804), - [anon_sym_pub] = ACTIONS(2804), - [anon_sym_mut] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_go] = ACTIONS(2804), - [anon_sym_spawn] = ACTIONS(2804), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2804), - [sym_none] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_nil] = ACTIONS(2804), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_DOLLARif] = ACTIONS(2804), - [anon_sym_is] = ACTIONS(2804), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2804), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_select] = ACTIONS(2804), - [anon_sym_STAR_EQ] = ACTIONS(2804), - [anon_sym_SLASH_EQ] = ACTIONS(2804), - [anon_sym_PERCENT_EQ] = ACTIONS(2804), - [anon_sym_LT_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_GT_EQ] = ACTIONS(2804), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2804), - [anon_sym_AMP_EQ] = ACTIONS(2804), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2804), - [anon_sym_PLUS_EQ] = ACTIONS(2804), - [anon_sym_DASH_EQ] = ACTIONS(2804), - [anon_sym_PIPE_EQ] = ACTIONS(2804), - [anon_sym_CARET_EQ] = ACTIONS(2804), - [anon_sym_COLON_EQ] = ACTIONS(2804), - [anon_sym_lock] = ACTIONS(2804), - [anon_sym_rlock] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_sql] = ACTIONS(2804), - [sym_int_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_shared] = ACTIONS(2804), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2804), - [anon_sym_atomic] = ACTIONS(2804), - [anon_sym_assert] = ACTIONS(2804), - [anon_sym_defer] = ACTIONS(2804), - [anon_sym_goto] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_DOLLARfor] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [anon_sym_asm] = ACTIONS(2804), - [anon_sym_AT_LBRACK] = ACTIONS(2804), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), - }, - [853] = { - [ts_builtin_sym_end] = ACTIONS(2806), - [sym_identifier] = ACTIONS(2808), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_CR] = ACTIONS(2808), - [anon_sym_CR_LF] = ACTIONS(2808), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_const] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_EQ] = ACTIONS(2808), - [anon_sym___global] = ACTIONS(2808), - [anon_sym_type] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2808), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_union] = ACTIONS(2808), - [anon_sym_pub] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_interface] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_QMARK] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_go] = ACTIONS(2808), - [anon_sym_spawn] = ACTIONS(2808), - [anon_sym_json_DOTdecode] = ACTIONS(2808), - [anon_sym_LBRACK2] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_LT_DASH] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_CARET] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2808), - [sym_none] = ACTIONS(2808), - [sym_true] = ACTIONS(2808), - [sym_false] = ACTIONS(2808), - [sym_nil] = ACTIONS(2808), - [anon_sym_QMARK_DOT] = ACTIONS(2808), - [anon_sym_POUND_LBRACK] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_DOLLARif] = ACTIONS(2808), - [anon_sym_is] = ACTIONS(2808), - [anon_sym_BANGis] = ACTIONS(2808), - [anon_sym_in] = ACTIONS(2808), - [anon_sym_BANGin] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_select] = ACTIONS(2808), - [anon_sym_STAR_EQ] = ACTIONS(2808), - [anon_sym_SLASH_EQ] = ACTIONS(2808), - [anon_sym_PERCENT_EQ] = ACTIONS(2808), - [anon_sym_LT_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_GT_EQ] = ACTIONS(2808), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2808), - [anon_sym_AMP_EQ] = ACTIONS(2808), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2808), - [anon_sym_PLUS_EQ] = ACTIONS(2808), - [anon_sym_DASH_EQ] = ACTIONS(2808), - [anon_sym_PIPE_EQ] = ACTIONS(2808), - [anon_sym_CARET_EQ] = ACTIONS(2808), - [anon_sym_COLON_EQ] = ACTIONS(2808), - [anon_sym_lock] = ACTIONS(2808), - [anon_sym_rlock] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_sql] = ACTIONS(2808), - [sym_int_literal] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2808), - [sym_rune_literal] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_shared] = ACTIONS(2808), - [anon_sym_map_LBRACK] = ACTIONS(2808), - [anon_sym_chan] = ACTIONS(2808), - [anon_sym_thread] = ACTIONS(2808), - [anon_sym_atomic] = ACTIONS(2808), - [anon_sym_assert] = ACTIONS(2808), - [anon_sym_defer] = ACTIONS(2808), - [anon_sym_goto] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_DOLLARfor] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_POUND] = ACTIONS(2808), - [anon_sym_asm] = ACTIONS(2808), - [anon_sym_AT_LBRACK] = ACTIONS(2808), - [sym___double_quote] = ACTIONS(2808), - [sym___single_quote] = ACTIONS(2808), - [sym___c_double_quote] = ACTIONS(2808), - [sym___c_single_quote] = ACTIONS(2808), - [sym___r_double_quote] = ACTIONS(2808), - [sym___r_single_quote] = ACTIONS(2808), - }, - [854] = { - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_EQ] = ACTIONS(2812), - [anon_sym___global] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_STAR_EQ] = ACTIONS(2812), - [anon_sym_SLASH_EQ] = ACTIONS(2812), - [anon_sym_PERCENT_EQ] = ACTIONS(2812), - [anon_sym_LT_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2812), - [anon_sym_AMP_EQ] = ACTIONS(2812), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2812), - [anon_sym_PLUS_EQ] = ACTIONS(2812), - [anon_sym_DASH_EQ] = ACTIONS(2812), - [anon_sym_PIPE_EQ] = ACTIONS(2812), - [anon_sym_CARET_EQ] = ACTIONS(2812), - [anon_sym_COLON_EQ] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [anon_sym_assert] = ACTIONS(2812), - [anon_sym_defer] = ACTIONS(2812), - [anon_sym_goto] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_DOLLARfor] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_asm] = ACTIONS(2812), - [anon_sym_AT_LBRACK] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), - }, - [855] = { - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_EQ] = ACTIONS(2816), - [anon_sym___global] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_STAR_EQ] = ACTIONS(2816), - [anon_sym_SLASH_EQ] = ACTIONS(2816), - [anon_sym_PERCENT_EQ] = ACTIONS(2816), - [anon_sym_LT_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_EQ] = ACTIONS(2816), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2816), - [anon_sym_AMP_EQ] = ACTIONS(2816), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2816), - [anon_sym_PLUS_EQ] = ACTIONS(2816), - [anon_sym_DASH_EQ] = ACTIONS(2816), - [anon_sym_PIPE_EQ] = ACTIONS(2816), - [anon_sym_CARET_EQ] = ACTIONS(2816), - [anon_sym_COLON_EQ] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_defer] = ACTIONS(2816), - [anon_sym_goto] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_DOLLARfor] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_asm] = ACTIONS(2816), - [anon_sym_AT_LBRACK] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), - }, - [856] = { - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_EQ] = ACTIONS(2820), - [anon_sym___global] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_STAR_EQ] = ACTIONS(2820), - [anon_sym_SLASH_EQ] = ACTIONS(2820), - [anon_sym_PERCENT_EQ] = ACTIONS(2820), - [anon_sym_LT_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_GT_EQ] = ACTIONS(2820), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2820), - [anon_sym_AMP_EQ] = ACTIONS(2820), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2820), - [anon_sym_PLUS_EQ] = ACTIONS(2820), - [anon_sym_DASH_EQ] = ACTIONS(2820), - [anon_sym_PIPE_EQ] = ACTIONS(2820), - [anon_sym_CARET_EQ] = ACTIONS(2820), - [anon_sym_COLON_EQ] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [anon_sym_assert] = ACTIONS(2820), - [anon_sym_defer] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_DOLLARfor] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym_AT_LBRACK] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), - }, - [857] = { - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_EQ] = ACTIONS(2824), - [anon_sym___global] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_STAR_EQ] = ACTIONS(2824), - [anon_sym_SLASH_EQ] = ACTIONS(2824), - [anon_sym_PERCENT_EQ] = ACTIONS(2824), - [anon_sym_LT_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_GT_EQ] = ACTIONS(2824), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2824), - [anon_sym_AMP_EQ] = ACTIONS(2824), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2824), - [anon_sym_PLUS_EQ] = ACTIONS(2824), - [anon_sym_DASH_EQ] = ACTIONS(2824), - [anon_sym_PIPE_EQ] = ACTIONS(2824), - [anon_sym_CARET_EQ] = ACTIONS(2824), - [anon_sym_COLON_EQ] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [anon_sym_assert] = ACTIONS(2824), - [anon_sym_defer] = ACTIONS(2824), - [anon_sym_goto] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_DOLLARfor] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_asm] = ACTIONS(2824), - [anon_sym_AT_LBRACK] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), - }, - [858] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_EQ] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_STAR_EQ] = ACTIONS(2828), - [anon_sym_SLASH_EQ] = ACTIONS(2828), - [anon_sym_PERCENT_EQ] = ACTIONS(2828), - [anon_sym_LT_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_GT_EQ] = ACTIONS(2828), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2828), - [anon_sym_AMP_EQ] = ACTIONS(2828), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2828), - [anon_sym_PLUS_EQ] = ACTIONS(2828), - [anon_sym_DASH_EQ] = ACTIONS(2828), - [anon_sym_PIPE_EQ] = ACTIONS(2828), - [anon_sym_CARET_EQ] = ACTIONS(2828), - [anon_sym_COLON_EQ] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), - }, - [859] = { - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2832), - [anon_sym___global] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_STAR_EQ] = ACTIONS(2832), - [anon_sym_SLASH_EQ] = ACTIONS(2832), - [anon_sym_PERCENT_EQ] = ACTIONS(2832), - [anon_sym_LT_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_GT_EQ] = ACTIONS(2832), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2832), - [anon_sym_AMP_EQ] = ACTIONS(2832), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2832), - [anon_sym_PLUS_EQ] = ACTIONS(2832), - [anon_sym_DASH_EQ] = ACTIONS(2832), - [anon_sym_PIPE_EQ] = ACTIONS(2832), - [anon_sym_CARET_EQ] = ACTIONS(2832), - [anon_sym_COLON_EQ] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [anon_sym_assert] = ACTIONS(2832), - [anon_sym_defer] = ACTIONS(2832), - [anon_sym_goto] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_DOLLARfor] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_asm] = ACTIONS(2832), - [anon_sym_AT_LBRACK] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), - }, - [860] = { - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_EQ] = ACTIONS(2836), - [anon_sym___global] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_STAR_EQ] = ACTIONS(2836), - [anon_sym_SLASH_EQ] = ACTIONS(2836), - [anon_sym_PERCENT_EQ] = ACTIONS(2836), - [anon_sym_LT_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_GT_EQ] = ACTIONS(2836), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2836), - [anon_sym_AMP_EQ] = ACTIONS(2836), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2836), - [anon_sym_PLUS_EQ] = ACTIONS(2836), - [anon_sym_DASH_EQ] = ACTIONS(2836), - [anon_sym_PIPE_EQ] = ACTIONS(2836), - [anon_sym_CARET_EQ] = ACTIONS(2836), - [anon_sym_COLON_EQ] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [anon_sym_assert] = ACTIONS(2836), - [anon_sym_defer] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_DOLLARfor] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym_AT_LBRACK] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), - }, - [861] = { - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_EQ] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_STAR_EQ] = ACTIONS(2840), - [anon_sym_SLASH_EQ] = ACTIONS(2840), - [anon_sym_PERCENT_EQ] = ACTIONS(2840), - [anon_sym_LT_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_GT_EQ] = ACTIONS(2840), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2840), - [anon_sym_AMP_EQ] = ACTIONS(2840), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2840), - [anon_sym_PLUS_EQ] = ACTIONS(2840), - [anon_sym_DASH_EQ] = ACTIONS(2840), - [anon_sym_PIPE_EQ] = ACTIONS(2840), - [anon_sym_CARET_EQ] = ACTIONS(2840), - [anon_sym_COLON_EQ] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), - }, - [862] = { - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_LF] = ACTIONS(2844), - [anon_sym_CR] = ACTIONS(2844), - [anon_sym_CR_LF] = ACTIONS(2844), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_as] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2844), - [anon_sym___global] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_interface] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_is] = ACTIONS(2844), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2844), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_STAR_EQ] = ACTIONS(2844), - [anon_sym_SLASH_EQ] = ACTIONS(2844), - [anon_sym_PERCENT_EQ] = ACTIONS(2844), - [anon_sym_LT_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_GT_EQ] = ACTIONS(2844), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2844), - [anon_sym_AMP_EQ] = ACTIONS(2844), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2844), - [anon_sym_PLUS_EQ] = ACTIONS(2844), - [anon_sym_DASH_EQ] = ACTIONS(2844), - [anon_sym_PIPE_EQ] = ACTIONS(2844), - [anon_sym_CARET_EQ] = ACTIONS(2844), - [anon_sym_COLON_EQ] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [anon_sym_assert] = ACTIONS(2844), - [anon_sym_defer] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_DOLLARfor] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym_AT_LBRACK] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), - }, - [863] = { - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LF] = ACTIONS(2848), - [anon_sym_CR] = ACTIONS(2848), - [anon_sym_CR_LF] = ACTIONS(2848), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_const] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_EQ] = ACTIONS(2848), - [anon_sym___global] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_union] = ACTIONS(2848), - [anon_sym_pub] = ACTIONS(2848), - [anon_sym_mut] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_interface] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_go] = ACTIONS(2848), - [anon_sym_spawn] = ACTIONS(2848), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2848), - [sym_none] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_nil] = ACTIONS(2848), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_DOLLARif] = ACTIONS(2848), - [anon_sym_is] = ACTIONS(2848), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2848), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_select] = ACTIONS(2848), - [anon_sym_STAR_EQ] = ACTIONS(2848), - [anon_sym_SLASH_EQ] = ACTIONS(2848), - [anon_sym_PERCENT_EQ] = ACTIONS(2848), - [anon_sym_LT_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_GT_EQ] = ACTIONS(2848), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2848), - [anon_sym_AMP_EQ] = ACTIONS(2848), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2848), - [anon_sym_PLUS_EQ] = ACTIONS(2848), - [anon_sym_DASH_EQ] = ACTIONS(2848), - [anon_sym_PIPE_EQ] = ACTIONS(2848), - [anon_sym_CARET_EQ] = ACTIONS(2848), - [anon_sym_COLON_EQ] = ACTIONS(2848), - [anon_sym_lock] = ACTIONS(2848), - [anon_sym_rlock] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_sql] = ACTIONS(2848), - [sym_int_literal] = ACTIONS(2848), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_shared] = ACTIONS(2848), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2848), - [anon_sym_thread] = ACTIONS(2848), - [anon_sym_atomic] = ACTIONS(2848), - [anon_sym_assert] = ACTIONS(2848), - [anon_sym_defer] = ACTIONS(2848), - [anon_sym_goto] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_DOLLARfor] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_asm] = ACTIONS(2848), - [anon_sym_AT_LBRACK] = ACTIONS(2848), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), - }, - [864] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2766), - [anon_sym_LF] = ACTIONS(2766), - [anon_sym_CR] = ACTIONS(2766), - [anon_sym_CR_LF] = ACTIONS(2766), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(2766), - [anon_sym___global] = ACTIONS(2766), - [anon_sym_type] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_pub] = ACTIONS(2766), - [anon_sym_mut] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_interface] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_go] = ACTIONS(2766), - [anon_sym_spawn] = ACTIONS(2766), - [anon_sym_json_DOTdecode] = ACTIONS(2766), - [anon_sym_LBRACK2] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_LT_DASH] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_nil] = ACTIONS(2766), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_DOLLARif] = ACTIONS(2766), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_select] = ACTIONS(2766), - [anon_sym_STAR_EQ] = ACTIONS(2766), - [anon_sym_SLASH_EQ] = ACTIONS(2766), - [anon_sym_PERCENT_EQ] = ACTIONS(2766), - [anon_sym_LT_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_GT_EQ] = ACTIONS(2766), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2766), - [anon_sym_AMP_EQ] = ACTIONS(2766), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2766), - [anon_sym_PLUS_EQ] = ACTIONS(2766), - [anon_sym_DASH_EQ] = ACTIONS(2766), - [anon_sym_PIPE_EQ] = ACTIONS(2766), - [anon_sym_CARET_EQ] = ACTIONS(2766), - [anon_sym_COLON_EQ] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2766), - [anon_sym_rlock] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_sql] = ACTIONS(2766), - [sym_int_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), - [sym_rune_literal] = ACTIONS(2766), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_shared] = ACTIONS(2766), - [anon_sym_map_LBRACK] = ACTIONS(2766), - [anon_sym_chan] = ACTIONS(2766), - [anon_sym_thread] = ACTIONS(2766), - [anon_sym_atomic] = ACTIONS(2766), - [anon_sym_assert] = ACTIONS(2766), - [anon_sym_defer] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_DOLLARfor] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_asm] = ACTIONS(2766), - [anon_sym_AT_LBRACK] = ACTIONS(2766), - [sym___double_quote] = ACTIONS(2766), - [sym___single_quote] = ACTIONS(2766), - [sym___c_double_quote] = ACTIONS(2766), - [sym___c_single_quote] = ACTIONS(2766), - [sym___r_double_quote] = ACTIONS(2766), - [sym___r_single_quote] = ACTIONS(2766), - }, - [865] = { - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_identifier] = ACTIONS(2852), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_CR] = ACTIONS(2852), - [anon_sym_CR_LF] = ACTIONS(2852), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_EQ] = ACTIONS(2852), - [anon_sym___global] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PERCENT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_mut] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_interface] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_go] = ACTIONS(2852), - [anon_sym_spawn] = ACTIONS(2852), - [anon_sym_json_DOTdecode] = ACTIONS(2852), - [anon_sym_LBRACK2] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2852), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_CARET] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_nil] = ACTIONS(2852), - [anon_sym_QMARK_DOT] = ACTIONS(2852), - [anon_sym_POUND_LBRACK] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_DOLLARif] = ACTIONS(2852), - [anon_sym_is] = ACTIONS(2852), - [anon_sym_BANGis] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2852), - [anon_sym_BANGin] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_select] = ACTIONS(2852), - [anon_sym_STAR_EQ] = ACTIONS(2852), - [anon_sym_SLASH_EQ] = ACTIONS(2852), - [anon_sym_PERCENT_EQ] = ACTIONS(2852), - [anon_sym_LT_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_GT_EQ] = ACTIONS(2852), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2852), - [anon_sym_AMP_EQ] = ACTIONS(2852), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2852), - [anon_sym_PLUS_EQ] = ACTIONS(2852), - [anon_sym_DASH_EQ] = ACTIONS(2852), - [anon_sym_PIPE_EQ] = ACTIONS(2852), - [anon_sym_CARET_EQ] = ACTIONS(2852), - [anon_sym_COLON_EQ] = ACTIONS(2852), - [anon_sym_lock] = ACTIONS(2852), - [anon_sym_rlock] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_sql] = ACTIONS(2852), - [sym_int_literal] = ACTIONS(2852), - [sym_float_literal] = ACTIONS(2852), - [sym_rune_literal] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_shared] = ACTIONS(2852), - [anon_sym_map_LBRACK] = ACTIONS(2852), - [anon_sym_chan] = ACTIONS(2852), - [anon_sym_thread] = ACTIONS(2852), - [anon_sym_atomic] = ACTIONS(2852), - [anon_sym_assert] = ACTIONS(2852), - [anon_sym_defer] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_DOLLARfor] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(2852), - [anon_sym_asm] = ACTIONS(2852), - [anon_sym_AT_LBRACK] = ACTIONS(2852), - [sym___double_quote] = ACTIONS(2852), - [sym___single_quote] = ACTIONS(2852), - [sym___c_double_quote] = ACTIONS(2852), - [sym___c_single_quote] = ACTIONS(2852), - [sym___r_double_quote] = ACTIONS(2852), - [sym___r_single_quote] = ACTIONS(2852), - }, - [866] = { - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_EQ] = ACTIONS(2856), - [anon_sym___global] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_STAR_EQ] = ACTIONS(2856), - [anon_sym_SLASH_EQ] = ACTIONS(2856), - [anon_sym_PERCENT_EQ] = ACTIONS(2856), - [anon_sym_LT_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_GT_EQ] = ACTIONS(2856), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2856), - [anon_sym_AMP_EQ] = ACTIONS(2856), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2856), - [anon_sym_PLUS_EQ] = ACTIONS(2856), - [anon_sym_DASH_EQ] = ACTIONS(2856), - [anon_sym_PIPE_EQ] = ACTIONS(2856), - [anon_sym_CARET_EQ] = ACTIONS(2856), - [anon_sym_COLON_EQ] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [anon_sym_assert] = ACTIONS(2856), - [anon_sym_defer] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_DOLLARfor] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_asm] = ACTIONS(2856), - [anon_sym_AT_LBRACK] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), - }, - [867] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_EQ] = ACTIONS(2860), - [anon_sym___global] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_STAR_EQ] = ACTIONS(2860), - [anon_sym_SLASH_EQ] = ACTIONS(2860), - [anon_sym_PERCENT_EQ] = ACTIONS(2860), - [anon_sym_LT_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_GT_EQ] = ACTIONS(2860), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2860), - [anon_sym_AMP_EQ] = ACTIONS(2860), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2860), - [anon_sym_PLUS_EQ] = ACTIONS(2860), - [anon_sym_DASH_EQ] = ACTIONS(2860), - [anon_sym_PIPE_EQ] = ACTIONS(2860), - [anon_sym_CARET_EQ] = ACTIONS(2860), - [anon_sym_COLON_EQ] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [anon_sym_assert] = ACTIONS(2860), - [anon_sym_defer] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_DOLLARfor] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(2860), - [anon_sym_asm] = ACTIONS(2860), - [anon_sym_AT_LBRACK] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), - }, - [868] = { - [ts_builtin_sym_end] = ACTIONS(2862), - [sym_identifier] = ACTIONS(2864), - [anon_sym_LF] = ACTIONS(2864), - [anon_sym_CR] = ACTIONS(2864), - [anon_sym_CR_LF] = ACTIONS(2864), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym___global] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2864), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_EQ_EQ] = ACTIONS(2864), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_union] = ACTIONS(2864), - [anon_sym_pub] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_interface] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_QMARK] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_go] = ACTIONS(2864), - [anon_sym_spawn] = ACTIONS(2864), - [anon_sym_json_DOTdecode] = ACTIONS(2864), - [anon_sym_LBRACK2] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_LT_DASH] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2864), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2864), - [anon_sym_AMP_CARET] = ACTIONS(2864), - [anon_sym_AMP_AMP] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2864), - [sym_none] = ACTIONS(2864), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_nil] = ACTIONS(2864), - [anon_sym_QMARK_DOT] = ACTIONS(2864), - [anon_sym_POUND_LBRACK] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_DOLLARif] = ACTIONS(2864), - [anon_sym_is] = ACTIONS(2864), - [anon_sym_BANGis] = ACTIONS(2864), - [anon_sym_in] = ACTIONS(2864), - [anon_sym_BANGin] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_select] = ACTIONS(2864), - [anon_sym_STAR_EQ] = ACTIONS(2864), - [anon_sym_SLASH_EQ] = ACTIONS(2864), - [anon_sym_PERCENT_EQ] = ACTIONS(2864), - [anon_sym_LT_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_GT_EQ] = ACTIONS(2864), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2864), - [anon_sym_AMP_EQ] = ACTIONS(2864), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2864), - [anon_sym_PLUS_EQ] = ACTIONS(2864), - [anon_sym_DASH_EQ] = ACTIONS(2864), - [anon_sym_PIPE_EQ] = ACTIONS(2864), - [anon_sym_CARET_EQ] = ACTIONS(2864), - [anon_sym_COLON_EQ] = ACTIONS(2864), - [anon_sym_lock] = ACTIONS(2864), - [anon_sym_rlock] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_sql] = ACTIONS(2864), - [sym_int_literal] = ACTIONS(2864), - [sym_float_literal] = ACTIONS(2864), - [sym_rune_literal] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_shared] = ACTIONS(2864), - [anon_sym_map_LBRACK] = ACTIONS(2864), - [anon_sym_chan] = ACTIONS(2864), - [anon_sym_thread] = ACTIONS(2864), - [anon_sym_atomic] = ACTIONS(2864), - [anon_sym_assert] = ACTIONS(2864), - [anon_sym_defer] = ACTIONS(2864), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_DOLLARfor] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_POUND] = ACTIONS(2864), - [anon_sym_asm] = ACTIONS(2864), - [anon_sym_AT_LBRACK] = ACTIONS(2864), - [sym___double_quote] = ACTIONS(2864), - [sym___single_quote] = ACTIONS(2864), - [sym___c_double_quote] = ACTIONS(2864), - [sym___c_single_quote] = ACTIONS(2864), - [sym___r_double_quote] = ACTIONS(2864), - [sym___r_single_quote] = ACTIONS(2864), - }, - [869] = { - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_EQ] = ACTIONS(2868), - [anon_sym___global] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_interface] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_STAR_EQ] = ACTIONS(2868), - [anon_sym_SLASH_EQ] = ACTIONS(2868), - [anon_sym_PERCENT_EQ] = ACTIONS(2868), - [anon_sym_LT_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2868), - [anon_sym_AMP_EQ] = ACTIONS(2868), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2868), - [anon_sym_PLUS_EQ] = ACTIONS(2868), - [anon_sym_DASH_EQ] = ACTIONS(2868), - [anon_sym_PIPE_EQ] = ACTIONS(2868), - [anon_sym_CARET_EQ] = ACTIONS(2868), - [anon_sym_COLON_EQ] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [anon_sym_assert] = ACTIONS(2868), - [anon_sym_defer] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_DOLLARfor] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_asm] = ACTIONS(2868), - [anon_sym_AT_LBRACK] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), - }, - [870] = { - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_EQ] = ACTIONS(2872), - [anon_sym___global] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_STAR_EQ] = ACTIONS(2872), - [anon_sym_SLASH_EQ] = ACTIONS(2872), - [anon_sym_PERCENT_EQ] = ACTIONS(2872), - [anon_sym_LT_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_GT_EQ] = ACTIONS(2872), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2872), - [anon_sym_AMP_EQ] = ACTIONS(2872), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2872), - [anon_sym_PLUS_EQ] = ACTIONS(2872), - [anon_sym_DASH_EQ] = ACTIONS(2872), - [anon_sym_PIPE_EQ] = ACTIONS(2872), - [anon_sym_CARET_EQ] = ACTIONS(2872), - [anon_sym_COLON_EQ] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [anon_sym_assert] = ACTIONS(2872), - [anon_sym_defer] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_DOLLARfor] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2872), - [anon_sym_asm] = ACTIONS(2872), - [anon_sym_AT_LBRACK] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), - }, - [871] = { - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2876), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_CR] = ACTIONS(2876), - [anon_sym_CR_LF] = ACTIONS(2876), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_EQ] = ACTIONS(2876), - [anon_sym___global] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PERCENT] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_mut] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_interface] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_QMARK] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_go] = ACTIONS(2876), - [anon_sym_spawn] = ACTIONS(2876), - [anon_sym_json_DOTdecode] = ACTIONS(2876), - [anon_sym_LBRACK2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2876), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_CARET] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2876), - [sym_none] = ACTIONS(2876), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_nil] = ACTIONS(2876), - [anon_sym_QMARK_DOT] = ACTIONS(2876), - [anon_sym_POUND_LBRACK] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_DOLLARif] = ACTIONS(2876), - [anon_sym_is] = ACTIONS(2876), - [anon_sym_BANGis] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_BANGin] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_select] = ACTIONS(2876), - [anon_sym_STAR_EQ] = ACTIONS(2876), - [anon_sym_SLASH_EQ] = ACTIONS(2876), - [anon_sym_PERCENT_EQ] = ACTIONS(2876), - [anon_sym_LT_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_GT_EQ] = ACTIONS(2876), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2876), - [anon_sym_AMP_EQ] = ACTIONS(2876), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2876), - [anon_sym_PLUS_EQ] = ACTIONS(2876), - [anon_sym_DASH_EQ] = ACTIONS(2876), - [anon_sym_PIPE_EQ] = ACTIONS(2876), - [anon_sym_CARET_EQ] = ACTIONS(2876), - [anon_sym_COLON_EQ] = ACTIONS(2876), - [anon_sym_lock] = ACTIONS(2876), - [anon_sym_rlock] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_sql] = ACTIONS(2876), - [sym_int_literal] = ACTIONS(2876), - [sym_float_literal] = ACTIONS(2876), - [sym_rune_literal] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_shared] = ACTIONS(2876), - [anon_sym_map_LBRACK] = ACTIONS(2876), - [anon_sym_chan] = ACTIONS(2876), - [anon_sym_thread] = ACTIONS(2876), - [anon_sym_atomic] = ACTIONS(2876), - [anon_sym_assert] = ACTIONS(2876), - [anon_sym_defer] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_DOLLARfor] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_POUND] = ACTIONS(2876), - [anon_sym_asm] = ACTIONS(2876), - [anon_sym_AT_LBRACK] = ACTIONS(2876), - [sym___double_quote] = ACTIONS(2876), - [sym___single_quote] = ACTIONS(2876), - [sym___c_double_quote] = ACTIONS(2876), - [sym___c_single_quote] = ACTIONS(2876), - [sym___r_double_quote] = ACTIONS(2876), - [sym___r_single_quote] = ACTIONS(2876), - }, - [872] = { - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_EQ] = ACTIONS(2880), - [anon_sym___global] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_STAR_EQ] = ACTIONS(2880), - [anon_sym_SLASH_EQ] = ACTIONS(2880), - [anon_sym_PERCENT_EQ] = ACTIONS(2880), - [anon_sym_LT_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_GT_EQ] = ACTIONS(2880), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2880), - [anon_sym_AMP_EQ] = ACTIONS(2880), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2880), - [anon_sym_PLUS_EQ] = ACTIONS(2880), - [anon_sym_DASH_EQ] = ACTIONS(2880), - [anon_sym_PIPE_EQ] = ACTIONS(2880), - [anon_sym_CARET_EQ] = ACTIONS(2880), - [anon_sym_COLON_EQ] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [anon_sym_assert] = ACTIONS(2880), - [anon_sym_defer] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_DOLLARfor] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2880), - [anon_sym_asm] = ACTIONS(2880), - [anon_sym_AT_LBRACK] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), - }, - [873] = { - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2884), - [anon_sym___global] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_interface] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_STAR_EQ] = ACTIONS(2884), - [anon_sym_SLASH_EQ] = ACTIONS(2884), - [anon_sym_PERCENT_EQ] = ACTIONS(2884), - [anon_sym_LT_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_GT_EQ] = ACTIONS(2884), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2884), - [anon_sym_AMP_EQ] = ACTIONS(2884), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2884), - [anon_sym_PLUS_EQ] = ACTIONS(2884), - [anon_sym_DASH_EQ] = ACTIONS(2884), - [anon_sym_PIPE_EQ] = ACTIONS(2884), - [anon_sym_CARET_EQ] = ACTIONS(2884), - [anon_sym_COLON_EQ] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [anon_sym_assert] = ACTIONS(2884), - [anon_sym_defer] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_DOLLARfor] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(2884), - [anon_sym_asm] = ACTIONS(2884), - [anon_sym_AT_LBRACK] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), - }, - [874] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_LT_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_AMP_EQ] = ACTIONS(2772), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_PIPE_EQ] = ACTIONS(2772), - [anon_sym_CARET_EQ] = ACTIONS(2772), - [anon_sym_COLON_EQ] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [875] = { - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_EQ] = ACTIONS(2891), - [anon_sym___global] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_pub] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_interface] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_STAR_EQ] = ACTIONS(2891), - [anon_sym_SLASH_EQ] = ACTIONS(2891), - [anon_sym_PERCENT_EQ] = ACTIONS(2891), - [anon_sym_LT_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_GT_EQ] = ACTIONS(2891), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2891), - [anon_sym_AMP_EQ] = ACTIONS(2891), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2891), - [anon_sym_PLUS_EQ] = ACTIONS(2891), - [anon_sym_DASH_EQ] = ACTIONS(2891), - [anon_sym_PIPE_EQ] = ACTIONS(2891), - [anon_sym_CARET_EQ] = ACTIONS(2891), - [anon_sym_COLON_EQ] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [anon_sym_AT] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [anon_sym_assert] = ACTIONS(2891), - [anon_sym_defer] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_DOLLARfor] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym_AT_LBRACK] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), - }, - [876] = { - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_EQ] = ACTIONS(2895), - [anon_sym___global] = ACTIONS(2895), - [anon_sym_type] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_pub] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_interface] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_STAR_EQ] = ACTIONS(2895), - [anon_sym_SLASH_EQ] = ACTIONS(2895), - [anon_sym_PERCENT_EQ] = ACTIONS(2895), - [anon_sym_LT_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_GT_EQ] = ACTIONS(2895), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2895), - [anon_sym_AMP_EQ] = ACTIONS(2895), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2895), - [anon_sym_PLUS_EQ] = ACTIONS(2895), - [anon_sym_DASH_EQ] = ACTIONS(2895), - [anon_sym_PIPE_EQ] = ACTIONS(2895), - [anon_sym_CARET_EQ] = ACTIONS(2895), - [anon_sym_COLON_EQ] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [anon_sym_assert] = ACTIONS(2895), - [anon_sym_defer] = ACTIONS(2895), - [anon_sym_goto] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_DOLLARfor] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_asm] = ACTIONS(2895), - [anon_sym_AT_LBRACK] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), - }, - [877] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_EQ] = ACTIONS(2899), - [anon_sym___global] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_LT_EQ] = ACTIONS(2899), - [anon_sym_GT_EQ] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_pub] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_interface] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_CARET] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_STAR_EQ] = ACTIONS(2899), - [anon_sym_SLASH_EQ] = ACTIONS(2899), - [anon_sym_PERCENT_EQ] = ACTIONS(2899), - [anon_sym_LT_LT_EQ] = ACTIONS(2899), - [anon_sym_GT_GT_EQ] = ACTIONS(2899), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2899), - [anon_sym_AMP_EQ] = ACTIONS(2899), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2899), - [anon_sym_PLUS_EQ] = ACTIONS(2899), - [anon_sym_DASH_EQ] = ACTIONS(2899), - [anon_sym_PIPE_EQ] = ACTIONS(2899), - [anon_sym_CARET_EQ] = ACTIONS(2899), - [anon_sym_COLON_EQ] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - [sym_rune_literal] = ACTIONS(2899), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [anon_sym_assert] = ACTIONS(2899), - [anon_sym_defer] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_DOLLARfor] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_asm] = ACTIONS(2899), - [anon_sym_AT_LBRACK] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2899), - [sym___single_quote] = ACTIONS(2899), - [sym___c_double_quote] = ACTIONS(2899), - [sym___c_single_quote] = ACTIONS(2899), - [sym___r_double_quote] = ACTIONS(2899), - [sym___r_single_quote] = ACTIONS(2899), - }, - [878] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_EQ] = ACTIONS(2903), - [anon_sym___global] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_EQ] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_GT_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_CARET] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_STAR_EQ] = ACTIONS(2903), - [anon_sym_SLASH_EQ] = ACTIONS(2903), - [anon_sym_PERCENT_EQ] = ACTIONS(2903), - [anon_sym_LT_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_GT_EQ] = ACTIONS(2903), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2903), - [anon_sym_AMP_EQ] = ACTIONS(2903), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2903), - [anon_sym_PLUS_EQ] = ACTIONS(2903), - [anon_sym_DASH_EQ] = ACTIONS(2903), - [anon_sym_PIPE_EQ] = ACTIONS(2903), - [anon_sym_CARET_EQ] = ACTIONS(2903), - [anon_sym_COLON_EQ] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_defer] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_DOLLARfor] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym_AT_LBRACK] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2903), - [sym___single_quote] = ACTIONS(2903), - [sym___c_double_quote] = ACTIONS(2903), - [sym___c_single_quote] = ACTIONS(2903), - [sym___r_double_quote] = ACTIONS(2903), - [sym___r_single_quote] = ACTIONS(2903), - }, - [879] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_EQ] = ACTIONS(2907), - [anon_sym___global] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_pub] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_interface] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_STAR_EQ] = ACTIONS(2907), - [anon_sym_SLASH_EQ] = ACTIONS(2907), - [anon_sym_PERCENT_EQ] = ACTIONS(2907), - [anon_sym_LT_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_GT_EQ] = ACTIONS(2907), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2907), - [anon_sym_AMP_EQ] = ACTIONS(2907), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2907), - [anon_sym_PLUS_EQ] = ACTIONS(2907), - [anon_sym_DASH_EQ] = ACTIONS(2907), - [anon_sym_PIPE_EQ] = ACTIONS(2907), - [anon_sym_CARET_EQ] = ACTIONS(2907), - [anon_sym_COLON_EQ] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [anon_sym_assert] = ACTIONS(2907), - [anon_sym_defer] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_DOLLARfor] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym_AT_LBRACK] = ACTIONS(2907), - [sym___double_quote] = ACTIONS(2907), - [sym___single_quote] = ACTIONS(2907), - [sym___c_double_quote] = ACTIONS(2907), - [sym___c_single_quote] = ACTIONS(2907), - [sym___r_double_quote] = ACTIONS(2907), - [sym___r_single_quote] = ACTIONS(2907), - }, - [880] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_EQ] = ACTIONS(2911), - [anon_sym___global] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_pub] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_AMP_CARET] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_STAR_EQ] = ACTIONS(2911), - [anon_sym_SLASH_EQ] = ACTIONS(2911), - [anon_sym_PERCENT_EQ] = ACTIONS(2911), - [anon_sym_LT_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_GT_EQ] = ACTIONS(2911), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2911), - [anon_sym_AMP_EQ] = ACTIONS(2911), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2911), - [anon_sym_PLUS_EQ] = ACTIONS(2911), - [anon_sym_DASH_EQ] = ACTIONS(2911), - [anon_sym_PIPE_EQ] = ACTIONS(2911), - [anon_sym_CARET_EQ] = ACTIONS(2911), - [anon_sym_COLON_EQ] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [anon_sym_assert] = ACTIONS(2911), - [anon_sym_defer] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_DOLLARfor] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym_AT_LBRACK] = ACTIONS(2911), - [sym___double_quote] = ACTIONS(2911), - [sym___single_quote] = ACTIONS(2911), - [sym___c_double_quote] = ACTIONS(2911), - [sym___c_single_quote] = ACTIONS(2911), - [sym___r_double_quote] = ACTIONS(2911), - [sym___r_single_quote] = ACTIONS(2911), - }, - [881] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_EQ] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_AMP_CARET] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_STAR_EQ] = ACTIONS(2915), - [anon_sym_SLASH_EQ] = ACTIONS(2915), - [anon_sym_PERCENT_EQ] = ACTIONS(2915), - [anon_sym_LT_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_GT_EQ] = ACTIONS(2915), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2915), - [anon_sym_AMP_EQ] = ACTIONS(2915), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2915), - [anon_sym_PLUS_EQ] = ACTIONS(2915), - [anon_sym_DASH_EQ] = ACTIONS(2915), - [anon_sym_PIPE_EQ] = ACTIONS(2915), - [anon_sym_CARET_EQ] = ACTIONS(2915), - [anon_sym_COLON_EQ] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), - }, - [882] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_CR] = ACTIONS(2919), - [anon_sym_CR_LF] = ACTIONS(2919), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_EQ] = ACTIONS(2919), - [anon_sym___global] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), - [anon_sym_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_pub] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_interface] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_GT_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_CARET] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_QMARK_DOT] = ACTIONS(2919), - [anon_sym_POUND_LBRACK] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_is] = ACTIONS(2919), - [anon_sym_BANGis] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_BANGin] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_STAR_EQ] = ACTIONS(2919), - [anon_sym_SLASH_EQ] = ACTIONS(2919), - [anon_sym_PERCENT_EQ] = ACTIONS(2919), - [anon_sym_LT_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_GT_EQ] = ACTIONS(2919), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2919), - [anon_sym_AMP_EQ] = ACTIONS(2919), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2919), - [anon_sym_PLUS_EQ] = ACTIONS(2919), - [anon_sym_DASH_EQ] = ACTIONS(2919), - [anon_sym_PIPE_EQ] = ACTIONS(2919), - [anon_sym_CARET_EQ] = ACTIONS(2919), - [anon_sym_COLON_EQ] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [anon_sym_assert] = ACTIONS(2919), - [anon_sym_defer] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_DOLLARfor] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym_AT_LBRACK] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2919), - [sym___single_quote] = ACTIONS(2919), - [sym___c_double_quote] = ACTIONS(2919), - [sym___c_single_quote] = ACTIONS(2919), - [sym___r_double_quote] = ACTIONS(2919), - [sym___r_single_quote] = ACTIONS(2919), - }, - [883] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2923), - [anon_sym_LF] = ACTIONS(2923), - [anon_sym_CR] = ACTIONS(2923), - [anon_sym_CR_LF] = ACTIONS(2923), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_as] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_EQ] = ACTIONS(2923), - [anon_sym___global] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_PERCENT] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_EQ_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_EQ] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_pub] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_interface] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_go] = ACTIONS(2923), - [anon_sym_spawn] = ACTIONS(2923), - [anon_sym_json_DOTdecode] = ACTIONS(2923), - [anon_sym_LBRACK2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_CARET] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2923), - [anon_sym_LT_LT] = ACTIONS(2923), - [anon_sym_GT_GT] = ACTIONS(2923), - [anon_sym_GT_GT_GT] = ACTIONS(2923), - [anon_sym_AMP_CARET] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_nil] = ACTIONS(2923), - [anon_sym_QMARK_DOT] = ACTIONS(2923), - [anon_sym_POUND_LBRACK] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_DOLLARif] = ACTIONS(2923), - [anon_sym_is] = ACTIONS(2923), - [anon_sym_BANGis] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_BANGin] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_select] = ACTIONS(2923), - [anon_sym_STAR_EQ] = ACTIONS(2923), - [anon_sym_SLASH_EQ] = ACTIONS(2923), - [anon_sym_PERCENT_EQ] = ACTIONS(2923), - [anon_sym_LT_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_GT_EQ] = ACTIONS(2923), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2923), - [anon_sym_AMP_EQ] = ACTIONS(2923), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2923), - [anon_sym_PLUS_EQ] = ACTIONS(2923), - [anon_sym_DASH_EQ] = ACTIONS(2923), - [anon_sym_PIPE_EQ] = ACTIONS(2923), - [anon_sym_CARET_EQ] = ACTIONS(2923), - [anon_sym_COLON_EQ] = ACTIONS(2923), - [anon_sym_lock] = ACTIONS(2923), - [anon_sym_rlock] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_sql] = ACTIONS(2923), - [sym_int_literal] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2923), - [sym_rune_literal] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_shared] = ACTIONS(2923), - [anon_sym_map_LBRACK] = ACTIONS(2923), - [anon_sym_chan] = ACTIONS(2923), - [anon_sym_thread] = ACTIONS(2923), - [anon_sym_atomic] = ACTIONS(2923), - [anon_sym_assert] = ACTIONS(2923), - [anon_sym_defer] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_DOLLARfor] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym_AT_LBRACK] = ACTIONS(2923), - [sym___double_quote] = ACTIONS(2923), - [sym___single_quote] = ACTIONS(2923), - [sym___c_double_quote] = ACTIONS(2923), - [sym___c_single_quote] = ACTIONS(2923), - [sym___r_double_quote] = ACTIONS(2923), - [sym___r_single_quote] = ACTIONS(2923), - }, - [884] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_LF] = ACTIONS(2927), - [anon_sym_CR] = ACTIONS(2927), - [anon_sym_CR_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_as] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_EQ] = ACTIONS(2927), - [anon_sym___global] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2927), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_EQ_EQ] = ACTIONS(2927), - [anon_sym_BANG_EQ] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_pub] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_interface] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2927), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2927), - [anon_sym_LT_LT] = ACTIONS(2927), - [anon_sym_GT_GT] = ACTIONS(2927), - [anon_sym_GT_GT_GT] = ACTIONS(2927), - [anon_sym_AMP_CARET] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_QMARK_DOT] = ACTIONS(2927), - [anon_sym_POUND_LBRACK] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_is] = ACTIONS(2927), - [anon_sym_BANGis] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_BANGin] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_STAR_EQ] = ACTIONS(2927), - [anon_sym_SLASH_EQ] = ACTIONS(2927), - [anon_sym_PERCENT_EQ] = ACTIONS(2927), - [anon_sym_LT_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_GT_EQ] = ACTIONS(2927), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2927), - [anon_sym_AMP_EQ] = ACTIONS(2927), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2927), - [anon_sym_PLUS_EQ] = ACTIONS(2927), - [anon_sym_DASH_EQ] = ACTIONS(2927), - [anon_sym_PIPE_EQ] = ACTIONS(2927), - [anon_sym_CARET_EQ] = ACTIONS(2927), - [anon_sym_COLON_EQ] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), - [sym_rune_literal] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2927), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [anon_sym_assert] = ACTIONS(2927), - [anon_sym_defer] = ACTIONS(2927), - [anon_sym_goto] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_DOLLARfor] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_asm] = ACTIONS(2927), - [anon_sym_AT_LBRACK] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2927), - [sym___single_quote] = ACTIONS(2927), - [sym___c_double_quote] = ACTIONS(2927), - [sym___c_single_quote] = ACTIONS(2927), - [sym___r_double_quote] = ACTIONS(2927), - [sym___r_single_quote] = ACTIONS(2927), - }, - [885] = { - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_EQ] = ACTIONS(2931), - [anon_sym___global] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_STAR_EQ] = ACTIONS(2931), - [anon_sym_SLASH_EQ] = ACTIONS(2931), - [anon_sym_PERCENT_EQ] = ACTIONS(2931), - [anon_sym_LT_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2931), - [anon_sym_AMP_EQ] = ACTIONS(2931), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2931), - [anon_sym_PLUS_EQ] = ACTIONS(2931), - [anon_sym_DASH_EQ] = ACTIONS(2931), - [anon_sym_PIPE_EQ] = ACTIONS(2931), - [anon_sym_CARET_EQ] = ACTIONS(2931), - [anon_sym_COLON_EQ] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym_AT_LBRACK] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), - }, - [886] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_EQ] = ACTIONS(2935), - [anon_sym___global] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_STAR_EQ] = ACTIONS(2935), - [anon_sym_SLASH_EQ] = ACTIONS(2935), - [anon_sym_PERCENT_EQ] = ACTIONS(2935), - [anon_sym_LT_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_GT_EQ] = ACTIONS(2935), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2935), - [anon_sym_AMP_EQ] = ACTIONS(2935), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2935), - [anon_sym_PLUS_EQ] = ACTIONS(2935), - [anon_sym_DASH_EQ] = ACTIONS(2935), - [anon_sym_PIPE_EQ] = ACTIONS(2935), - [anon_sym_CARET_EQ] = ACTIONS(2935), - [anon_sym_COLON_EQ] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym_AT_LBRACK] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), - }, - [887] = { - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_as] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_COMMA] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym_EQ] = ACTIONS(2939), - [anon_sym___global] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_PERCENT] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_GT] = ACTIONS(2939), - [anon_sym_EQ_EQ] = ACTIONS(2939), - [anon_sym_BANG_EQ] = ACTIONS(2939), - [anon_sym_LT_EQ] = ACTIONS(2939), - [anon_sym_GT_EQ] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_pub] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_interface] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2939), - [anon_sym_GT_GT] = ACTIONS(2939), - [anon_sym_GT_GT_GT] = ACTIONS(2939), - [anon_sym_AMP_CARET] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_PIPE_PIPE] = ACTIONS(2939), - [anon_sym_or] = ACTIONS(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_QMARK_DOT] = ACTIONS(2939), - [anon_sym_POUND_LBRACK] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_is] = ACTIONS(2939), - [anon_sym_BANGis] = ACTIONS(2939), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_BANGin] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_STAR_EQ] = ACTIONS(2939), - [anon_sym_SLASH_EQ] = ACTIONS(2939), - [anon_sym_PERCENT_EQ] = ACTIONS(2939), - [anon_sym_LT_LT_EQ] = ACTIONS(2939), - [anon_sym_GT_GT_EQ] = ACTIONS(2939), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2939), - [anon_sym_AMP_EQ] = ACTIONS(2939), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2939), - [anon_sym_PLUS_EQ] = ACTIONS(2939), - [anon_sym_DASH_EQ] = ACTIONS(2939), - [anon_sym_PIPE_EQ] = ACTIONS(2939), - [anon_sym_CARET_EQ] = ACTIONS(2939), - [anon_sym_COLON_EQ] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), - [sym_rune_literal] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2939), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [anon_sym_assert] = ACTIONS(2939), - [anon_sym_defer] = ACTIONS(2939), - [anon_sym_goto] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_DOLLARfor] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_asm] = ACTIONS(2939), - [anon_sym_AT_LBRACK] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2939), - [sym___single_quote] = ACTIONS(2939), - [sym___c_double_quote] = ACTIONS(2939), - [sym___c_single_quote] = ACTIONS(2939), - [sym___r_double_quote] = ACTIONS(2939), - [sym___r_single_quote] = ACTIONS(2939), - }, - [888] = { - [ts_builtin_sym_end] = ACTIONS(2941), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LF] = ACTIONS(2943), - [anon_sym_CR] = ACTIONS(2943), - [anon_sym_CR_LF] = ACTIONS(2943), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_EQ] = ACTIONS(2943), - [anon_sym___global] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_pub] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_interface] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(2945), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_STAR_EQ] = ACTIONS(2943), - [anon_sym_SLASH_EQ] = ACTIONS(2943), - [anon_sym_PERCENT_EQ] = ACTIONS(2943), - [anon_sym_LT_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_GT_EQ] = ACTIONS(2943), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2943), - [anon_sym_AMP_EQ] = ACTIONS(2943), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2943), - [anon_sym_PLUS_EQ] = ACTIONS(2943), - [anon_sym_DASH_EQ] = ACTIONS(2943), - [anon_sym_PIPE_EQ] = ACTIONS(2943), - [anon_sym_CARET_EQ] = ACTIONS(2943), - [anon_sym_COLON_EQ] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [anon_sym_AT] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [anon_sym_assert] = ACTIONS(2943), - [anon_sym_defer] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_DOLLARfor] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_asm] = ACTIONS(2943), - [anon_sym_AT_LBRACK] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), - }, - [889] = { - [ts_builtin_sym_end] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2949), - [anon_sym_LF] = ACTIONS(2949), - [anon_sym_CR] = ACTIONS(2949), - [anon_sym_CR_LF] = ACTIONS(2949), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_EQ] = ACTIONS(2951), - [anon_sym___global] = ACTIONS(2949), - [anon_sym_type] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_pub] = ACTIONS(2949), - [anon_sym_mut] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_interface] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2949), - [anon_sym_select] = ACTIONS(2949), - [anon_sym_STAR_EQ] = ACTIONS(2951), - [anon_sym_SLASH_EQ] = ACTIONS(2951), - [anon_sym_PERCENT_EQ] = ACTIONS(2951), - [anon_sym_LT_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_GT_EQ] = ACTIONS(2951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2951), - [anon_sym_AMP_EQ] = ACTIONS(2951), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2951), - [anon_sym_PLUS_EQ] = ACTIONS(2951), - [anon_sym_DASH_EQ] = ACTIONS(2951), - [anon_sym_PIPE_EQ] = ACTIONS(2951), - [anon_sym_CARET_EQ] = ACTIONS(2951), - [anon_sym_COLON_EQ] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2949), - [anon_sym_rlock] = ACTIONS(2949), - [anon_sym_unsafe] = ACTIONS(2949), - [anon_sym_sql] = ACTIONS(2949), - [sym_int_literal] = ACTIONS(2949), - [sym_float_literal] = ACTIONS(2949), - [sym_rune_literal] = ACTIONS(2949), - [anon_sym_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [anon_sym_assert] = ACTIONS(2949), - [anon_sym_defer] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_DOLLARfor] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_POUND] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym_AT_LBRACK] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2949), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2949), - [sym___c_single_quote] = ACTIONS(2949), - [sym___r_double_quote] = ACTIONS(2949), - [sym___r_single_quote] = ACTIONS(2949), - }, - [890] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_CR] = ACTIONS(2959), - [anon_sym_CR_LF] = ACTIONS(2959), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_EQ] = ACTIONS(2959), - [anon_sym___global] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_union] = ACTIONS(2959), - [anon_sym_pub] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_GT_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_CARET] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_QMARK_DOT] = ACTIONS(2959), - [anon_sym_POUND_LBRACK] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_BANGis] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_BANGin] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_STAR_EQ] = ACTIONS(2959), - [anon_sym_SLASH_EQ] = ACTIONS(2959), - [anon_sym_PERCENT_EQ] = ACTIONS(2959), - [anon_sym_LT_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_GT_EQ] = ACTIONS(2959), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2959), - [anon_sym_AMP_EQ] = ACTIONS(2959), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2959), - [anon_sym_PLUS_EQ] = ACTIONS(2959), - [anon_sym_DASH_EQ] = ACTIONS(2959), - [anon_sym_PIPE_EQ] = ACTIONS(2959), - [anon_sym_CARET_EQ] = ACTIONS(2959), - [anon_sym_COLON_EQ] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_defer] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_DOLLARfor] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2959), - [anon_sym_AT_LBRACK] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), - }, - [891] = { - [ts_builtin_sym_end] = ACTIONS(2961), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LF] = ACTIONS(2963), - [anon_sym_CR] = ACTIONS(2963), - [anon_sym_CR_LF] = ACTIONS(2963), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_const] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_EQ] = ACTIONS(2963), - [anon_sym___global] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_EQ_EQ] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_EQ] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_union] = ACTIONS(2963), - [anon_sym_pub] = ACTIONS(2963), - [anon_sym_mut] = ACTIONS(2963), - [anon_sym_enum] = ACTIONS(2963), - [anon_sym_interface] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2963), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_LBRACK2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2963), - [anon_sym_AMP_CARET] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [sym_none] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_nil] = ACTIONS(2963), - [anon_sym_QMARK_DOT] = ACTIONS(2963), - [anon_sym_POUND_LBRACK] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_DOLLARif] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_BANGis] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_BANGin] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_select] = ACTIONS(2963), - [anon_sym_STAR_EQ] = ACTIONS(2963), - [anon_sym_SLASH_EQ] = ACTIONS(2963), - [anon_sym_PERCENT_EQ] = ACTIONS(2963), - [anon_sym_LT_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_GT_EQ] = ACTIONS(2963), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2963), - [anon_sym_AMP_EQ] = ACTIONS(2963), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2963), - [anon_sym_PLUS_EQ] = ACTIONS(2963), - [anon_sym_DASH_EQ] = ACTIONS(2963), - [anon_sym_PIPE_EQ] = ACTIONS(2963), - [anon_sym_CARET_EQ] = ACTIONS(2963), - [anon_sym_COLON_EQ] = ACTIONS(2963), - [anon_sym_lock] = ACTIONS(2963), - [anon_sym_rlock] = ACTIONS(2963), - [anon_sym_unsafe] = ACTIONS(2963), - [anon_sym_sql] = ACTIONS(2963), - [sym_int_literal] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2963), - [anon_sym_shared] = ACTIONS(2963), - [anon_sym_map_LBRACK] = ACTIONS(2963), - [anon_sym_chan] = ACTIONS(2963), - [anon_sym_thread] = ACTIONS(2963), - [anon_sym_atomic] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_defer] = ACTIONS(2963), - [anon_sym_goto] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_DOLLARfor] = ACTIONS(2963), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_asm] = ACTIONS(2963), - [anon_sym_AT_LBRACK] = ACTIONS(2963), - [sym___double_quote] = ACTIONS(2963), - [sym___single_quote] = ACTIONS(2963), - [sym___c_double_quote] = ACTIONS(2963), - [sym___c_single_quote] = ACTIONS(2963), - [sym___r_double_quote] = ACTIONS(2963), - [sym___r_single_quote] = ACTIONS(2963), - }, - [892] = { - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_identifier] = ACTIONS(2967), - [anon_sym_LF] = ACTIONS(2967), - [anon_sym_CR] = ACTIONS(2967), - [anon_sym_CR_LF] = ACTIONS(2967), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_EQ] = ACTIONS(2967), - [anon_sym___global] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [anon_sym_EQ_EQ] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_union] = ACTIONS(2967), - [anon_sym_pub] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), - [anon_sym_interface] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2967), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_GT_GT_GT] = ACTIONS(2967), - [anon_sym_AMP_CARET] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_STAR_EQ] = ACTIONS(2967), - [anon_sym_SLASH_EQ] = ACTIONS(2967), - [anon_sym_PERCENT_EQ] = ACTIONS(2967), - [anon_sym_LT_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_GT_EQ] = ACTIONS(2967), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2967), - [anon_sym_AMP_EQ] = ACTIONS(2967), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2967), - [anon_sym_PLUS_EQ] = ACTIONS(2967), - [anon_sym_DASH_EQ] = ACTIONS(2967), - [anon_sym_PIPE_EQ] = ACTIONS(2967), - [anon_sym_CARET_EQ] = ACTIONS(2967), - [anon_sym_COLON_EQ] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), - [sym_rune_literal] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2967), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [anon_sym_assert] = ACTIONS(2967), - [anon_sym_defer] = ACTIONS(2967), - [anon_sym_goto] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_DOLLARfor] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_asm] = ACTIONS(2967), - [anon_sym_AT_LBRACK] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2967), - [sym___c_double_quote] = ACTIONS(2967), - [sym___c_single_quote] = ACTIONS(2967), - [sym___r_double_quote] = ACTIONS(2967), - [sym___r_single_quote] = ACTIONS(2967), - }, - [893] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [sym_identifier] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_CR] = ACTIONS(2971), - [anon_sym_CR_LF] = ACTIONS(2971), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2973), - [anon_sym___global] = ACTIONS(2971), - [anon_sym_type] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(2971), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_enum] = ACTIONS(2971), - [anon_sym_interface] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_STAR_EQ] = ACTIONS(2973), - [anon_sym_SLASH_EQ] = ACTIONS(2973), - [anon_sym_PERCENT_EQ] = ACTIONS(2973), - [anon_sym_LT_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_GT_EQ] = ACTIONS(2973), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2973), - [anon_sym_AMP_EQ] = ACTIONS(2973), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2973), - [anon_sym_PLUS_EQ] = ACTIONS(2973), - [anon_sym_DASH_EQ] = ACTIONS(2973), - [anon_sym_PIPE_EQ] = ACTIONS(2973), - [anon_sym_CARET_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2973), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [anon_sym_assert] = ACTIONS(2971), - [anon_sym_defer] = ACTIONS(2971), - [anon_sym_goto] = ACTIONS(2971), - [anon_sym_break] = ACTIONS(2971), - [anon_sym_continue] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2971), - [anon_sym_DOLLARfor] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_asm] = ACTIONS(2971), - [anon_sym_AT_LBRACK] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2971), - [sym___single_quote] = ACTIONS(2971), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2971), - [sym___r_double_quote] = ACTIONS(2971), - [sym___r_single_quote] = ACTIONS(2971), - }, - [894] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_EQ] = ACTIONS(2981), - [anon_sym___global] = ACTIONS(2981), - [anon_sym_type] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_pub] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_interface] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_STAR_EQ] = ACTIONS(2981), - [anon_sym_SLASH_EQ] = ACTIONS(2981), - [anon_sym_PERCENT_EQ] = ACTIONS(2981), - [anon_sym_LT_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_GT_EQ] = ACTIONS(2981), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2981), - [anon_sym_AMP_EQ] = ACTIONS(2981), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2981), - [anon_sym_PLUS_EQ] = ACTIONS(2981), - [anon_sym_DASH_EQ] = ACTIONS(2981), - [anon_sym_PIPE_EQ] = ACTIONS(2981), - [anon_sym_CARET_EQ] = ACTIONS(2981), - [anon_sym_COLON_EQ] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [anon_sym_assert] = ACTIONS(2981), - [anon_sym_defer] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_DOLLARfor] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_POUND] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym_AT_LBRACK] = ACTIONS(2981), - [sym___double_quote] = ACTIONS(2981), - [sym___single_quote] = ACTIONS(2981), - [sym___c_double_quote] = ACTIONS(2981), - [sym___c_single_quote] = ACTIONS(2981), - [sym___r_double_quote] = ACTIONS(2981), - [sym___r_single_quote] = ACTIONS(2981), - }, - [895] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_EQ] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_STAR_EQ] = ACTIONS(2700), - [anon_sym_SLASH_EQ] = ACTIONS(2700), - [anon_sym_PERCENT_EQ] = ACTIONS(2700), - [anon_sym_LT_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2700), - [anon_sym_AMP_EQ] = ACTIONS(2700), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2700), - [anon_sym_PLUS_EQ] = ACTIONS(2700), - [anon_sym_DASH_EQ] = ACTIONS(2700), - [anon_sym_PIPE_EQ] = ACTIONS(2700), - [anon_sym_CARET_EQ] = ACTIONS(2700), - [anon_sym_COLON_EQ] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [896] = { - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_EQ] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_STAR_EQ] = ACTIONS(2704), - [anon_sym_SLASH_EQ] = ACTIONS(2704), - [anon_sym_PERCENT_EQ] = ACTIONS(2704), - [anon_sym_LT_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2704), - [anon_sym_AMP_EQ] = ACTIONS(2704), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2704), - [anon_sym_PLUS_EQ] = ACTIONS(2704), - [anon_sym_DASH_EQ] = ACTIONS(2704), - [anon_sym_PIPE_EQ] = ACTIONS(2704), - [anon_sym_CARET_EQ] = ACTIONS(2704), - [anon_sym_COLON_EQ] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [897] = { - [ts_builtin_sym_end] = ACTIONS(2983), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_EQ] = ACTIONS(2985), - [anon_sym___global] = ACTIONS(2985), - [anon_sym_type] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_pub] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_STAR_EQ] = ACTIONS(2985), - [anon_sym_SLASH_EQ] = ACTIONS(2985), - [anon_sym_PERCENT_EQ] = ACTIONS(2985), - [anon_sym_LT_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2985), - [anon_sym_AMP_EQ] = ACTIONS(2985), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2985), - [anon_sym_PLUS_EQ] = ACTIONS(2985), - [anon_sym_DASH_EQ] = ACTIONS(2985), - [anon_sym_PIPE_EQ] = ACTIONS(2985), - [anon_sym_CARET_EQ] = ACTIONS(2985), - [anon_sym_COLON_EQ] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [anon_sym_assert] = ACTIONS(2985), - [anon_sym_defer] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_DOLLARfor] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym_AT_LBRACK] = ACTIONS(2985), - [sym___double_quote] = ACTIONS(2985), - [sym___single_quote] = ACTIONS(2985), - [sym___c_double_quote] = ACTIONS(2985), - [sym___c_single_quote] = ACTIONS(2985), - [sym___r_double_quote] = ACTIONS(2985), - [sym___r_single_quote] = ACTIONS(2985), - }, - [898] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(2989), - [anon_sym___global] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_pub] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_interface] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_STAR_EQ] = ACTIONS(2989), - [anon_sym_SLASH_EQ] = ACTIONS(2989), - [anon_sym_PERCENT_EQ] = ACTIONS(2989), - [anon_sym_LT_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_GT_EQ] = ACTIONS(2989), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2989), - [anon_sym_AMP_EQ] = ACTIONS(2989), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2989), - [anon_sym_PLUS_EQ] = ACTIONS(2989), - [anon_sym_DASH_EQ] = ACTIONS(2989), - [anon_sym_PIPE_EQ] = ACTIONS(2989), - [anon_sym_CARET_EQ] = ACTIONS(2989), - [anon_sym_COLON_EQ] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym_AT_LBRACK] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), - }, - [899] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_EQ] = ACTIONS(2993), - [anon_sym___global] = ACTIONS(2993), - [anon_sym_type] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_pub] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_interface] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_STAR_EQ] = ACTIONS(2993), - [anon_sym_SLASH_EQ] = ACTIONS(2993), - [anon_sym_PERCENT_EQ] = ACTIONS(2993), - [anon_sym_LT_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_GT_EQ] = ACTIONS(2993), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2993), - [anon_sym_AMP_EQ] = ACTIONS(2993), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2993), - [anon_sym_PLUS_EQ] = ACTIONS(2993), - [anon_sym_DASH_EQ] = ACTIONS(2993), - [anon_sym_PIPE_EQ] = ACTIONS(2993), - [anon_sym_CARET_EQ] = ACTIONS(2993), - [anon_sym_COLON_EQ] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym_AT_LBRACK] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2993), - [sym___single_quote] = ACTIONS(2993), - [sym___c_double_quote] = ACTIONS(2993), - [sym___c_single_quote] = ACTIONS(2993), - [sym___r_double_quote] = ACTIONS(2993), - [sym___r_single_quote] = ACTIONS(2993), - }, - [900] = { - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_const] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_EQ] = ACTIONS(2997), - [anon_sym___global] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_union] = ACTIONS(2997), - [anon_sym_pub] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_STAR_EQ] = ACTIONS(2997), - [anon_sym_SLASH_EQ] = ACTIONS(2997), - [anon_sym_PERCENT_EQ] = ACTIONS(2997), - [anon_sym_LT_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_GT_EQ] = ACTIONS(2997), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2997), - [anon_sym_AMP_EQ] = ACTIONS(2997), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2997), - [anon_sym_PLUS_EQ] = ACTIONS(2997), - [anon_sym_DASH_EQ] = ACTIONS(2997), - [anon_sym_PIPE_EQ] = ACTIONS(2997), - [anon_sym_CARET_EQ] = ACTIONS(2997), - [anon_sym_COLON_EQ] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_goto] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_DOLLARfor] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_asm] = ACTIONS(2997), - [anon_sym_AT_LBRACK] = ACTIONS(2997), - [sym___double_quote] = ACTIONS(2997), - [sym___single_quote] = ACTIONS(2997), - [sym___c_double_quote] = ACTIONS(2997), - [sym___c_single_quote] = ACTIONS(2997), - [sym___r_double_quote] = ACTIONS(2997), - [sym___r_single_quote] = ACTIONS(2997), - }, - [901] = { - [ts_builtin_sym_end] = ACTIONS(2999), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_EQ] = ACTIONS(3001), - [anon_sym___global] = ACTIONS(3001), - [anon_sym_type] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_union] = ACTIONS(3001), - [anon_sym_pub] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_interface] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_STAR_EQ] = ACTIONS(3001), - [anon_sym_SLASH_EQ] = ACTIONS(3001), - [anon_sym_PERCENT_EQ] = ACTIONS(3001), - [anon_sym_LT_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_GT_EQ] = ACTIONS(3001), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3001), - [anon_sym_AMP_EQ] = ACTIONS(3001), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3001), - [anon_sym_PLUS_EQ] = ACTIONS(3001), - [anon_sym_DASH_EQ] = ACTIONS(3001), - [anon_sym_PIPE_EQ] = ACTIONS(3001), - [anon_sym_CARET_EQ] = ACTIONS(3001), - [anon_sym_COLON_EQ] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_AT] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [anon_sym_assert] = ACTIONS(3001), - [anon_sym_defer] = ACTIONS(3001), - [anon_sym_goto] = ACTIONS(3001), - [anon_sym_break] = ACTIONS(3001), - [anon_sym_continue] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3001), - [anon_sym_DOLLARfor] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_asm] = ACTIONS(3001), - [anon_sym_AT_LBRACK] = ACTIONS(3001), - [sym___double_quote] = ACTIONS(3001), - [sym___single_quote] = ACTIONS(3001), - [sym___c_double_quote] = ACTIONS(3001), - [sym___c_single_quote] = ACTIONS(3001), - [sym___r_double_quote] = ACTIONS(3001), - [sym___r_single_quote] = ACTIONS(3001), - }, - [902] = { - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(3005), - [anon_sym___global] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_interface] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_STAR_EQ] = ACTIONS(3005), - [anon_sym_SLASH_EQ] = ACTIONS(3005), - [anon_sym_PERCENT_EQ] = ACTIONS(3005), - [anon_sym_LT_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_GT_EQ] = ACTIONS(3005), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3005), - [anon_sym_AMP_EQ] = ACTIONS(3005), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3005), - [anon_sym_PLUS_EQ] = ACTIONS(3005), - [anon_sym_DASH_EQ] = ACTIONS(3005), - [anon_sym_PIPE_EQ] = ACTIONS(3005), - [anon_sym_CARET_EQ] = ACTIONS(3005), - [anon_sym_COLON_EQ] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - [anon_sym_AT_LBRACK] = ACTIONS(3005), - [sym___double_quote] = ACTIONS(3005), - [sym___single_quote] = ACTIONS(3005), - [sym___c_double_quote] = ACTIONS(3005), - [sym___c_single_quote] = ACTIONS(3005), - [sym___r_double_quote] = ACTIONS(3005), - [sym___r_single_quote] = ACTIONS(3005), - }, - [903] = { - [ts_builtin_sym_end] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_const] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(3009), - [anon_sym___global] = ACTIONS(3009), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_union] = ACTIONS(3009), - [anon_sym_pub] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_enum] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3009), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_GT_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_CARET] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_STAR_EQ] = ACTIONS(3009), - [anon_sym_SLASH_EQ] = ACTIONS(3009), - [anon_sym_PERCENT_EQ] = ACTIONS(3009), - [anon_sym_LT_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_GT_EQ] = ACTIONS(3009), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3009), - [anon_sym_AMP_EQ] = ACTIONS(3009), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3009), - [anon_sym_PLUS_EQ] = ACTIONS(3009), - [anon_sym_DASH_EQ] = ACTIONS(3009), - [anon_sym_PIPE_EQ] = ACTIONS(3009), - [anon_sym_CARET_EQ] = ACTIONS(3009), - [anon_sym_COLON_EQ] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [anon_sym_assert] = ACTIONS(3009), - [anon_sym_defer] = ACTIONS(3009), - [anon_sym_goto] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_DOLLARfor] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3009), - [anon_sym_POUND] = ACTIONS(3009), - [anon_sym_asm] = ACTIONS(3009), - [anon_sym_AT_LBRACK] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), - }, - [904] = { - [ts_builtin_sym_end] = ACTIONS(3011), - [sym_identifier] = ACTIONS(3013), - [anon_sym_LF] = ACTIONS(3013), - [anon_sym_CR] = ACTIONS(3013), - [anon_sym_CR_LF] = ACTIONS(3013), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_const] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_EQ] = ACTIONS(3013), - [anon_sym___global] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(3013), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_mut] = ACTIONS(3013), - [anon_sym_enum] = ACTIONS(3013), - [anon_sym_interface] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3013), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_LBRACK2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3013), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3013), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_select] = ACTIONS(3013), - [anon_sym_STAR_EQ] = ACTIONS(3013), - [anon_sym_SLASH_EQ] = ACTIONS(3013), - [anon_sym_PERCENT_EQ] = ACTIONS(3013), - [anon_sym_LT_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_GT_EQ] = ACTIONS(3013), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3013), - [anon_sym_AMP_EQ] = ACTIONS(3013), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3013), - [anon_sym_PLUS_EQ] = ACTIONS(3013), - [anon_sym_DASH_EQ] = ACTIONS(3013), - [anon_sym_PIPE_EQ] = ACTIONS(3013), - [anon_sym_CARET_EQ] = ACTIONS(3013), - [anon_sym_COLON_EQ] = ACTIONS(3013), - [anon_sym_lock] = ACTIONS(3013), - [anon_sym_rlock] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_sql] = ACTIONS(3013), - [sym_int_literal] = ACTIONS(3013), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_shared] = ACTIONS(3013), - [anon_sym_map_LBRACK] = ACTIONS(3013), - [anon_sym_chan] = ACTIONS(3013), - [anon_sym_thread] = ACTIONS(3013), - [anon_sym_atomic] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_defer] = ACTIONS(3013), - [anon_sym_goto] = ACTIONS(3013), - [anon_sym_break] = ACTIONS(3013), - [anon_sym_continue] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_DOLLARfor] = ACTIONS(3013), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_POUND] = ACTIONS(3013), - [anon_sym_asm] = ACTIONS(3013), - [anon_sym_AT_LBRACK] = ACTIONS(3013), - [sym___double_quote] = ACTIONS(3013), - [sym___single_quote] = ACTIONS(3013), - [sym___c_double_quote] = ACTIONS(3013), - [sym___c_single_quote] = ACTIONS(3013), - [sym___r_double_quote] = ACTIONS(3013), - [sym___r_single_quote] = ACTIONS(3013), - }, - [905] = { - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_const] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(3017), - [anon_sym___global] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_EQ] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_pub] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_enum] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_GT_GT_GT] = ACTIONS(3017), - [anon_sym_AMP_CARET] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_or] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_STAR_EQ] = ACTIONS(3017), - [anon_sym_SLASH_EQ] = ACTIONS(3017), - [anon_sym_PERCENT_EQ] = ACTIONS(3017), - [anon_sym_LT_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_GT_EQ] = ACTIONS(3017), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3017), - [anon_sym_AMP_EQ] = ACTIONS(3017), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3017), - [anon_sym_PLUS_EQ] = ACTIONS(3017), - [anon_sym_DASH_EQ] = ACTIONS(3017), - [anon_sym_PIPE_EQ] = ACTIONS(3017), - [anon_sym_CARET_EQ] = ACTIONS(3017), - [anon_sym_COLON_EQ] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_defer] = ACTIONS(3017), - [anon_sym_goto] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_DOLLARfor] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_POUND] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3017), - [anon_sym_AT_LBRACK] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3017), - [sym___single_quote] = ACTIONS(3017), - [sym___c_double_quote] = ACTIONS(3017), - [sym___c_single_quote] = ACTIONS(3017), - [sym___r_double_quote] = ACTIONS(3017), - [sym___r_single_quote] = ACTIONS(3017), - }, - [906] = { - [ts_builtin_sym_end] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LF] = ACTIONS(3021), - [anon_sym_CR] = ACTIONS(3021), - [anon_sym_CR_LF] = ACTIONS(3021), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_const] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(3021), - [anon_sym___global] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_EQ_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3021), - [anon_sym_GT_EQ] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_union] = ACTIONS(3021), - [anon_sym_pub] = ACTIONS(3021), - [anon_sym_mut] = ACTIONS(3021), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(3021), - [anon_sym_spawn] = ACTIONS(3021), - [anon_sym_json_DOTdecode] = ACTIONS(3021), - [anon_sym_LBRACK2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3021), - [anon_sym_GT_GT] = ACTIONS(3021), - [anon_sym_GT_GT_GT] = ACTIONS(3021), - [anon_sym_AMP_CARET] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_or] = ACTIONS(3021), - [sym_none] = ACTIONS(3021), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_nil] = ACTIONS(3021), - [anon_sym_QMARK_DOT] = ACTIONS(3021), - [anon_sym_POUND_LBRACK] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_DOLLARif] = ACTIONS(3021), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_BANGis] = ACTIONS(3021), - [anon_sym_in] = ACTIONS(3021), - [anon_sym_BANGin] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_select] = ACTIONS(3021), - [anon_sym_STAR_EQ] = ACTIONS(3021), - [anon_sym_SLASH_EQ] = ACTIONS(3021), - [anon_sym_PERCENT_EQ] = ACTIONS(3021), - [anon_sym_LT_LT_EQ] = ACTIONS(3021), - [anon_sym_GT_GT_EQ] = ACTIONS(3021), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3021), - [anon_sym_AMP_EQ] = ACTIONS(3021), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3021), - [anon_sym_PLUS_EQ] = ACTIONS(3021), - [anon_sym_DASH_EQ] = ACTIONS(3021), - [anon_sym_PIPE_EQ] = ACTIONS(3021), - [anon_sym_CARET_EQ] = ACTIONS(3021), - [anon_sym_COLON_EQ] = ACTIONS(3021), - [anon_sym_lock] = ACTIONS(3021), - [anon_sym_rlock] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_sql] = ACTIONS(3021), - [sym_int_literal] = ACTIONS(3021), - [sym_float_literal] = ACTIONS(3021), - [sym_rune_literal] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_shared] = ACTIONS(3021), - [anon_sym_map_LBRACK] = ACTIONS(3021), - [anon_sym_chan] = ACTIONS(3021), - [anon_sym_thread] = ACTIONS(3021), - [anon_sym_atomic] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_defer] = ACTIONS(3021), - [anon_sym_goto] = ACTIONS(3021), - [anon_sym_break] = ACTIONS(3021), - [anon_sym_continue] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_DOLLARfor] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_POUND] = ACTIONS(3021), - [anon_sym_asm] = ACTIONS(3021), - [anon_sym_AT_LBRACK] = ACTIONS(3021), - [sym___double_quote] = ACTIONS(3021), - [sym___single_quote] = ACTIONS(3021), - [sym___c_double_quote] = ACTIONS(3021), - [sym___c_single_quote] = ACTIONS(3021), - [sym___r_double_quote] = ACTIONS(3021), - [sym___r_single_quote] = ACTIONS(3021), - }, - [907] = { - [ts_builtin_sym_end] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_CR] = ACTIONS(3025), - [anon_sym_CR_LF] = ACTIONS(3025), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_const] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(3025), - [anon_sym___global] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3025), - [anon_sym_pub] = ACTIONS(3025), - [anon_sym_mut] = ACTIONS(3025), - [anon_sym_enum] = ACTIONS(3025), - [anon_sym_interface] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3025), - [anon_sym_spawn] = ACTIONS(3025), - [anon_sym_json_DOTdecode] = ACTIONS(3025), - [anon_sym_LBRACK2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_GT_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_CARET] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_or] = ACTIONS(3025), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_QMARK_DOT] = ACTIONS(3025), - [anon_sym_POUND_LBRACK] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_DOLLARif] = ACTIONS(3025), - [anon_sym_is] = ACTIONS(3025), - [anon_sym_BANGis] = ACTIONS(3025), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_select] = ACTIONS(3025), - [anon_sym_STAR_EQ] = ACTIONS(3025), - [anon_sym_SLASH_EQ] = ACTIONS(3025), - [anon_sym_PERCENT_EQ] = ACTIONS(3025), - [anon_sym_LT_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_GT_EQ] = ACTIONS(3025), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3025), - [anon_sym_AMP_EQ] = ACTIONS(3025), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3025), - [anon_sym_PLUS_EQ] = ACTIONS(3025), - [anon_sym_DASH_EQ] = ACTIONS(3025), - [anon_sym_PIPE_EQ] = ACTIONS(3025), - [anon_sym_CARET_EQ] = ACTIONS(3025), - [anon_sym_COLON_EQ] = ACTIONS(3025), - [anon_sym_lock] = ACTIONS(3025), - [anon_sym_rlock] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_sql] = ACTIONS(3025), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3025), - [sym_rune_literal] = ACTIONS(3025), - [anon_sym_AT] = ACTIONS(3025), - [anon_sym_shared] = ACTIONS(3025), - [anon_sym_map_LBRACK] = ACTIONS(3025), - [anon_sym_chan] = ACTIONS(3025), - [anon_sym_thread] = ACTIONS(3025), - [anon_sym_atomic] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_defer] = ACTIONS(3025), - [anon_sym_goto] = ACTIONS(3025), - [anon_sym_break] = ACTIONS(3025), - [anon_sym_continue] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_DOLLARfor] = ACTIONS(3025), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_POUND] = ACTIONS(3025), - [anon_sym_asm] = ACTIONS(3025), - [anon_sym_AT_LBRACK] = ACTIONS(3025), - [sym___double_quote] = ACTIONS(3025), - [sym___single_quote] = ACTIONS(3025), - [sym___c_double_quote] = ACTIONS(3025), - [sym___c_single_quote] = ACTIONS(3025), - [sym___r_double_quote] = ACTIONS(3025), - [sym___r_single_quote] = ACTIONS(3025), - }, - [908] = { - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_LT_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_GT_EQ] = ACTIONS(3029), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3029), - [anon_sym_AMP_EQ] = ACTIONS(3029), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3029), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_PIPE_EQ] = ACTIONS(3029), - [anon_sym_CARET_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [909] = { - [ts_builtin_sym_end] = ACTIONS(3031), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_CR] = ACTIONS(3033), - [anon_sym_CR_LF] = ACTIONS(3033), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(3033), - [anon_sym___global] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_EQ] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_union] = ACTIONS(3033), - [anon_sym_pub] = ACTIONS(3033), - [anon_sym_mut] = ACTIONS(3033), - [anon_sym_enum] = ACTIONS(3033), - [anon_sym_interface] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3033), - [anon_sym_spawn] = ACTIONS(3033), - [anon_sym_json_DOTdecode] = ACTIONS(3033), - [anon_sym_LBRACK2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3033), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_GT_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_CARET] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_or] = ACTIONS(3033), - [sym_none] = ACTIONS(3033), - [sym_true] = ACTIONS(3033), - [sym_false] = ACTIONS(3033), - [sym_nil] = ACTIONS(3033), - [anon_sym_QMARK_DOT] = ACTIONS(3033), - [anon_sym_POUND_LBRACK] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_DOLLARif] = ACTIONS(3033), - [anon_sym_is] = ACTIONS(3033), - [anon_sym_BANGis] = ACTIONS(3033), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_BANGin] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_STAR_EQ] = ACTIONS(3033), - [anon_sym_SLASH_EQ] = ACTIONS(3033), - [anon_sym_PERCENT_EQ] = ACTIONS(3033), - [anon_sym_LT_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_GT_EQ] = ACTIONS(3033), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3033), - [anon_sym_AMP_EQ] = ACTIONS(3033), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3033), - [anon_sym_PLUS_EQ] = ACTIONS(3033), - [anon_sym_DASH_EQ] = ACTIONS(3033), - [anon_sym_PIPE_EQ] = ACTIONS(3033), - [anon_sym_CARET_EQ] = ACTIONS(3033), - [anon_sym_COLON_EQ] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3033), - [anon_sym_rlock] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_sql] = ACTIONS(3033), - [sym_int_literal] = ACTIONS(3033), - [sym_float_literal] = ACTIONS(3033), - [sym_rune_literal] = ACTIONS(3033), - [anon_sym_AT] = ACTIONS(3033), - [anon_sym_shared] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3033), - [anon_sym_chan] = ACTIONS(3033), - [anon_sym_thread] = ACTIONS(3033), - [anon_sym_atomic] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_defer] = ACTIONS(3033), - [anon_sym_goto] = ACTIONS(3033), - [anon_sym_break] = ACTIONS(3033), - [anon_sym_continue] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_DOLLARfor] = ACTIONS(3033), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_POUND] = ACTIONS(3033), - [anon_sym_asm] = ACTIONS(3033), - [anon_sym_AT_LBRACK] = ACTIONS(3033), - [sym___double_quote] = ACTIONS(3033), - [sym___single_quote] = ACTIONS(3033), - [sym___c_double_quote] = ACTIONS(3033), - [sym___c_single_quote] = ACTIONS(3033), - [sym___r_double_quote] = ACTIONS(3033), - [sym___r_single_quote] = ACTIONS(3033), - }, - [910] = { - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LF] = ACTIONS(3037), - [anon_sym_CR] = ACTIONS(3037), - [anon_sym_CR_LF] = ACTIONS(3037), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(3037), - [anon_sym___global] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_EQ] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_pub] = ACTIONS(3037), - [anon_sym_mut] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_interface] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_go] = ACTIONS(3037), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(3037), - [anon_sym_LBRACK2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3037), - [anon_sym_GT_GT] = ACTIONS(3037), - [anon_sym_GT_GT_GT] = ACTIONS(3037), - [anon_sym_AMP_CARET] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_or] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_nil] = ACTIONS(3037), - [anon_sym_QMARK_DOT] = ACTIONS(3037), - [anon_sym_POUND_LBRACK] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_DOLLARif] = ACTIONS(3037), - [anon_sym_is] = ACTIONS(3037), - [anon_sym_BANGis] = ACTIONS(3037), - [anon_sym_in] = ACTIONS(3037), - [anon_sym_BANGin] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_select] = ACTIONS(3037), - [anon_sym_STAR_EQ] = ACTIONS(3037), - [anon_sym_SLASH_EQ] = ACTIONS(3037), - [anon_sym_PERCENT_EQ] = ACTIONS(3037), - [anon_sym_LT_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_GT_EQ] = ACTIONS(3037), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3037), - [anon_sym_AMP_EQ] = ACTIONS(3037), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3037), - [anon_sym_PLUS_EQ] = ACTIONS(3037), - [anon_sym_DASH_EQ] = ACTIONS(3037), - [anon_sym_PIPE_EQ] = ACTIONS(3037), - [anon_sym_CARET_EQ] = ACTIONS(3037), - [anon_sym_COLON_EQ] = ACTIONS(3037), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3037), - [sym_int_literal] = ACTIONS(3037), - [sym_float_literal] = ACTIONS(3037), - [sym_rune_literal] = ACTIONS(3037), - [anon_sym_AT] = ACTIONS(3037), - [anon_sym_shared] = ACTIONS(3037), - [anon_sym_map_LBRACK] = ACTIONS(3037), - [anon_sym_chan] = ACTIONS(3037), - [anon_sym_thread] = ACTIONS(3037), - [anon_sym_atomic] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_defer] = ACTIONS(3037), - [anon_sym_goto] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_DOLLARfor] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_POUND] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym_AT_LBRACK] = ACTIONS(3037), - [sym___double_quote] = ACTIONS(3037), - [sym___single_quote] = ACTIONS(3037), - [sym___c_double_quote] = ACTIONS(3037), - [sym___c_single_quote] = ACTIONS(3037), - [sym___r_double_quote] = ACTIONS(3037), - [sym___r_single_quote] = ACTIONS(3037), - }, - [911] = { - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_EQ] = ACTIONS(3041), - [anon_sym___global] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_LT_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_AMP_EQ] = ACTIONS(3041), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_PIPE_EQ] = ACTIONS(3041), - [anon_sym_CARET_EQ] = ACTIONS(3041), - [anon_sym_COLON_EQ] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [anon_sym_assert] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_DOLLARfor] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym_AT_LBRACK] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), - }, - [912] = { - [ts_builtin_sym_end] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym___global] = ACTIONS(3045), - [anon_sym_type] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_pub] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_interface] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_STAR_EQ] = ACTIONS(3045), - [anon_sym_SLASH_EQ] = ACTIONS(3045), - [anon_sym_PERCENT_EQ] = ACTIONS(3045), - [anon_sym_LT_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_GT_EQ] = ACTIONS(3045), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3045), - [anon_sym_AMP_EQ] = ACTIONS(3045), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3045), - [anon_sym_PLUS_EQ] = ACTIONS(3045), - [anon_sym_DASH_EQ] = ACTIONS(3045), - [anon_sym_PIPE_EQ] = ACTIONS(3045), - [anon_sym_CARET_EQ] = ACTIONS(3045), - [anon_sym_COLON_EQ] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [anon_sym_assert] = ACTIONS(3045), - [anon_sym_defer] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_DOLLARfor] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym_AT_LBRACK] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), - }, - [913] = { - [ts_builtin_sym_end] = ACTIONS(3047), - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_EQ] = ACTIONS(3049), - [anon_sym___global] = ACTIONS(3049), - [anon_sym_type] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_pub] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3049), - [anon_sym_AMP_CARET] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_STAR_EQ] = ACTIONS(3049), - [anon_sym_SLASH_EQ] = ACTIONS(3049), - [anon_sym_PERCENT_EQ] = ACTIONS(3049), - [anon_sym_LT_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3049), - [anon_sym_AMP_EQ] = ACTIONS(3049), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3049), - [anon_sym_PLUS_EQ] = ACTIONS(3049), - [anon_sym_DASH_EQ] = ACTIONS(3049), - [anon_sym_PIPE_EQ] = ACTIONS(3049), - [anon_sym_CARET_EQ] = ACTIONS(3049), - [anon_sym_COLON_EQ] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [anon_sym_AT] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [anon_sym_assert] = ACTIONS(3049), - [anon_sym_defer] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_DOLLARfor] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_POUND] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym_AT_LBRACK] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3049), - [sym___single_quote] = ACTIONS(3049), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3049), - [sym___r_double_quote] = ACTIONS(3049), - [sym___r_single_quote] = ACTIONS(3049), - }, - [914] = { - [ts_builtin_sym_end] = ACTIONS(3051), - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_EQ] = ACTIONS(3053), - [anon_sym___global] = ACTIONS(3053), - [anon_sym_type] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_EQ_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_pub] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_interface] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_GT_GT_GT] = ACTIONS(3053), - [anon_sym_AMP_CARET] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3053), - [anon_sym_or] = ACTIONS(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_STAR_EQ] = ACTIONS(3053), - [anon_sym_SLASH_EQ] = ACTIONS(3053), - [anon_sym_PERCENT_EQ] = ACTIONS(3053), - [anon_sym_LT_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_GT_EQ] = ACTIONS(3053), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3053), - [anon_sym_AMP_EQ] = ACTIONS(3053), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3053), - [anon_sym_PLUS_EQ] = ACTIONS(3053), - [anon_sym_DASH_EQ] = ACTIONS(3053), - [anon_sym_PIPE_EQ] = ACTIONS(3053), - [anon_sym_CARET_EQ] = ACTIONS(3053), - [anon_sym_COLON_EQ] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [anon_sym_assert] = ACTIONS(3053), - [anon_sym_defer] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_DOLLARfor] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym_AT_LBRACK] = ACTIONS(3053), - [sym___double_quote] = ACTIONS(3053), - [sym___single_quote] = ACTIONS(3053), - [sym___c_double_quote] = ACTIONS(3053), - [sym___c_single_quote] = ACTIONS(3053), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3053), - }, - [915] = { - [ts_builtin_sym_end] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(3057), - [anon_sym___global] = ACTIONS(3057), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_pub] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_interface] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_STAR_EQ] = ACTIONS(3057), - [anon_sym_SLASH_EQ] = ACTIONS(3057), - [anon_sym_PERCENT_EQ] = ACTIONS(3057), - [anon_sym_LT_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_GT_EQ] = ACTIONS(3057), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3057), - [anon_sym_AMP_EQ] = ACTIONS(3057), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(3057), - [anon_sym_DASH_EQ] = ACTIONS(3057), - [anon_sym_PIPE_EQ] = ACTIONS(3057), - [anon_sym_CARET_EQ] = ACTIONS(3057), - [anon_sym_COLON_EQ] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [anon_sym_assert] = ACTIONS(3057), - [anon_sym_defer] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_DOLLARfor] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_POUND] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym_AT_LBRACK] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), - }, - [916] = { - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_EQ] = ACTIONS(3061), - [anon_sym___global] = ACTIONS(3061), - [anon_sym_type] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_pub] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_interface] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_STAR_EQ] = ACTIONS(3061), - [anon_sym_SLASH_EQ] = ACTIONS(3061), - [anon_sym_PERCENT_EQ] = ACTIONS(3061), - [anon_sym_LT_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_GT_EQ] = ACTIONS(3061), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3061), - [anon_sym_AMP_EQ] = ACTIONS(3061), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3061), - [anon_sym_PLUS_EQ] = ACTIONS(3061), - [anon_sym_DASH_EQ] = ACTIONS(3061), - [anon_sym_PIPE_EQ] = ACTIONS(3061), - [anon_sym_CARET_EQ] = ACTIONS(3061), - [anon_sym_COLON_EQ] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [anon_sym_AT] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [anon_sym_assert] = ACTIONS(3061), - [anon_sym_defer] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_DOLLARfor] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_POUND] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym_AT_LBRACK] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), - }, - [917] = { - [ts_builtin_sym_end] = ACTIONS(3063), - [sym_identifier] = ACTIONS(3065), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_CR] = ACTIONS(3065), - [anon_sym_CR_LF] = ACTIONS(3065), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3065), - [anon_sym_EQ] = ACTIONS(3065), - [anon_sym___global] = ACTIONS(3065), - [anon_sym_type] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_pub] = ACTIONS(3065), - [anon_sym_mut] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_interface] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3065), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(3065), - [anon_sym_LBRACK2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3065), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_GT_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_CARET] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_nil] = ACTIONS(3065), - [anon_sym_QMARK_DOT] = ACTIONS(3065), - [anon_sym_POUND_LBRACK] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_DOLLARif] = ACTIONS(3065), - [anon_sym_is] = ACTIONS(3065), - [anon_sym_BANGis] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_BANGin] = ACTIONS(3065), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_STAR_EQ] = ACTIONS(3065), - [anon_sym_SLASH_EQ] = ACTIONS(3065), - [anon_sym_PERCENT_EQ] = ACTIONS(3065), - [anon_sym_LT_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_GT_EQ] = ACTIONS(3065), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3065), - [anon_sym_AMP_EQ] = ACTIONS(3065), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3065), - [anon_sym_PLUS_EQ] = ACTIONS(3065), - [anon_sym_DASH_EQ] = ACTIONS(3065), - [anon_sym_PIPE_EQ] = ACTIONS(3065), - [anon_sym_CARET_EQ] = ACTIONS(3065), - [anon_sym_COLON_EQ] = ACTIONS(3065), - [anon_sym_lock] = ACTIONS(3065), - [anon_sym_rlock] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_sql] = ACTIONS(3065), - [sym_int_literal] = ACTIONS(3065), - [sym_float_literal] = ACTIONS(3065), - [sym_rune_literal] = ACTIONS(3065), - [anon_sym_AT] = ACTIONS(3065), - [anon_sym_shared] = ACTIONS(3065), - [anon_sym_map_LBRACK] = ACTIONS(3065), - [anon_sym_chan] = ACTIONS(3065), - [anon_sym_thread] = ACTIONS(3065), - [anon_sym_atomic] = ACTIONS(3065), - [anon_sym_assert] = ACTIONS(3065), - [anon_sym_defer] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_DOLLARfor] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_POUND] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym_AT_LBRACK] = ACTIONS(3065), - [sym___double_quote] = ACTIONS(3065), - [sym___single_quote] = ACTIONS(3065), - [sym___c_double_quote] = ACTIONS(3065), - [sym___c_single_quote] = ACTIONS(3065), - [sym___r_double_quote] = ACTIONS(3065), - [sym___r_single_quote] = ACTIONS(3065), - }, - [918] = { - [ts_builtin_sym_end] = ACTIONS(3067), - [sym_identifier] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3069), - [anon_sym_CR] = ACTIONS(3069), - [anon_sym_CR_LF] = ACTIONS(3069), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_const] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(3069), - [anon_sym___global] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_union] = ACTIONS(3069), - [anon_sym_pub] = ACTIONS(3069), - [anon_sym_mut] = ACTIONS(3069), - [anon_sym_enum] = ACTIONS(3069), - [anon_sym_interface] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3069), - [anon_sym_json_DOTdecode] = ACTIONS(3069), - [anon_sym_LBRACK2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_GT_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_CARET] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [sym_none] = ACTIONS(3069), - [sym_true] = ACTIONS(3069), - [sym_false] = ACTIONS(3069), - [sym_nil] = ACTIONS(3069), - [anon_sym_QMARK_DOT] = ACTIONS(3069), - [anon_sym_POUND_LBRACK] = ACTIONS(3069), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_DOLLARif] = ACTIONS(3069), - [anon_sym_is] = ACTIONS(3069), - [anon_sym_BANGis] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_BANGin] = ACTIONS(3069), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_select] = ACTIONS(3069), - [anon_sym_STAR_EQ] = ACTIONS(3069), - [anon_sym_SLASH_EQ] = ACTIONS(3069), - [anon_sym_PERCENT_EQ] = ACTIONS(3069), - [anon_sym_LT_LT_EQ] = ACTIONS(3069), - [anon_sym_GT_GT_EQ] = ACTIONS(3069), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3069), - [anon_sym_AMP_EQ] = ACTIONS(3069), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3069), - [anon_sym_PLUS_EQ] = ACTIONS(3069), - [anon_sym_DASH_EQ] = ACTIONS(3069), - [anon_sym_PIPE_EQ] = ACTIONS(3069), - [anon_sym_CARET_EQ] = ACTIONS(3069), - [anon_sym_COLON_EQ] = ACTIONS(3069), - [anon_sym_lock] = ACTIONS(3069), - [anon_sym_rlock] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_sql] = ACTIONS(3069), - [sym_int_literal] = ACTIONS(3069), - [sym_float_literal] = ACTIONS(3069), - [sym_rune_literal] = ACTIONS(3069), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_shared] = ACTIONS(3069), - [anon_sym_map_LBRACK] = ACTIONS(3069), - [anon_sym_chan] = ACTIONS(3069), - [anon_sym_thread] = ACTIONS(3069), - [anon_sym_atomic] = ACTIONS(3069), - [anon_sym_assert] = ACTIONS(3069), - [anon_sym_defer] = ACTIONS(3069), - [anon_sym_goto] = ACTIONS(3069), - [anon_sym_break] = ACTIONS(3069), - [anon_sym_continue] = ACTIONS(3069), - [anon_sym_return] = ACTIONS(3069), - [anon_sym_DOLLARfor] = ACTIONS(3069), - [anon_sym_for] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_asm] = ACTIONS(3069), - [anon_sym_AT_LBRACK] = ACTIONS(3069), - [sym___double_quote] = ACTIONS(3069), - [sym___single_quote] = ACTIONS(3069), - [sym___c_double_quote] = ACTIONS(3069), - [sym___c_single_quote] = ACTIONS(3069), - [sym___r_double_quote] = ACTIONS(3069), - [sym___r_single_quote] = ACTIONS(3069), - }, - [919] = { - [ts_builtin_sym_end] = ACTIONS(3071), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3073), - [anon_sym_CR] = ACTIONS(3073), - [anon_sym_CR_LF] = ACTIONS(3073), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(3073), - [anon_sym___global] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_pub] = ACTIONS(3073), - [anon_sym_mut] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_interface] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3073), - [anon_sym_json_DOTdecode] = ACTIONS(3073), - [anon_sym_LBRACK2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3073), - [anon_sym_GT_GT_GT] = ACTIONS(3073), - [anon_sym_AMP_CARET] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [sym_none] = ACTIONS(3073), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [sym_nil] = ACTIONS(3073), - [anon_sym_QMARK_DOT] = ACTIONS(3073), - [anon_sym_POUND_LBRACK] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_DOLLARif] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_select] = ACTIONS(3073), - [anon_sym_STAR_EQ] = ACTIONS(3073), - [anon_sym_SLASH_EQ] = ACTIONS(3073), - [anon_sym_PERCENT_EQ] = ACTIONS(3073), - [anon_sym_LT_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_GT_EQ] = ACTIONS(3073), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3073), - [anon_sym_AMP_EQ] = ACTIONS(3073), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3073), - [anon_sym_PLUS_EQ] = ACTIONS(3073), - [anon_sym_DASH_EQ] = ACTIONS(3073), - [anon_sym_PIPE_EQ] = ACTIONS(3073), - [anon_sym_CARET_EQ] = ACTIONS(3073), - [anon_sym_COLON_EQ] = ACTIONS(3073), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(3073), - [anon_sym_sql] = ACTIONS(3073), - [sym_int_literal] = ACTIONS(3073), - [sym_float_literal] = ACTIONS(3073), - [sym_rune_literal] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_shared] = ACTIONS(3073), - [anon_sym_map_LBRACK] = ACTIONS(3073), - [anon_sym_chan] = ACTIONS(3073), - [anon_sym_thread] = ACTIONS(3073), - [anon_sym_atomic] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_defer] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_DOLLARfor] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_POUND] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym_AT_LBRACK] = ACTIONS(3073), - [sym___double_quote] = ACTIONS(3073), - [sym___single_quote] = ACTIONS(3073), - [sym___c_double_quote] = ACTIONS(3073), - [sym___c_single_quote] = ACTIONS(3073), - [sym___r_double_quote] = ACTIONS(3073), - [sym___r_single_quote] = ACTIONS(3073), - }, - [920] = { - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_EQ] = ACTIONS(3077), - [anon_sym___global] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_pub] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_interface] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_STAR_EQ] = ACTIONS(3077), - [anon_sym_SLASH_EQ] = ACTIONS(3077), - [anon_sym_PERCENT_EQ] = ACTIONS(3077), - [anon_sym_LT_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_GT_EQ] = ACTIONS(3077), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3077), - [anon_sym_AMP_EQ] = ACTIONS(3077), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3077), - [anon_sym_PLUS_EQ] = ACTIONS(3077), - [anon_sym_DASH_EQ] = ACTIONS(3077), - [anon_sym_PIPE_EQ] = ACTIONS(3077), - [anon_sym_CARET_EQ] = ACTIONS(3077), - [anon_sym_COLON_EQ] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [anon_sym_AT] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [anon_sym_assert] = ACTIONS(3077), - [anon_sym_defer] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_DOLLARfor] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym_AT_LBRACK] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), - }, - [921] = { - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(3081), - [anon_sym___global] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_union] = ACTIONS(3081), - [anon_sym_pub] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_STAR_EQ] = ACTIONS(3081), - [anon_sym_SLASH_EQ] = ACTIONS(3081), - [anon_sym_PERCENT_EQ] = ACTIONS(3081), - [anon_sym_LT_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_GT_EQ] = ACTIONS(3081), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3081), - [anon_sym_AMP_EQ] = ACTIONS(3081), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3081), - [anon_sym_PLUS_EQ] = ACTIONS(3081), - [anon_sym_DASH_EQ] = ACTIONS(3081), - [anon_sym_PIPE_EQ] = ACTIONS(3081), - [anon_sym_CARET_EQ] = ACTIONS(3081), - [anon_sym_COLON_EQ] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [anon_sym_assert] = ACTIONS(3081), - [anon_sym_defer] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_DOLLARfor] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_asm] = ACTIONS(3081), - [anon_sym_AT_LBRACK] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), - }, - [922] = { - [ts_builtin_sym_end] = ACTIONS(3083), - [sym_identifier] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3085), - [anon_sym_CR] = ACTIONS(3085), - [anon_sym_CR_LF] = ACTIONS(3085), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_as] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_const] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(3085), - [anon_sym___global] = ACTIONS(3085), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_fn] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_pub] = ACTIONS(3085), - [anon_sym_mut] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_interface] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_go] = ACTIONS(3085), - [anon_sym_spawn] = ACTIONS(3085), - [anon_sym_json_DOTdecode] = ACTIONS(3085), - [anon_sym_LBRACK2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_GT_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_CARET] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [sym_none] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_nil] = ACTIONS(3085), - [anon_sym_QMARK_DOT] = ACTIONS(3085), - [anon_sym_POUND_LBRACK] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_DOLLARif] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_BANGis] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_BANGin] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(3085), - [anon_sym_select] = ACTIONS(3085), - [anon_sym_STAR_EQ] = ACTIONS(3085), - [anon_sym_SLASH_EQ] = ACTIONS(3085), - [anon_sym_PERCENT_EQ] = ACTIONS(3085), - [anon_sym_LT_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_GT_EQ] = ACTIONS(3085), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3085), - [anon_sym_AMP_EQ] = ACTIONS(3085), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3085), - [anon_sym_PLUS_EQ] = ACTIONS(3085), - [anon_sym_DASH_EQ] = ACTIONS(3085), - [anon_sym_PIPE_EQ] = ACTIONS(3085), - [anon_sym_CARET_EQ] = ACTIONS(3085), - [anon_sym_COLON_EQ] = ACTIONS(3085), - [anon_sym_lock] = ACTIONS(3085), - [anon_sym_rlock] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(3085), - [anon_sym_sql] = ACTIONS(3085), - [sym_int_literal] = ACTIONS(3085), - [sym_float_literal] = ACTIONS(3085), - [sym_rune_literal] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_shared] = ACTIONS(3085), - [anon_sym_map_LBRACK] = ACTIONS(3085), - [anon_sym_chan] = ACTIONS(3085), - [anon_sym_thread] = ACTIONS(3085), - [anon_sym_atomic] = ACTIONS(3085), - [anon_sym_assert] = ACTIONS(3085), - [anon_sym_defer] = ACTIONS(3085), - [anon_sym_goto] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_DOLLARfor] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_asm] = ACTIONS(3085), - [anon_sym_AT_LBRACK] = ACTIONS(3085), - [sym___double_quote] = ACTIONS(3085), - [sym___single_quote] = ACTIONS(3085), - [sym___c_double_quote] = ACTIONS(3085), - [sym___c_single_quote] = ACTIONS(3085), - [sym___r_double_quote] = ACTIONS(3085), - [sym___r_single_quote] = ACTIONS(3085), - }, - [923] = { - [ts_builtin_sym_end] = ACTIONS(3087), - [sym_identifier] = ACTIONS(3089), - [anon_sym_LF] = ACTIONS(3089), - [anon_sym_CR] = ACTIONS(3089), - [anon_sym_CR_LF] = ACTIONS(3089), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_as] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(3089), - [anon_sym___global] = ACTIONS(3089), - [anon_sym_type] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_fn] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [anon_sym_pub] = ACTIONS(3089), - [anon_sym_mut] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_interface] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_go] = ACTIONS(3089), - [anon_sym_spawn] = ACTIONS(3089), - [anon_sym_json_DOTdecode] = ACTIONS(3089), - [anon_sym_LBRACK2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT_DASH] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_GT_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_CARET] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [sym_none] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [sym_nil] = ACTIONS(3089), - [anon_sym_QMARK_DOT] = ACTIONS(3089), - [anon_sym_POUND_LBRACK] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_DOLLARif] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_BANGin] = ACTIONS(3089), - [anon_sym_match] = ACTIONS(3089), - [anon_sym_select] = ACTIONS(3089), - [anon_sym_STAR_EQ] = ACTIONS(3089), - [anon_sym_SLASH_EQ] = ACTIONS(3089), - [anon_sym_PERCENT_EQ] = ACTIONS(3089), - [anon_sym_LT_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_GT_EQ] = ACTIONS(3089), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3089), - [anon_sym_AMP_EQ] = ACTIONS(3089), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3089), - [anon_sym_PLUS_EQ] = ACTIONS(3089), - [anon_sym_DASH_EQ] = ACTIONS(3089), - [anon_sym_PIPE_EQ] = ACTIONS(3089), - [anon_sym_CARET_EQ] = ACTIONS(3089), - [anon_sym_COLON_EQ] = ACTIONS(3089), - [anon_sym_lock] = ACTIONS(3089), - [anon_sym_rlock] = ACTIONS(3089), - [anon_sym_unsafe] = ACTIONS(3089), - [anon_sym_sql] = ACTIONS(3089), - [sym_int_literal] = ACTIONS(3089), - [sym_float_literal] = ACTIONS(3089), - [sym_rune_literal] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_shared] = ACTIONS(3089), - [anon_sym_map_LBRACK] = ACTIONS(3089), - [anon_sym_chan] = ACTIONS(3089), - [anon_sym_thread] = ACTIONS(3089), - [anon_sym_atomic] = ACTIONS(3089), - [anon_sym_assert] = ACTIONS(3089), - [anon_sym_defer] = ACTIONS(3089), - [anon_sym_goto] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_DOLLARfor] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3089), - [anon_sym_POUND] = ACTIONS(3089), - [anon_sym_asm] = ACTIONS(3089), - [anon_sym_AT_LBRACK] = ACTIONS(3089), - [sym___double_quote] = ACTIONS(3089), - [sym___single_quote] = ACTIONS(3089), - [sym___c_double_quote] = ACTIONS(3089), - [sym___c_single_quote] = ACTIONS(3089), - [sym___r_double_quote] = ACTIONS(3089), - [sym___r_single_quote] = ACTIONS(3089), - }, - [924] = { - [ts_builtin_sym_end] = ACTIONS(3091), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3093), - [anon_sym___global] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_EQ_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_EQ] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [anon_sym_pub] = ACTIONS(3093), - [anon_sym_mut] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_interface] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3093), - [anon_sym_spawn] = ACTIONS(3093), - [anon_sym_json_DOTdecode] = ACTIONS(3093), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3093), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_GT_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_CARET] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [sym_none] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_nil] = ACTIONS(3093), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_DOLLARif] = ACTIONS(3093), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_select] = ACTIONS(3093), - [anon_sym_STAR_EQ] = ACTIONS(3093), - [anon_sym_SLASH_EQ] = ACTIONS(3093), - [anon_sym_PERCENT_EQ] = ACTIONS(3093), - [anon_sym_LT_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_GT_EQ] = ACTIONS(3093), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3093), - [anon_sym_AMP_EQ] = ACTIONS(3093), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3093), - [anon_sym_PLUS_EQ] = ACTIONS(3093), - [anon_sym_DASH_EQ] = ACTIONS(3093), - [anon_sym_PIPE_EQ] = ACTIONS(3093), - [anon_sym_CARET_EQ] = ACTIONS(3093), - [anon_sym_COLON_EQ] = ACTIONS(3093), - [anon_sym_lock] = ACTIONS(3093), - [anon_sym_rlock] = ACTIONS(3093), - [anon_sym_unsafe] = ACTIONS(3093), - [anon_sym_sql] = ACTIONS(3093), - [sym_int_literal] = ACTIONS(3093), - [sym_float_literal] = ACTIONS(3093), - [sym_rune_literal] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_shared] = ACTIONS(3093), - [anon_sym_map_LBRACK] = ACTIONS(3093), - [anon_sym_chan] = ACTIONS(3093), - [anon_sym_thread] = ACTIONS(3093), - [anon_sym_atomic] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_defer] = ACTIONS(3093), - [anon_sym_goto] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_DOLLARfor] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_POUND] = ACTIONS(3093), - [anon_sym_asm] = ACTIONS(3093), - [anon_sym_AT_LBRACK] = ACTIONS(3093), - [sym___double_quote] = ACTIONS(3093), - [sym___single_quote] = ACTIONS(3093), - [sym___c_double_quote] = ACTIONS(3093), - [sym___c_single_quote] = ACTIONS(3093), - [sym___r_double_quote] = ACTIONS(3093), - [sym___r_single_quote] = ACTIONS(3093), - }, - [925] = { - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3097), - [anon_sym_CR] = ACTIONS(3097), - [anon_sym_CR_LF] = ACTIONS(3097), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_EQ] = ACTIONS(3097), - [anon_sym___global] = ACTIONS(3097), - [anon_sym_type] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_EQ] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_pub] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3097), - [anon_sym_GT_GT_GT] = ACTIONS(3097), - [anon_sym_AMP_CARET] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_QMARK_DOT] = ACTIONS(3097), - [anon_sym_POUND_LBRACK] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_BANGis] = ACTIONS(3097), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_BANGin] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_STAR_EQ] = ACTIONS(3097), - [anon_sym_SLASH_EQ] = ACTIONS(3097), - [anon_sym_PERCENT_EQ] = ACTIONS(3097), - [anon_sym_LT_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_GT_EQ] = ACTIONS(3097), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3097), - [anon_sym_AMP_EQ] = ACTIONS(3097), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3097), - [anon_sym_PLUS_EQ] = ACTIONS(3097), - [anon_sym_DASH_EQ] = ACTIONS(3097), - [anon_sym_PIPE_EQ] = ACTIONS(3097), - [anon_sym_CARET_EQ] = ACTIONS(3097), - [anon_sym_COLON_EQ] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [anon_sym_assert] = ACTIONS(3097), - [anon_sym_defer] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_DOLLARfor] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym_AT_LBRACK] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), - }, - [926] = { - [ts_builtin_sym_end] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_pub] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_interface] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_STAR_EQ] = ACTIONS(3101), - [anon_sym_SLASH_EQ] = ACTIONS(3101), - [anon_sym_PERCENT_EQ] = ACTIONS(3101), - [anon_sym_LT_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_GT_EQ] = ACTIONS(3101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3101), - [anon_sym_AMP_EQ] = ACTIONS(3101), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3101), - [anon_sym_PLUS_EQ] = ACTIONS(3101), - [anon_sym_DASH_EQ] = ACTIONS(3101), - [anon_sym_PIPE_EQ] = ACTIONS(3101), - [anon_sym_CARET_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_defer] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_DOLLARfor] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym_AT_LBRACK] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), - }, - [927] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym___global] = ACTIONS(3105), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_EQ] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_pub] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_interface] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3105), - [anon_sym_AMP_CARET] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3105), - [anon_sym_POUND_LBRACK] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3105), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_STAR_EQ] = ACTIONS(3105), - [anon_sym_SLASH_EQ] = ACTIONS(3105), - [anon_sym_PERCENT_EQ] = ACTIONS(3105), - [anon_sym_LT_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_GT_EQ] = ACTIONS(3105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3105), - [anon_sym_AMP_EQ] = ACTIONS(3105), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3105), - [anon_sym_PLUS_EQ] = ACTIONS(3105), - [anon_sym_DASH_EQ] = ACTIONS(3105), - [anon_sym_PIPE_EQ] = ACTIONS(3105), - [anon_sym_CARET_EQ] = ACTIONS(3105), - [anon_sym_COLON_EQ] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3105), - [sym_rune_literal] = ACTIONS(3105), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [anon_sym_assert] = ACTIONS(3105), - [anon_sym_defer] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_DOLLARfor] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym_AT_LBRACK] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3105), - [sym___single_quote] = ACTIONS(3105), - [sym___c_double_quote] = ACTIONS(3105), - [sym___c_single_quote] = ACTIONS(3105), - [sym___r_double_quote] = ACTIONS(3105), - [sym___r_single_quote] = ACTIONS(3105), - }, - [928] = { - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_STAR_EQ] = ACTIONS(3109), - [anon_sym_SLASH_EQ] = ACTIONS(3109), - [anon_sym_PERCENT_EQ] = ACTIONS(3109), - [anon_sym_LT_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3109), - [anon_sym_AMP_EQ] = ACTIONS(3109), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3109), - [anon_sym_PLUS_EQ] = ACTIONS(3109), - [anon_sym_DASH_EQ] = ACTIONS(3109), - [anon_sym_PIPE_EQ] = ACTIONS(3109), - [anon_sym_CARET_EQ] = ACTIONS(3109), - [anon_sym_COLON_EQ] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), - }, - [929] = { - [ts_builtin_sym_end] = ACTIONS(3111), - [sym_identifier] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_CR] = ACTIONS(3113), - [anon_sym_CR_LF] = ACTIONS(3113), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_as] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_EQ] = ACTIONS(3113), - [anon_sym___global] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_LT_EQ] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_union] = ACTIONS(3113), - [anon_sym_pub] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3113), - [anon_sym_interface] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3113), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_GT_GT_GT] = ACTIONS(3113), - [anon_sym_AMP_CARET] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_QMARK_DOT] = ACTIONS(3113), - [anon_sym_POUND_LBRACK] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_is] = ACTIONS(3113), - [anon_sym_BANGis] = ACTIONS(3113), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_BANGin] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_STAR_EQ] = ACTIONS(3113), - [anon_sym_SLASH_EQ] = ACTIONS(3113), - [anon_sym_PERCENT_EQ] = ACTIONS(3113), - [anon_sym_LT_LT_EQ] = ACTIONS(3113), - [anon_sym_GT_GT_EQ] = ACTIONS(3113), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3113), - [anon_sym_AMP_EQ] = ACTIONS(3113), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3113), - [anon_sym_PLUS_EQ] = ACTIONS(3113), - [anon_sym_DASH_EQ] = ACTIONS(3113), - [anon_sym_PIPE_EQ] = ACTIONS(3113), - [anon_sym_CARET_EQ] = ACTIONS(3113), - [anon_sym_COLON_EQ] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3113), - [sym_rune_literal] = ACTIONS(3113), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3113), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [anon_sym_assert] = ACTIONS(3113), - [anon_sym_defer] = ACTIONS(3113), - [anon_sym_goto] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_DOLLARfor] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_asm] = ACTIONS(3113), - [anon_sym_AT_LBRACK] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3113), - [sym___single_quote] = ACTIONS(3113), - [sym___c_double_quote] = ACTIONS(3113), - [sym___c_single_quote] = ACTIONS(3113), - [sym___r_double_quote] = ACTIONS(3113), - [sym___r_single_quote] = ACTIONS(3113), - }, - [930] = { - [ts_builtin_sym_end] = ACTIONS(3115), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LF] = ACTIONS(3117), - [anon_sym_CR] = ACTIONS(3117), - [anon_sym_CR_LF] = ACTIONS(3117), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_as] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_EQ] = ACTIONS(3117), - [anon_sym___global] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_EQ_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3117), - [anon_sym_pub] = ACTIONS(3117), - [anon_sym_mut] = ACTIONS(3117), - [anon_sym_enum] = ACTIONS(3117), - [anon_sym_interface] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_go] = ACTIONS(3117), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3117), - [anon_sym_LBRACK2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_GT_GT_GT] = ACTIONS(3117), - [anon_sym_AMP_CARET] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [sym_none] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_nil] = ACTIONS(3117), - [anon_sym_QMARK_DOT] = ACTIONS(3117), - [anon_sym_POUND_LBRACK] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_DOLLARif] = ACTIONS(3117), - [anon_sym_is] = ACTIONS(3117), - [anon_sym_BANGis] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_BANGin] = ACTIONS(3117), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_select] = ACTIONS(3117), - [anon_sym_STAR_EQ] = ACTIONS(3117), - [anon_sym_SLASH_EQ] = ACTIONS(3117), - [anon_sym_PERCENT_EQ] = ACTIONS(3117), - [anon_sym_LT_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_GT_EQ] = ACTIONS(3117), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3117), - [anon_sym_AMP_EQ] = ACTIONS(3117), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3117), - [anon_sym_PLUS_EQ] = ACTIONS(3117), - [anon_sym_DASH_EQ] = ACTIONS(3117), - [anon_sym_PIPE_EQ] = ACTIONS(3117), - [anon_sym_CARET_EQ] = ACTIONS(3117), - [anon_sym_COLON_EQ] = ACTIONS(3117), - [anon_sym_lock] = ACTIONS(3117), - [anon_sym_rlock] = ACTIONS(3117), - [anon_sym_unsafe] = ACTIONS(3117), - [anon_sym_sql] = ACTIONS(3117), - [sym_int_literal] = ACTIONS(3117), - [sym_float_literal] = ACTIONS(3117), - [sym_rune_literal] = ACTIONS(3117), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_shared] = ACTIONS(3117), - [anon_sym_map_LBRACK] = ACTIONS(3117), - [anon_sym_chan] = ACTIONS(3117), - [anon_sym_thread] = ACTIONS(3117), - [anon_sym_atomic] = ACTIONS(3117), - [anon_sym_assert] = ACTIONS(3117), - [anon_sym_defer] = ACTIONS(3117), - [anon_sym_goto] = ACTIONS(3117), - [anon_sym_break] = ACTIONS(3117), - [anon_sym_continue] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3117), - [anon_sym_DOLLARfor] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_asm] = ACTIONS(3117), - [anon_sym_AT_LBRACK] = ACTIONS(3117), - [sym___double_quote] = ACTIONS(3117), - [sym___single_quote] = ACTIONS(3117), - [sym___c_double_quote] = ACTIONS(3117), - [sym___c_single_quote] = ACTIONS(3117), - [sym___r_double_quote] = ACTIONS(3117), - [sym___r_single_quote] = ACTIONS(3117), - }, - [931] = { - [ts_builtin_sym_end] = ACTIONS(3119), - [sym_identifier] = ACTIONS(3121), - [anon_sym_LF] = ACTIONS(3121), - [anon_sym_CR] = ACTIONS(3121), - [anon_sym_CR_LF] = ACTIONS(3121), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_as] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(3121), - [anon_sym___global] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_EQ] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_pub] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3121), - [anon_sym_GT_GT] = ACTIONS(3121), - [anon_sym_GT_GT_GT] = ACTIONS(3121), - [anon_sym_AMP_CARET] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_QMARK_DOT] = ACTIONS(3121), - [anon_sym_POUND_LBRACK] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_is] = ACTIONS(3121), - [anon_sym_BANGis] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_BANGin] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_STAR_EQ] = ACTIONS(3121), - [anon_sym_SLASH_EQ] = ACTIONS(3121), - [anon_sym_PERCENT_EQ] = ACTIONS(3121), - [anon_sym_LT_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_GT_EQ] = ACTIONS(3121), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3121), - [anon_sym_AMP_EQ] = ACTIONS(3121), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3121), - [anon_sym_PLUS_EQ] = ACTIONS(3121), - [anon_sym_DASH_EQ] = ACTIONS(3121), - [anon_sym_PIPE_EQ] = ACTIONS(3121), - [anon_sym_CARET_EQ] = ACTIONS(3121), - [anon_sym_COLON_EQ] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [anon_sym_assert] = ACTIONS(3121), - [anon_sym_defer] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_DOLLARfor] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym_AT_LBRACK] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), - }, - [932] = { - [ts_builtin_sym_end] = ACTIONS(3123), - [sym_identifier] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_CR] = ACTIONS(3125), - [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_EQ] = ACTIONS(3125), - [anon_sym___global] = ACTIONS(3125), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_pub] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_interface] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_STAR_EQ] = ACTIONS(3125), - [anon_sym_SLASH_EQ] = ACTIONS(3125), - [anon_sym_PERCENT_EQ] = ACTIONS(3125), - [anon_sym_LT_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_GT_EQ] = ACTIONS(3125), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3125), - [anon_sym_AMP_EQ] = ACTIONS(3125), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3125), - [anon_sym_PLUS_EQ] = ACTIONS(3125), - [anon_sym_DASH_EQ] = ACTIONS(3125), - [anon_sym_PIPE_EQ] = ACTIONS(3125), - [anon_sym_CARET_EQ] = ACTIONS(3125), - [anon_sym_COLON_EQ] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [anon_sym_assert] = ACTIONS(3125), - [anon_sym_defer] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_DOLLARfor] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_POUND] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym_AT_LBRACK] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), - }, - [933] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_CR] = ACTIONS(2973), - [anon_sym_CR_LF] = ACTIONS(2973), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2973), - [anon_sym___global] = ACTIONS(2973), - [anon_sym_type] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_pub] = ACTIONS(2973), - [anon_sym_mut] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_interface] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2973), - [anon_sym_spawn] = ACTIONS(2973), - [anon_sym_json_DOTdecode] = ACTIONS(2973), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2973), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2973), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [sym_nil] = ACTIONS(2973), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_DOLLARif] = ACTIONS(2973), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_select] = ACTIONS(2973), - [anon_sym_STAR_EQ] = ACTIONS(2973), - [anon_sym_SLASH_EQ] = ACTIONS(2973), - [anon_sym_PERCENT_EQ] = ACTIONS(2973), - [anon_sym_LT_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_GT_EQ] = ACTIONS(2973), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2973), - [anon_sym_AMP_EQ] = ACTIONS(2973), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2973), - [anon_sym_PLUS_EQ] = ACTIONS(2973), - [anon_sym_DASH_EQ] = ACTIONS(2973), - [anon_sym_PIPE_EQ] = ACTIONS(2973), - [anon_sym_CARET_EQ] = ACTIONS(2973), - [anon_sym_COLON_EQ] = ACTIONS(2973), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(2973), - [anon_sym_sql] = ACTIONS(2973), - [sym_int_literal] = ACTIONS(2973), - [sym_float_literal] = ACTIONS(2973), - [sym_rune_literal] = ACTIONS(2973), - [anon_sym_AT] = ACTIONS(2973), - [anon_sym_shared] = ACTIONS(2973), - [anon_sym_map_LBRACK] = ACTIONS(2973), - [anon_sym_chan] = ACTIONS(2973), - [anon_sym_thread] = ACTIONS(2973), - [anon_sym_atomic] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_defer] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_DOLLARfor] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_POUND] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym_AT_LBRACK] = ACTIONS(2973), - [sym___double_quote] = ACTIONS(2973), - [sym___single_quote] = ACTIONS(2973), - [sym___c_double_quote] = ACTIONS(2973), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2973), - [sym___r_single_quote] = ACTIONS(2973), - }, - [934] = { - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2951), - [anon_sym_LF] = ACTIONS(2951), - [anon_sym_CR] = ACTIONS(2951), - [anon_sym_CR_LF] = ACTIONS(2951), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_EQ] = ACTIONS(2951), - [anon_sym___global] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_pub] = ACTIONS(2951), - [anon_sym_mut] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2951), - [anon_sym_spawn] = ACTIONS(2951), - [anon_sym_json_DOTdecode] = ACTIONS(2951), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_nil] = ACTIONS(2951), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_STAR_EQ] = ACTIONS(2951), - [anon_sym_SLASH_EQ] = ACTIONS(2951), - [anon_sym_PERCENT_EQ] = ACTIONS(2951), - [anon_sym_LT_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_GT_EQ] = ACTIONS(2951), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2951), - [anon_sym_AMP_EQ] = ACTIONS(2951), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2951), - [anon_sym_PLUS_EQ] = ACTIONS(2951), - [anon_sym_DASH_EQ] = ACTIONS(2951), - [anon_sym_PIPE_EQ] = ACTIONS(2951), - [anon_sym_CARET_EQ] = ACTIONS(2951), - [anon_sym_COLON_EQ] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_rlock] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_sql] = ACTIONS(2951), - [sym_int_literal] = ACTIONS(2951), - [sym_float_literal] = ACTIONS(2951), - [sym_rune_literal] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2951), - [anon_sym_shared] = ACTIONS(2951), - [anon_sym_map_LBRACK] = ACTIONS(2951), - [anon_sym_chan] = ACTIONS(2951), - [anon_sym_thread] = ACTIONS(2951), - [anon_sym_atomic] = ACTIONS(2951), - [anon_sym_assert] = ACTIONS(2951), - [anon_sym_defer] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_DOLLARfor] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym_AT_LBRACK] = ACTIONS(2951), - [sym___double_quote] = ACTIONS(2951), - [sym___single_quote] = ACTIONS(2951), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2951), - [sym___r_double_quote] = ACTIONS(2951), - [sym___r_single_quote] = ACTIONS(2951), - }, - [935] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_EQ] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_STAR_EQ] = ACTIONS(2772), - [anon_sym_SLASH_EQ] = ACTIONS(2772), - [anon_sym_PERCENT_EQ] = ACTIONS(2772), - [anon_sym_LT_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2772), - [anon_sym_AMP_EQ] = ACTIONS(2772), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2772), - [anon_sym_PLUS_EQ] = ACTIONS(2772), - [anon_sym_DASH_EQ] = ACTIONS(2772), - [anon_sym_PIPE_EQ] = ACTIONS(2772), - [anon_sym_CARET_EQ] = ACTIONS(2772), - [anon_sym_COLON_EQ] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [936] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_EQ] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_STAR_EQ] = ACTIONS(3129), - [anon_sym_SLASH_EQ] = ACTIONS(3129), - [anon_sym_PERCENT_EQ] = ACTIONS(3129), - [anon_sym_LT_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_GT_EQ] = ACTIONS(3129), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3129), - [anon_sym_AMP_EQ] = ACTIONS(3129), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3129), - [anon_sym_PLUS_EQ] = ACTIONS(3129), - [anon_sym_DASH_EQ] = ACTIONS(3129), - [anon_sym_PIPE_EQ] = ACTIONS(3129), - [anon_sym_CARET_EQ] = ACTIONS(3129), - [anon_sym_COLON_EQ] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), - }, - [937] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_STAR_EQ] = ACTIONS(3133), - [anon_sym_SLASH_EQ] = ACTIONS(3133), - [anon_sym_PERCENT_EQ] = ACTIONS(3133), - [anon_sym_LT_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_GT_EQ] = ACTIONS(3133), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3133), - [anon_sym_AMP_EQ] = ACTIONS(3133), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3133), - [anon_sym_PLUS_EQ] = ACTIONS(3133), - [anon_sym_DASH_EQ] = ACTIONS(3133), - [anon_sym_PIPE_EQ] = ACTIONS(3133), - [anon_sym_CARET_EQ] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), - }, - [938] = { - [ts_builtin_sym_end] = ACTIONS(3135), - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym___global] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_pub] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_STAR_EQ] = ACTIONS(3137), - [anon_sym_SLASH_EQ] = ACTIONS(3137), - [anon_sym_PERCENT_EQ] = ACTIONS(3137), - [anon_sym_LT_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_AMP_EQ] = ACTIONS(3137), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3137), - [anon_sym_PLUS_EQ] = ACTIONS(3137), - [anon_sym_DASH_EQ] = ACTIONS(3137), - [anon_sym_PIPE_EQ] = ACTIONS(3137), - [anon_sym_CARET_EQ] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), - }, - [939] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_EQ] = ACTIONS(3141), - [anon_sym___global] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_union] = ACTIONS(3141), - [anon_sym_pub] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_STAR_EQ] = ACTIONS(3141), - [anon_sym_SLASH_EQ] = ACTIONS(3141), - [anon_sym_PERCENT_EQ] = ACTIONS(3141), - [anon_sym_LT_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_GT_EQ] = ACTIONS(3141), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3141), - [anon_sym_AMP_EQ] = ACTIONS(3141), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3141), - [anon_sym_PLUS_EQ] = ACTIONS(3141), - [anon_sym_DASH_EQ] = ACTIONS(3141), - [anon_sym_PIPE_EQ] = ACTIONS(3141), - [anon_sym_CARET_EQ] = ACTIONS(3141), - [anon_sym_COLON_EQ] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [anon_sym_assert] = ACTIONS(3141), - [anon_sym_defer] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_DOLLARfor] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_asm] = ACTIONS(3141), - [anon_sym_AT_LBRACK] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), - }, - [940] = { - [ts_builtin_sym_end] = ACTIONS(3143), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_EQ] = ACTIONS(3145), - [anon_sym___global] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_pub] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_STAR_EQ] = ACTIONS(3145), - [anon_sym_SLASH_EQ] = ACTIONS(3145), - [anon_sym_PERCENT_EQ] = ACTIONS(3145), - [anon_sym_LT_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_GT_EQ] = ACTIONS(3145), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3145), - [anon_sym_AMP_EQ] = ACTIONS(3145), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3145), - [anon_sym_PLUS_EQ] = ACTIONS(3145), - [anon_sym_DASH_EQ] = ACTIONS(3145), - [anon_sym_PIPE_EQ] = ACTIONS(3145), - [anon_sym_CARET_EQ] = ACTIONS(3145), - [anon_sym_COLON_EQ] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_defer] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_DOLLARfor] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym_AT_LBRACK] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), - }, - [941] = { - [ts_builtin_sym_end] = ACTIONS(3147), - [sym_identifier] = ACTIONS(3149), - [anon_sym_LF] = ACTIONS(3149), - [anon_sym_CR] = ACTIONS(3149), - [anon_sym_CR_LF] = ACTIONS(3149), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_EQ] = ACTIONS(3149), - [anon_sym___global] = ACTIONS(3149), - [anon_sym_type] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_EQ] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_pub] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_interface] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_STAR_EQ] = ACTIONS(3149), - [anon_sym_SLASH_EQ] = ACTIONS(3149), - [anon_sym_PERCENT_EQ] = ACTIONS(3149), - [anon_sym_LT_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_GT_EQ] = ACTIONS(3149), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3149), - [anon_sym_AMP_EQ] = ACTIONS(3149), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3149), - [anon_sym_PLUS_EQ] = ACTIONS(3149), - [anon_sym_DASH_EQ] = ACTIONS(3149), - [anon_sym_PIPE_EQ] = ACTIONS(3149), - [anon_sym_CARET_EQ] = ACTIONS(3149), - [anon_sym_COLON_EQ] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [anon_sym_assert] = ACTIONS(3149), - [anon_sym_defer] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_DOLLARfor] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym_AT_LBRACK] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), - }, - [942] = { - [ts_builtin_sym_end] = ACTIONS(3151), - [sym_identifier] = ACTIONS(3153), - [anon_sym_LF] = ACTIONS(3153), - [anon_sym_CR] = ACTIONS(3153), - [anon_sym_CR_LF] = ACTIONS(3153), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_EQ] = ACTIONS(3153), - [anon_sym___global] = ACTIONS(3153), - [anon_sym_type] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_union] = ACTIONS(3153), - [anon_sym_pub] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_enum] = ACTIONS(3153), - [anon_sym_interface] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_STAR_EQ] = ACTIONS(3153), - [anon_sym_SLASH_EQ] = ACTIONS(3153), - [anon_sym_PERCENT_EQ] = ACTIONS(3153), - [anon_sym_LT_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_GT_EQ] = ACTIONS(3153), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3153), - [anon_sym_AMP_EQ] = ACTIONS(3153), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3153), - [anon_sym_PLUS_EQ] = ACTIONS(3153), - [anon_sym_DASH_EQ] = ACTIONS(3153), - [anon_sym_PIPE_EQ] = ACTIONS(3153), - [anon_sym_CARET_EQ] = ACTIONS(3153), - [anon_sym_COLON_EQ] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [anon_sym_assert] = ACTIONS(3153), - [anon_sym_defer] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_DOLLARfor] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_POUND] = ACTIONS(3153), - [anon_sym_asm] = ACTIONS(3153), - [anon_sym_AT_LBRACK] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), - }, - [943] = { - [ts_builtin_sym_end] = ACTIONS(3155), - [sym_identifier] = ACTIONS(3157), - [anon_sym_LF] = ACTIONS(3157), - [anon_sym_CR] = ACTIONS(3157), - [anon_sym_CR_LF] = ACTIONS(3157), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_EQ] = ACTIONS(3157), - [anon_sym___global] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_EQ_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_EQ] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_union] = ACTIONS(3157), - [anon_sym_pub] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_STAR_EQ] = ACTIONS(3157), - [anon_sym_SLASH_EQ] = ACTIONS(3157), - [anon_sym_PERCENT_EQ] = ACTIONS(3157), - [anon_sym_LT_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_GT_EQ] = ACTIONS(3157), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3157), - [anon_sym_AMP_EQ] = ACTIONS(3157), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3157), - [anon_sym_PLUS_EQ] = ACTIONS(3157), - [anon_sym_DASH_EQ] = ACTIONS(3157), - [anon_sym_PIPE_EQ] = ACTIONS(3157), - [anon_sym_CARET_EQ] = ACTIONS(3157), - [anon_sym_COLON_EQ] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [anon_sym_assert] = ACTIONS(3157), - [anon_sym_defer] = ACTIONS(3157), - [anon_sym_goto] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_DOLLARfor] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_POUND] = ACTIONS(3157), - [anon_sym_asm] = ACTIONS(3157), - [anon_sym_AT_LBRACK] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), - }, - [944] = { - [ts_builtin_sym_end] = ACTIONS(3159), - [sym_identifier] = ACTIONS(3161), - [anon_sym_LF] = ACTIONS(3161), - [anon_sym_CR] = ACTIONS(3161), - [anon_sym_CR_LF] = ACTIONS(3161), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_const] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_EQ] = ACTIONS(3161), - [anon_sym___global] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_union] = ACTIONS(3161), - [anon_sym_pub] = ACTIONS(3161), - [anon_sym_mut] = ACTIONS(3161), - [anon_sym_enum] = ACTIONS(3161), - [anon_sym_interface] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_go] = ACTIONS(3161), - [anon_sym_spawn] = ACTIONS(3161), - [anon_sym_json_DOTdecode] = ACTIONS(3161), - [anon_sym_LBRACK2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3161), - [anon_sym_GT_GT] = ACTIONS(3161), - [anon_sym_GT_GT_GT] = ACTIONS(3161), - [anon_sym_AMP_CARET] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [sym_none] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_nil] = ACTIONS(3161), - [anon_sym_QMARK_DOT] = ACTIONS(3161), - [anon_sym_POUND_LBRACK] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_DOLLARif] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3161), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_STAR_EQ] = ACTIONS(3161), - [anon_sym_SLASH_EQ] = ACTIONS(3161), - [anon_sym_PERCENT_EQ] = ACTIONS(3161), - [anon_sym_LT_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_GT_EQ] = ACTIONS(3161), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3161), - [anon_sym_AMP_EQ] = ACTIONS(3161), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3161), - [anon_sym_PLUS_EQ] = ACTIONS(3161), - [anon_sym_DASH_EQ] = ACTIONS(3161), - [anon_sym_PIPE_EQ] = ACTIONS(3161), - [anon_sym_CARET_EQ] = ACTIONS(3161), - [anon_sym_COLON_EQ] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_sql] = ACTIONS(3161), - [sym_int_literal] = ACTIONS(3161), - [sym_float_literal] = ACTIONS(3161), - [sym_rune_literal] = ACTIONS(3161), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_shared] = ACTIONS(3161), - [anon_sym_map_LBRACK] = ACTIONS(3161), - [anon_sym_chan] = ACTIONS(3161), - [anon_sym_thread] = ACTIONS(3161), - [anon_sym_atomic] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_defer] = ACTIONS(3161), - [anon_sym_goto] = ACTIONS(3161), - [anon_sym_break] = ACTIONS(3161), - [anon_sym_continue] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_DOLLARfor] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym_AT_LBRACK] = ACTIONS(3161), - [sym___double_quote] = ACTIONS(3161), - [sym___single_quote] = ACTIONS(3161), - [sym___c_double_quote] = ACTIONS(3161), - [sym___c_single_quote] = ACTIONS(3161), - [sym___r_double_quote] = ACTIONS(3161), - [sym___r_single_quote] = ACTIONS(3161), - }, - [945] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_EQ] = ACTIONS(3165), - [anon_sym___global] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_EQ_EQ] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_EQ] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_pub] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_interface] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3165), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_GT_GT_GT] = ACTIONS(3165), - [anon_sym_AMP_CARET] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_QMARK_DOT] = ACTIONS(3165), - [anon_sym_POUND_LBRACK] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_is] = ACTIONS(3165), - [anon_sym_BANGis] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_BANGin] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_STAR_EQ] = ACTIONS(3165), - [anon_sym_SLASH_EQ] = ACTIONS(3165), - [anon_sym_PERCENT_EQ] = ACTIONS(3165), - [anon_sym_LT_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_GT_EQ] = ACTIONS(3165), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3165), - [anon_sym_AMP_EQ] = ACTIONS(3165), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3165), - [anon_sym_PLUS_EQ] = ACTIONS(3165), - [anon_sym_DASH_EQ] = ACTIONS(3165), - [anon_sym_PIPE_EQ] = ACTIONS(3165), - [anon_sym_CARET_EQ] = ACTIONS(3165), - [anon_sym_COLON_EQ] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_defer] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_DOLLARfor] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym_AT_LBRACK] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), - }, - [946] = { - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(3029), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_STAR_EQ] = ACTIONS(3029), - [anon_sym_SLASH_EQ] = ACTIONS(3029), - [anon_sym_PERCENT_EQ] = ACTIONS(3029), - [anon_sym_LT_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_GT_EQ] = ACTIONS(3029), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3029), - [anon_sym_AMP_EQ] = ACTIONS(3029), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3029), - [anon_sym_PLUS_EQ] = ACTIONS(3029), - [anon_sym_DASH_EQ] = ACTIONS(3029), - [anon_sym_PIPE_EQ] = ACTIONS(3029), - [anon_sym_CARET_EQ] = ACTIONS(3029), - [anon_sym_COLON_EQ] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [947] = { - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_EQ] = ACTIONS(3169), - [anon_sym___global] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_pub] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3169), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_is] = ACTIONS(3169), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_STAR_EQ] = ACTIONS(3169), - [anon_sym_SLASH_EQ] = ACTIONS(3169), - [anon_sym_PERCENT_EQ] = ACTIONS(3169), - [anon_sym_LT_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_GT_EQ] = ACTIONS(3169), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3169), - [anon_sym_AMP_EQ] = ACTIONS(3169), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3169), - [anon_sym_PLUS_EQ] = ACTIONS(3169), - [anon_sym_DASH_EQ] = ACTIONS(3169), - [anon_sym_PIPE_EQ] = ACTIONS(3169), - [anon_sym_CARET_EQ] = ACTIONS(3169), - [anon_sym_COLON_EQ] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [anon_sym_assert] = ACTIONS(3169), - [anon_sym_defer] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_DOLLARfor] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_asm] = ACTIONS(3169), - [anon_sym_AT_LBRACK] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), - }, - [948] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_EQ] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_STAR_EQ] = ACTIONS(3173), - [anon_sym_SLASH_EQ] = ACTIONS(3173), - [anon_sym_PERCENT_EQ] = ACTIONS(3173), - [anon_sym_LT_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_GT_EQ] = ACTIONS(3173), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3173), - [anon_sym_AMP_EQ] = ACTIONS(3173), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3173), - [anon_sym_PLUS_EQ] = ACTIONS(3173), - [anon_sym_DASH_EQ] = ACTIONS(3173), - [anon_sym_PIPE_EQ] = ACTIONS(3173), - [anon_sym_CARET_EQ] = ACTIONS(3173), - [anon_sym_COLON_EQ] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), - }, - [949] = { - [ts_builtin_sym_end] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2949), - [anon_sym_LF] = ACTIONS(2949), - [anon_sym_CR] = ACTIONS(2949), - [anon_sym_CR_LF] = ACTIONS(2949), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_EQ] = ACTIONS(2949), - [anon_sym___global] = ACTIONS(2949), - [anon_sym_type] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_pub] = ACTIONS(2949), - [anon_sym_mut] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_interface] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2949), - [anon_sym_select] = ACTIONS(2949), - [anon_sym_STAR_EQ] = ACTIONS(2949), - [anon_sym_SLASH_EQ] = ACTIONS(2949), - [anon_sym_PERCENT_EQ] = ACTIONS(2949), - [anon_sym_LT_LT_EQ] = ACTIONS(2949), - [anon_sym_GT_GT_EQ] = ACTIONS(2949), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2949), - [anon_sym_AMP_EQ] = ACTIONS(2949), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2949), - [anon_sym_PLUS_EQ] = ACTIONS(2949), - [anon_sym_DASH_EQ] = ACTIONS(2949), - [anon_sym_PIPE_EQ] = ACTIONS(2949), - [anon_sym_CARET_EQ] = ACTIONS(2949), - [anon_sym_COLON_EQ] = ACTIONS(2949), - [anon_sym_lock] = ACTIONS(2949), - [anon_sym_rlock] = ACTIONS(2949), - [anon_sym_unsafe] = ACTIONS(2949), - [anon_sym_sql] = ACTIONS(2949), - [sym_int_literal] = ACTIONS(2949), - [sym_float_literal] = ACTIONS(2949), - [sym_rune_literal] = ACTIONS(2949), - [anon_sym_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [anon_sym_assert] = ACTIONS(2949), - [anon_sym_defer] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_DOLLARfor] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_POUND] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym_AT_LBRACK] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2949), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2949), - [sym___c_single_quote] = ACTIONS(2949), - [sym___r_double_quote] = ACTIONS(2949), - [sym___r_single_quote] = ACTIONS(2949), - }, - [950] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [sym_identifier] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_CR] = ACTIONS(2971), - [anon_sym_CR_LF] = ACTIONS(2971), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_const] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym___global] = ACTIONS(2971), - [anon_sym_type] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(2971), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_enum] = ACTIONS(2971), - [anon_sym_interface] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_STAR_EQ] = ACTIONS(2971), - [anon_sym_SLASH_EQ] = ACTIONS(2971), - [anon_sym_PERCENT_EQ] = ACTIONS(2971), - [anon_sym_LT_LT_EQ] = ACTIONS(2971), - [anon_sym_GT_GT_EQ] = ACTIONS(2971), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2971), - [anon_sym_AMP_EQ] = ACTIONS(2971), - [anon_sym_AMP_CARET_EQ] = ACTIONS(2971), - [anon_sym_PLUS_EQ] = ACTIONS(2971), - [anon_sym_DASH_EQ] = ACTIONS(2971), - [anon_sym_PIPE_EQ] = ACTIONS(2971), - [anon_sym_CARET_EQ] = ACTIONS(2971), - [anon_sym_COLON_EQ] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [anon_sym_assert] = ACTIONS(2971), - [anon_sym_defer] = ACTIONS(2971), - [anon_sym_goto] = ACTIONS(2971), - [anon_sym_break] = ACTIONS(2971), - [anon_sym_continue] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2971), - [anon_sym_DOLLARfor] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_asm] = ACTIONS(2971), - [anon_sym_AT_LBRACK] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2971), - [sym___single_quote] = ACTIONS(2971), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2971), - [sym___r_double_quote] = ACTIONS(2971), - [sym___r_single_quote] = ACTIONS(2971), - }, - [951] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_EQ] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_STAR_EQ] = ACTIONS(3177), - [anon_sym_SLASH_EQ] = ACTIONS(3177), - [anon_sym_PERCENT_EQ] = ACTIONS(3177), - [anon_sym_LT_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_GT_EQ] = ACTIONS(3177), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3177), - [anon_sym_AMP_EQ] = ACTIONS(3177), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3177), - [anon_sym_PLUS_EQ] = ACTIONS(3177), - [anon_sym_DASH_EQ] = ACTIONS(3177), - [anon_sym_PIPE_EQ] = ACTIONS(3177), - [anon_sym_CARET_EQ] = ACTIONS(3177), - [anon_sym_COLON_EQ] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), - }, - [952] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_EQ] = ACTIONS(3181), - [anon_sym___global] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_union] = ACTIONS(3181), - [anon_sym_pub] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_STAR_EQ] = ACTIONS(3181), - [anon_sym_SLASH_EQ] = ACTIONS(3181), - [anon_sym_PERCENT_EQ] = ACTIONS(3181), - [anon_sym_LT_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_GT_EQ] = ACTIONS(3181), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3181), - [anon_sym_AMP_EQ] = ACTIONS(3181), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3181), - [anon_sym_PLUS_EQ] = ACTIONS(3181), - [anon_sym_DASH_EQ] = ACTIONS(3181), - [anon_sym_PIPE_EQ] = ACTIONS(3181), - [anon_sym_CARET_EQ] = ACTIONS(3181), - [anon_sym_COLON_EQ] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [anon_sym_AT] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [anon_sym_assert] = ACTIONS(3181), - [anon_sym_defer] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_DOLLARfor] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_asm] = ACTIONS(3181), - [anon_sym_AT_LBRACK] = ACTIONS(3181), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), - }, - [953] = { - [ts_builtin_sym_end] = ACTIONS(3183), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_EQ] = ACTIONS(3185), - [anon_sym___global] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_union] = ACTIONS(3185), - [anon_sym_pub] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_STAR_EQ] = ACTIONS(3185), - [anon_sym_SLASH_EQ] = ACTIONS(3185), - [anon_sym_PERCENT_EQ] = ACTIONS(3185), - [anon_sym_LT_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_GT_EQ] = ACTIONS(3185), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3185), - [anon_sym_AMP_EQ] = ACTIONS(3185), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3185), - [anon_sym_PLUS_EQ] = ACTIONS(3185), - [anon_sym_DASH_EQ] = ACTIONS(3185), - [anon_sym_PIPE_EQ] = ACTIONS(3185), - [anon_sym_CARET_EQ] = ACTIONS(3185), - [anon_sym_COLON_EQ] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_defer] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_DOLLARfor] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_asm] = ACTIONS(3185), - [anon_sym_AT_LBRACK] = ACTIONS(3185), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), - }, - [954] = { - [ts_builtin_sym_end] = ACTIONS(3187), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_EQ] = ACTIONS(3189), - [anon_sym___global] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_pub] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_interface] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_STAR_EQ] = ACTIONS(3189), - [anon_sym_SLASH_EQ] = ACTIONS(3189), - [anon_sym_PERCENT_EQ] = ACTIONS(3189), - [anon_sym_LT_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3189), - [anon_sym_AMP_EQ] = ACTIONS(3189), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3189), - [anon_sym_PLUS_EQ] = ACTIONS(3189), - [anon_sym_DASH_EQ] = ACTIONS(3189), - [anon_sym_PIPE_EQ] = ACTIONS(3189), - [anon_sym_CARET_EQ] = ACTIONS(3189), - [anon_sym_COLON_EQ] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_defer] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_DOLLARfor] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym_AT_LBRACK] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), - }, - [955] = { - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_EQ] = ACTIONS(3193), - [anon_sym___global] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_pub] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_STAR_EQ] = ACTIONS(3193), - [anon_sym_SLASH_EQ] = ACTIONS(3193), - [anon_sym_PERCENT_EQ] = ACTIONS(3193), - [anon_sym_LT_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_GT_EQ] = ACTIONS(3193), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3193), - [anon_sym_AMP_EQ] = ACTIONS(3193), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3193), - [anon_sym_PLUS_EQ] = ACTIONS(3193), - [anon_sym_DASH_EQ] = ACTIONS(3193), - [anon_sym_PIPE_EQ] = ACTIONS(3193), - [anon_sym_CARET_EQ] = ACTIONS(3193), - [anon_sym_COLON_EQ] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [anon_sym_assert] = ACTIONS(3193), - [anon_sym_defer] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_DOLLARfor] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym_AT_LBRACK] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), - }, - [956] = { - [ts_builtin_sym_end] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_EQ] = ACTIONS(3197), - [anon_sym___global] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_pub] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_interface] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_STAR_EQ] = ACTIONS(3197), - [anon_sym_SLASH_EQ] = ACTIONS(3197), - [anon_sym_PERCENT_EQ] = ACTIONS(3197), - [anon_sym_LT_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_GT_EQ] = ACTIONS(3197), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3197), - [anon_sym_AMP_EQ] = ACTIONS(3197), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3197), - [anon_sym_PLUS_EQ] = ACTIONS(3197), - [anon_sym_DASH_EQ] = ACTIONS(3197), - [anon_sym_PIPE_EQ] = ACTIONS(3197), - [anon_sym_CARET_EQ] = ACTIONS(3197), - [anon_sym_COLON_EQ] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_defer] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_DOLLARfor] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym_AT_LBRACK] = ACTIONS(3197), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), - }, - [957] = { - [sym_reference_expression] = STATE(4416), - [sym_type_reference_expression] = STATE(3390), - [sym_plain_type] = STATE(3415), - [sym__plain_type_without_special] = STATE(3442), - [sym_anon_struct_type] = STATE(3438), - [sym_multi_return_type] = STATE(3442), - [sym_result_type] = STATE(3442), - [sym_option_type] = STATE(3442), - [sym_qualified_type] = STATE(3390), - [sym_fixed_array_type] = STATE(3438), - [sym_array_type] = STATE(3438), - [sym_pointer_type] = STATE(3438), - [sym_wrong_pointer_type] = STATE(3438), - [sym_map_type] = STATE(3438), - [sym_channel_type] = STATE(3438), - [sym_shared_type] = STATE(3438), - [sym_thread_type] = STATE(3438), - [sym_atomic_type] = STATE(3438), - [sym_generic_type] = STATE(3438), - [sym_function_type] = STATE(3438), - [sym_identifier] = ACTIONS(3199), - [anon_sym_LF] = ACTIONS(2774), - [anon_sym_CR] = ACTIONS(2774), - [anon_sym_CR_LF] = ACTIONS(2774), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2774), - [anon_sym_LPAREN] = ACTIONS(3201), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(3205), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(3207), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(2774), - [anon_sym_COLON] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3211), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(3213), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(3215), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(3217), - [anon_sym_map_LBRACK] = ACTIONS(3219), - [anon_sym_chan] = ACTIONS(3221), - [anon_sym_thread] = ACTIONS(3223), - [anon_sym_atomic] = ACTIONS(3225), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [958] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [aux_sym_strictly_expression_list_repeat1] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3227), - [sym_identifier] = ACTIONS(1770), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_CR] = ACTIONS(1770), - [anon_sym_CR_LF] = ACTIONS(1770), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_mut] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_interface] = ACTIONS(1770), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(1770), - [anon_sym_spawn] = ACTIONS(1770), - [anon_sym_json_DOTdecode] = ACTIONS(1770), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(1770), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(1770), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_nil] = ACTIONS(1770), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_DOLLARif] = ACTIONS(1770), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_select] = ACTIONS(1770), - [anon_sym_lock] = ACTIONS(1770), - [anon_sym_rlock] = ACTIONS(1770), - [anon_sym_unsafe] = ACTIONS(1770), - [anon_sym_sql] = ACTIONS(1770), - [sym_int_literal] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), - [sym_rune_literal] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_shared] = ACTIONS(1770), - [anon_sym_map_LBRACK] = ACTIONS(1770), - [anon_sym_chan] = ACTIONS(1770), - [anon_sym_thread] = ACTIONS(1770), - [anon_sym_atomic] = ACTIONS(1770), - [anon_sym_assert] = ACTIONS(1770), - [anon_sym_defer] = ACTIONS(1770), - [anon_sym_goto] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_DOLLARfor] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_asm] = ACTIONS(1770), - [anon_sym_AT_LBRACK] = ACTIONS(1770), - [sym___double_quote] = ACTIONS(1770), - [sym___single_quote] = ACTIONS(1770), - [sym___c_double_quote] = ACTIONS(1770), - [sym___c_single_quote] = ACTIONS(1770), - [sym___r_double_quote] = ACTIONS(1770), - [sym___r_single_quote] = ACTIONS(1770), - }, - [959] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [960] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2228), - [sym_identifier] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_CR] = ACTIONS(2230), - [anon_sym_CR_LF] = ACTIONS(2230), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_const] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_union] = ACTIONS(2230), - [anon_sym_pub] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_enum] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2230), - [anon_sym_spawn] = ACTIONS(2230), - [anon_sym_json_DOTdecode] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_CARET] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_or] = ACTIONS(2230), - [sym_none] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_nil] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_DOLLARif] = ACTIONS(2230), - [anon_sym_is] = ACTIONS(2230), - [anon_sym_BANGis] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_BANGin] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_select] = ACTIONS(2230), - [anon_sym_lock] = ACTIONS(2230), - [anon_sym_rlock] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_sql] = ACTIONS(2230), - [sym_int_literal] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), - [sym_rune_literal] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_shared] = ACTIONS(2230), - [anon_sym_map_LBRACK] = ACTIONS(2230), - [anon_sym_chan] = ACTIONS(2230), - [anon_sym_thread] = ACTIONS(2230), - [anon_sym_atomic] = ACTIONS(2230), - [anon_sym_assert] = ACTIONS(2230), - [anon_sym_defer] = ACTIONS(2230), - [anon_sym_goto] = ACTIONS(2230), - [anon_sym_break] = ACTIONS(2230), - [anon_sym_continue] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2230), - [anon_sym_DOLLARfor] = ACTIONS(2230), - [anon_sym_for] = ACTIONS(2230), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_asm] = ACTIONS(2230), - [anon_sym_AT_LBRACK] = ACTIONS(2230), - [sym___double_quote] = ACTIONS(2230), - [sym___single_quote] = ACTIONS(2230), - [sym___c_double_quote] = ACTIONS(2230), - [sym___c_single_quote] = ACTIONS(2230), - [sym___r_double_quote] = ACTIONS(2230), - [sym___r_single_quote] = ACTIONS(2230), - }, - [961] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LF] = ACTIONS(2210), - [anon_sym_CR] = ACTIONS(2210), - [anon_sym_CR_LF] = ACTIONS(2210), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_const] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2210), - [anon_sym_pub] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2210), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - [sym_rune_literal] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2210), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [anon_sym_assert] = ACTIONS(2210), - [anon_sym_defer] = ACTIONS(2210), - [anon_sym_goto] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_DOLLARfor] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_asm] = ACTIONS(2210), - [anon_sym_AT_LBRACK] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2210), - [sym___single_quote] = ACTIONS(2210), - [sym___c_double_quote] = ACTIONS(2210), - [sym___c_single_quote] = ACTIONS(2210), - [sym___r_double_quote] = ACTIONS(2210), - [sym___r_single_quote] = ACTIONS(2210), - }, - [962] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3269), - [sym_identifier] = ACTIONS(3271), - [anon_sym_LF] = ACTIONS(3271), - [anon_sym_CR] = ACTIONS(3271), - [anon_sym_CR_LF] = ACTIONS(3271), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_COMMA] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3271), - [anon_sym_union] = ACTIONS(3271), - [anon_sym_pub] = ACTIONS(3271), - [anon_sym_mut] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3271), - [anon_sym_spawn] = ACTIONS(3271), - [anon_sym_json_DOTdecode] = ACTIONS(3271), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(3271), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_nil] = ACTIONS(3271), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_DOLLARif] = ACTIONS(3271), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(3271), - [anon_sym_select] = ACTIONS(3271), - [anon_sym_lock] = ACTIONS(3271), - [anon_sym_rlock] = ACTIONS(3271), - [anon_sym_unsafe] = ACTIONS(3271), - [anon_sym_sql] = ACTIONS(3271), - [sym_int_literal] = ACTIONS(3271), - [sym_float_literal] = ACTIONS(3271), - [sym_rune_literal] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_shared] = ACTIONS(3271), - [anon_sym_map_LBRACK] = ACTIONS(3271), - [anon_sym_chan] = ACTIONS(3271), - [anon_sym_thread] = ACTIONS(3271), - [anon_sym_atomic] = ACTIONS(3271), - [anon_sym_assert] = ACTIONS(3271), - [anon_sym_defer] = ACTIONS(3271), - [anon_sym_goto] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_DOLLARfor] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_POUND] = ACTIONS(3271), - [anon_sym_asm] = ACTIONS(3271), - [anon_sym_AT_LBRACK] = ACTIONS(3271), - [sym___double_quote] = ACTIONS(3271), - [sym___single_quote] = ACTIONS(3271), - [sym___c_double_quote] = ACTIONS(3271), - [sym___c_single_quote] = ACTIONS(3271), - [sym___r_double_quote] = ACTIONS(3271), - [sym___r_single_quote] = ACTIONS(3271), - }, - [963] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_CR] = ACTIONS(2164), - [anon_sym_CR_LF] = ACTIONS(2164), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_const] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2164), - [anon_sym_type] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_union] = ACTIONS(2164), - [anon_sym_pub] = ACTIONS(2164), - [anon_sym_mut] = ACTIONS(2164), - [anon_sym_enum] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2164), - [anon_sym_spawn] = ACTIONS(2164), - [anon_sym_json_DOTdecode] = ACTIONS(2164), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_LT_DASH] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_CARET] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_or] = ACTIONS(2164), - [sym_none] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_nil] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_DOLLARif] = ACTIONS(2164), - [anon_sym_is] = ACTIONS(2164), - [anon_sym_BANGis] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_BANGin] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_select] = ACTIONS(2164), - [anon_sym_lock] = ACTIONS(2164), - [anon_sym_rlock] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_sql] = ACTIONS(2164), - [sym_int_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2164), - [sym_rune_literal] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_shared] = ACTIONS(2164), - [anon_sym_map_LBRACK] = ACTIONS(2164), - [anon_sym_chan] = ACTIONS(2164), - [anon_sym_thread] = ACTIONS(2164), - [anon_sym_atomic] = ACTIONS(2164), - [anon_sym_assert] = ACTIONS(2164), - [anon_sym_defer] = ACTIONS(2164), - [anon_sym_goto] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_DOLLARfor] = ACTIONS(2164), - [anon_sym_for] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2164), - [anon_sym_asm] = ACTIONS(2164), - [anon_sym_AT_LBRACK] = ACTIONS(2164), - [sym___double_quote] = ACTIONS(2164), - [sym___single_quote] = ACTIONS(2164), - [sym___c_double_quote] = ACTIONS(2164), - [sym___c_single_quote] = ACTIONS(2164), - [sym___r_double_quote] = ACTIONS(2164), - [sym___r_single_quote] = ACTIONS(2164), - }, - [964] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [965] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [966] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [967] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_go] = ACTIONS(595), - [anon_sym_spawn] = ACTIONS(595), - [anon_sym_json_DOTdecode] = ACTIONS(595), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(595), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(595), - [sym_none] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_nil] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_if] = ACTIONS(595), - [anon_sym_DOLLARif] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_match] = ACTIONS(595), - [anon_sym_select] = ACTIONS(595), - [anon_sym_lock] = ACTIONS(595), - [anon_sym_rlock] = ACTIONS(595), - [anon_sym_unsafe] = ACTIONS(595), - [anon_sym_sql] = ACTIONS(595), - [sym_int_literal] = ACTIONS(595), - [sym_float_literal] = ACTIONS(595), - [sym_rune_literal] = ACTIONS(595), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(595), - [sym___single_quote] = ACTIONS(595), - [sym___c_double_quote] = ACTIONS(595), - [sym___c_single_quote] = ACTIONS(595), - [sym___r_double_quote] = ACTIONS(595), - [sym___r_single_quote] = ACTIONS(595), - }, - [968] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [969] = { - [sym_reference_expression] = STATE(4507), - [sym_type_reference_expression] = STATE(1164), - [sym_plain_type] = STATE(1181), - [sym__plain_type_without_special] = STATE(1177), - [sym_anon_struct_type] = STATE(1178), - [sym_multi_return_type] = STATE(1177), - [sym_result_type] = STATE(1177), - [sym_option_type] = STATE(1177), - [sym_qualified_type] = STATE(1164), - [sym_fixed_array_type] = STATE(1178), - [sym_array_type] = STATE(1178), - [sym_pointer_type] = STATE(1178), - [sym_wrong_pointer_type] = STATE(1178), - [sym_map_type] = STATE(1178), - [sym_channel_type] = STATE(1178), - [sym_shared_type] = STATE(1178), - [sym_thread_type] = STATE(1178), - [sym_atomic_type] = STATE(1178), - [sym_generic_type] = STATE(1178), - [sym_function_type] = STATE(1178), - [sym_identifier] = ACTIONS(3277), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3285), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(555), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_LT_DASH] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), - [sym_rune_literal] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3301), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(555), - [sym___single_quote] = ACTIONS(555), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(555), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(555), - }, - [970] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_CR] = ACTIONS(2108), - [anon_sym_CR_LF] = ACTIONS(2108), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2108), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - [sym_rune_literal] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2108), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [anon_sym_assert] = ACTIONS(2108), - [anon_sym_defer] = ACTIONS(2108), - [anon_sym_goto] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_DOLLARfor] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_asm] = ACTIONS(2108), - [anon_sym_AT_LBRACK] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2108), - [sym___single_quote] = ACTIONS(2108), - [sym___c_double_quote] = ACTIONS(2108), - [sym___c_single_quote] = ACTIONS(2108), - [sym___r_double_quote] = ACTIONS(2108), - [sym___r_single_quote] = ACTIONS(2108), - }, - [971] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_CR] = ACTIONS(2112), - [anon_sym_CR_LF] = ACTIONS(2112), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_interface] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2112), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - [sym_rune_literal] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2112), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [anon_sym_assert] = ACTIONS(2112), - [anon_sym_defer] = ACTIONS(2112), - [anon_sym_goto] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_DOLLARfor] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_asm] = ACTIONS(2112), - [anon_sym_AT_LBRACK] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2112), - [sym___single_quote] = ACTIONS(2112), - [sym___c_double_quote] = ACTIONS(2112), - [sym___c_single_quote] = ACTIONS(2112), - [sym___r_double_quote] = ACTIONS(2112), - [sym___r_single_quote] = ACTIONS(2112), - }, - [972] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(585), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(585), - [sym_rune_literal] = ACTIONS(585), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(585), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(585), - [sym___double_quote] = ACTIONS(585), - [sym___single_quote] = ACTIONS(585), - [sym___c_double_quote] = ACTIONS(585), - [sym___c_single_quote] = ACTIONS(585), - [sym___r_double_quote] = ACTIONS(585), - [sym___r_single_quote] = ACTIONS(585), - }, - [973] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_CR] = ACTIONS(1690), - [anon_sym_CR_LF] = ACTIONS(1690), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_interface] = ACTIONS(1690), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(1690), - [anon_sym_spawn] = ACTIONS(1690), - [anon_sym_json_DOTdecode] = ACTIONS(1690), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(1690), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_nil] = ACTIONS(1690), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_DOLLARif] = ACTIONS(1690), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_select] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1690), - [anon_sym_rlock] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_sql] = ACTIONS(1690), - [sym_int_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), - [sym_rune_literal] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_shared] = ACTIONS(1690), - [anon_sym_map_LBRACK] = ACTIONS(1690), - [anon_sym_chan] = ACTIONS(1690), - [anon_sym_thread] = ACTIONS(1690), - [anon_sym_atomic] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_defer] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_DOLLARfor] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_asm] = ACTIONS(1690), - [anon_sym_AT_LBRACK] = ACTIONS(1690), - [sym___double_quote] = ACTIONS(1690), - [sym___single_quote] = ACTIONS(1690), - [sym___c_double_quote] = ACTIONS(1690), - [sym___c_single_quote] = ACTIONS(1690), - [sym___r_double_quote] = ACTIONS(1690), - [sym___r_single_quote] = ACTIONS(1690), - }, - [974] = { - [sym_reference_expression] = STATE(4507), - [sym_type_reference_expression] = STATE(1164), - [sym_plain_type] = STATE(1218), - [sym__plain_type_without_special] = STATE(1177), - [sym_anon_struct_type] = STATE(1178), - [sym_multi_return_type] = STATE(1177), - [sym_result_type] = STATE(1177), - [sym_option_type] = STATE(1177), - [sym_qualified_type] = STATE(1164), - [sym_fixed_array_type] = STATE(1178), - [sym_array_type] = STATE(1178), - [sym_pointer_type] = STATE(1178), - [sym_wrong_pointer_type] = STATE(1178), - [sym_map_type] = STATE(1178), - [sym_channel_type] = STATE(1178), - [sym_shared_type] = STATE(1178), - [sym_thread_type] = STATE(1178), - [sym_atomic_type] = STATE(1178), - [sym_generic_type] = STATE(1178), - [sym_function_type] = STATE(1178), - [sym_identifier] = ACTIONS(3277), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3285), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3301), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), - }, - [975] = { - [sym_reference_expression] = STATE(4507), - [sym_type_reference_expression] = STATE(1164), - [sym_plain_type] = STATE(1222), - [sym__plain_type_without_special] = STATE(1177), - [sym_anon_struct_type] = STATE(1178), - [sym_multi_return_type] = STATE(1177), - [sym_result_type] = STATE(1177), - [sym_option_type] = STATE(1177), - [sym_qualified_type] = STATE(1164), - [sym_fixed_array_type] = STATE(1178), - [sym_array_type] = STATE(1178), - [sym_pointer_type] = STATE(1178), - [sym_wrong_pointer_type] = STATE(1178), - [sym_map_type] = STATE(1178), - [sym_channel_type] = STATE(1178), - [sym_shared_type] = STATE(1178), - [sym_thread_type] = STATE(1178), - [sym_atomic_type] = STATE(1178), - [sym_generic_type] = STATE(1178), - [sym_function_type] = STATE(1178), - [sym_identifier] = ACTIONS(3277), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3283), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3285), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3293), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3295), - [anon_sym_map_LBRACK] = ACTIONS(3297), - [anon_sym_chan] = ACTIONS(3299), - [anon_sym_thread] = ACTIONS(3301), - [anon_sym_atomic] = ACTIONS(3303), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), - }, - [976] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_CR] = ACTIONS(2220), - [anon_sym_CR_LF] = ACTIONS(2220), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2220), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), - [sym_rune_literal] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2220), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [anon_sym_assert] = ACTIONS(2220), - [anon_sym_defer] = ACTIONS(2220), - [anon_sym_goto] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_DOLLARfor] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_asm] = ACTIONS(2220), - [anon_sym_AT_LBRACK] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2220), - [sym___single_quote] = ACTIONS(2220), - [sym___c_double_quote] = ACTIONS(2220), - [sym___c_single_quote] = ACTIONS(2220), - [sym___r_double_quote] = ACTIONS(2220), - [sym___r_single_quote] = ACTIONS(2220), - }, - [977] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2124), - [anon_sym_LF] = ACTIONS(2124), - [anon_sym_CR] = ACTIONS(2124), - [anon_sym_CR_LF] = ACTIONS(2124), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2124), - [anon_sym_COMMA] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2124), - [anon_sym_type] = ACTIONS(2124), - [anon_sym_PIPE] = ACTIONS(3237), - [anon_sym_fn] = ACTIONS(2124), - [anon_sym_PLUS] = ACTIONS(3237), - [anon_sym_DASH] = ACTIONS(3237), - [anon_sym_STAR] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_PERCENT] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_GT] = ACTIONS(3241), - [anon_sym_EQ_EQ] = ACTIONS(3241), - [anon_sym_BANG_EQ] = ACTIONS(3241), - [anon_sym_LT_EQ] = ACTIONS(3241), - [anon_sym_GT_EQ] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2124), - [anon_sym_union] = ACTIONS(2124), - [anon_sym_pub] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_enum] = ACTIONS(2124), - [anon_sym_interface] = ACTIONS(2124), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2124), - [anon_sym_spawn] = ACTIONS(2124), - [anon_sym_json_DOTdecode] = ACTIONS(2124), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2124), - [anon_sym_CARET] = ACTIONS(3237), - [anon_sym_AMP] = ACTIONS(3239), - [anon_sym_LT_DASH] = ACTIONS(2124), - [anon_sym_LT_LT] = ACTIONS(3239), - [anon_sym_GT_GT] = ACTIONS(3239), - [anon_sym_GT_GT_GT] = ACTIONS(3239), - [anon_sym_AMP_CARET] = ACTIONS(3239), - [anon_sym_AMP_AMP] = ACTIONS(3255), - [anon_sym_PIPE_PIPE] = ACTIONS(3257), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2124), - [sym_true] = ACTIONS(2124), - [sym_false] = ACTIONS(2124), - [sym_nil] = ACTIONS(2124), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_DOLLARif] = ACTIONS(2124), - [anon_sym_is] = ACTIONS(3307), - [anon_sym_BANGis] = ACTIONS(3309), - [anon_sym_in] = ACTIONS(3265), - [anon_sym_BANGin] = ACTIONS(3267), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_select] = ACTIONS(2124), - [anon_sym_lock] = ACTIONS(2124), - [anon_sym_rlock] = ACTIONS(2124), - [anon_sym_unsafe] = ACTIONS(2124), - [anon_sym_sql] = ACTIONS(2124), - [sym_int_literal] = ACTIONS(2124), - [sym_float_literal] = ACTIONS(2124), - [sym_rune_literal] = ACTIONS(2124), - [anon_sym_AT] = ACTIONS(2124), - [anon_sym_shared] = ACTIONS(2124), - [anon_sym_map_LBRACK] = ACTIONS(2124), - [anon_sym_chan] = ACTIONS(2124), - [anon_sym_thread] = ACTIONS(2124), - [anon_sym_atomic] = ACTIONS(2124), - [anon_sym_assert] = ACTIONS(2124), - [anon_sym_defer] = ACTIONS(2124), - [anon_sym_goto] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_DOLLARfor] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_POUND] = ACTIONS(2124), - [anon_sym_asm] = ACTIONS(2124), - [anon_sym_AT_LBRACK] = ACTIONS(2124), - [sym___double_quote] = ACTIONS(2124), - [sym___single_quote] = ACTIONS(2124), - [sym___c_double_quote] = ACTIONS(2124), - [sym___c_single_quote] = ACTIONS(2124), - [sym___r_double_quote] = ACTIONS(2124), - [sym___r_single_quote] = ACTIONS(2124), - }, - [978] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3311), - [sym_identifier] = ACTIONS(3313), - [anon_sym_LF] = ACTIONS(3313), - [anon_sym_CR] = ACTIONS(3313), - [anon_sym_CR_LF] = ACTIONS(3313), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3313), - [anon_sym_union] = ACTIONS(3313), - [anon_sym_pub] = ACTIONS(3313), - [anon_sym_mut] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [anon_sym_interface] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3313), - [anon_sym_spawn] = ACTIONS(3313), - [anon_sym_json_DOTdecode] = ACTIONS(3313), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(3313), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3313), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [sym_nil] = ACTIONS(3313), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_DOLLARif] = ACTIONS(3313), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3313), - [anon_sym_select] = ACTIONS(3313), - [anon_sym_lock] = ACTIONS(3313), - [anon_sym_rlock] = ACTIONS(3313), - [anon_sym_unsafe] = ACTIONS(3313), - [anon_sym_sql] = ACTIONS(3313), - [sym_int_literal] = ACTIONS(3313), - [sym_float_literal] = ACTIONS(3313), - [sym_rune_literal] = ACTIONS(3313), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_shared] = ACTIONS(3313), - [anon_sym_map_LBRACK] = ACTIONS(3313), - [anon_sym_chan] = ACTIONS(3313), - [anon_sym_thread] = ACTIONS(3313), - [anon_sym_atomic] = ACTIONS(3313), - [anon_sym_assert] = ACTIONS(3313), - [anon_sym_defer] = ACTIONS(3313), - [anon_sym_goto] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_DOLLARfor] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_POUND] = ACTIONS(3313), - [anon_sym_asm] = ACTIONS(3313), - [anon_sym_AT_LBRACK] = ACTIONS(3313), - [sym___double_quote] = ACTIONS(3313), - [sym___single_quote] = ACTIONS(3313), - [sym___c_double_quote] = ACTIONS(3313), - [sym___c_single_quote] = ACTIONS(3313), - [sym___r_double_quote] = ACTIONS(3313), - [sym___r_single_quote] = ACTIONS(3313), - }, - [979] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3329), - [sym_identifier] = ACTIONS(3331), - [anon_sym_LF] = ACTIONS(3331), - [anon_sym_CR] = ACTIONS(3331), - [anon_sym_CR_LF] = ACTIONS(3331), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3331), - [anon_sym_union] = ACTIONS(3331), - [anon_sym_pub] = ACTIONS(3331), - [anon_sym_mut] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3331), - [anon_sym_spawn] = ACTIONS(3331), - [anon_sym_json_DOTdecode] = ACTIONS(3331), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(3331), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_nil] = ACTIONS(3331), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_DOLLARif] = ACTIONS(3331), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3331), - [anon_sym_select] = ACTIONS(3331), - [anon_sym_lock] = ACTIONS(3331), - [anon_sym_rlock] = ACTIONS(3331), - [anon_sym_unsafe] = ACTIONS(3331), - [anon_sym_sql] = ACTIONS(3331), - [sym_int_literal] = ACTIONS(3331), - [sym_float_literal] = ACTIONS(3331), - [sym_rune_literal] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_shared] = ACTIONS(3331), - [anon_sym_map_LBRACK] = ACTIONS(3331), - [anon_sym_chan] = ACTIONS(3331), - [anon_sym_thread] = ACTIONS(3331), - [anon_sym_atomic] = ACTIONS(3331), - [anon_sym_assert] = ACTIONS(3331), - [anon_sym_defer] = ACTIONS(3331), - [anon_sym_goto] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_DOLLARfor] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_POUND] = ACTIONS(3331), - [anon_sym_asm] = ACTIONS(3331), - [anon_sym_AT_LBRACK] = ACTIONS(3331), - [sym___double_quote] = ACTIONS(3331), - [sym___single_quote] = ACTIONS(3331), - [sym___c_double_quote] = ACTIONS(3331), - [sym___c_single_quote] = ACTIONS(3331), - [sym___r_double_quote] = ACTIONS(3331), - [sym___r_single_quote] = ACTIONS(3331), - }, - [980] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3333), - [sym_identifier] = ACTIONS(3335), - [anon_sym_LF] = ACTIONS(3335), - [anon_sym_CR] = ACTIONS(3335), - [anon_sym_CR_LF] = ACTIONS(3335), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3335), - [anon_sym_const] = ACTIONS(3335), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3335), - [anon_sym_type] = ACTIONS(3335), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3335), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3335), - [anon_sym_union] = ACTIONS(3335), - [anon_sym_pub] = ACTIONS(3335), - [anon_sym_mut] = ACTIONS(3335), - [anon_sym_enum] = ACTIONS(3335), - [anon_sym_interface] = ACTIONS(3335), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3335), - [anon_sym_spawn] = ACTIONS(3335), - [anon_sym_json_DOTdecode] = ACTIONS(3335), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3335), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(3335), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3335), - [sym_true] = ACTIONS(3335), - [sym_false] = ACTIONS(3335), - [sym_nil] = ACTIONS(3335), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3335), - [anon_sym_DOLLARif] = ACTIONS(3335), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3335), - [anon_sym_select] = ACTIONS(3335), - [anon_sym_lock] = ACTIONS(3335), - [anon_sym_rlock] = ACTIONS(3335), - [anon_sym_unsafe] = ACTIONS(3335), - [anon_sym_sql] = ACTIONS(3335), - [sym_int_literal] = ACTIONS(3335), - [sym_float_literal] = ACTIONS(3335), - [sym_rune_literal] = ACTIONS(3335), - [anon_sym_AT] = ACTIONS(3335), - [anon_sym_shared] = ACTIONS(3335), - [anon_sym_map_LBRACK] = ACTIONS(3335), - [anon_sym_chan] = ACTIONS(3335), - [anon_sym_thread] = ACTIONS(3335), - [anon_sym_atomic] = ACTIONS(3335), - [anon_sym_assert] = ACTIONS(3335), - [anon_sym_defer] = ACTIONS(3335), - [anon_sym_goto] = ACTIONS(3335), - [anon_sym_break] = ACTIONS(3335), - [anon_sym_continue] = ACTIONS(3335), - [anon_sym_return] = ACTIONS(3335), - [anon_sym_DOLLARfor] = ACTIONS(3335), - [anon_sym_for] = ACTIONS(3335), - [anon_sym_POUND] = ACTIONS(3335), - [anon_sym_asm] = ACTIONS(3335), - [anon_sym_AT_LBRACK] = ACTIONS(3335), - [sym___double_quote] = ACTIONS(3335), - [sym___single_quote] = ACTIONS(3335), - [sym___c_double_quote] = ACTIONS(3335), - [sym___c_single_quote] = ACTIONS(3335), - [sym___r_double_quote] = ACTIONS(3335), - [sym___r_single_quote] = ACTIONS(3335), - }, - [981] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(3337), - [sym_identifier] = ACTIONS(3339), - [anon_sym_LF] = ACTIONS(3339), - [anon_sym_CR] = ACTIONS(3339), - [anon_sym_CR_LF] = ACTIONS(3339), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_STAR] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(3339), - [anon_sym_union] = ACTIONS(3339), - [anon_sym_pub] = ACTIONS(3339), - [anon_sym_mut] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(3339), - [anon_sym_spawn] = ACTIONS(3339), - [anon_sym_json_DOTdecode] = ACTIONS(3339), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_CARET] = ACTIONS(3339), - [anon_sym_AMP] = ACTIONS(3339), - [anon_sym_LT_DASH] = ACTIONS(3339), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_nil] = ACTIONS(3339), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_DOLLARif] = ACTIONS(3339), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(3339), - [anon_sym_select] = ACTIONS(3339), - [anon_sym_lock] = ACTIONS(3339), - [anon_sym_rlock] = ACTIONS(3339), - [anon_sym_unsafe] = ACTIONS(3339), - [anon_sym_sql] = ACTIONS(3339), - [sym_int_literal] = ACTIONS(3339), - [sym_float_literal] = ACTIONS(3339), - [sym_rune_literal] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [anon_sym_shared] = ACTIONS(3339), - [anon_sym_map_LBRACK] = ACTIONS(3339), - [anon_sym_chan] = ACTIONS(3339), - [anon_sym_thread] = ACTIONS(3339), - [anon_sym_atomic] = ACTIONS(3339), - [anon_sym_assert] = ACTIONS(3339), - [anon_sym_defer] = ACTIONS(3339), - [anon_sym_goto] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_DOLLARfor] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_POUND] = ACTIONS(3339), - [anon_sym_asm] = ACTIONS(3339), - [anon_sym_AT_LBRACK] = ACTIONS(3339), - [sym___double_quote] = ACTIONS(3339), - [sym___single_quote] = ACTIONS(3339), - [sym___c_double_quote] = ACTIONS(3339), - [sym___c_single_quote] = ACTIONS(3339), - [sym___r_double_quote] = ACTIONS(3339), - [sym___r_single_quote] = ACTIONS(3339), - }, - [982] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2108), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_CR] = ACTIONS(2108), - [anon_sym_CR_LF] = ACTIONS(2108), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_const] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2108), - [anon_sym_type] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_union] = ACTIONS(2108), - [anon_sym_pub] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_enum] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2108), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - [sym_rune_literal] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2108), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [anon_sym_assert] = ACTIONS(2108), - [anon_sym_defer] = ACTIONS(2108), - [anon_sym_goto] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_DOLLARfor] = ACTIONS(2108), - [anon_sym_for] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2108), - [anon_sym_asm] = ACTIONS(2108), - [anon_sym_AT_LBRACK] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2108), - [sym___single_quote] = ACTIONS(2108), - [sym___c_double_quote] = ACTIONS(2108), - [sym___c_single_quote] = ACTIONS(2108), - [sym___r_double_quote] = ACTIONS(2108), - [sym___r_single_quote] = ACTIONS(2108), - }, - [983] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [984] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2208), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LF] = ACTIONS(2210), - [anon_sym_CR] = ACTIONS(2210), - [anon_sym_CR_LF] = ACTIONS(2210), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_const] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_union] = ACTIONS(2210), - [anon_sym_pub] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_enum] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2210), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - [sym_rune_literal] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2210), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [anon_sym_assert] = ACTIONS(2210), - [anon_sym_defer] = ACTIONS(2210), - [anon_sym_goto] = ACTIONS(2210), - [anon_sym_break] = ACTIONS(2210), - [anon_sym_continue] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2210), - [anon_sym_DOLLARfor] = ACTIONS(2210), - [anon_sym_for] = ACTIONS(2210), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_asm] = ACTIONS(2210), - [anon_sym_AT_LBRACK] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2210), - [sym___single_quote] = ACTIONS(2210), - [sym___c_double_quote] = ACTIONS(2210), - [sym___c_single_quote] = ACTIONS(2210), - [sym___r_double_quote] = ACTIONS(2210), - [sym___r_single_quote] = ACTIONS(2210), - }, - [985] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_CR] = ACTIONS(2220), - [anon_sym_CR_LF] = ACTIONS(2220), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_const] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2220), - [anon_sym_type] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_union] = ACTIONS(2220), - [anon_sym_pub] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_enum] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2220), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(3321), - [anon_sym_PIPE_PIPE] = ACTIONS(3323), - [anon_sym_or] = ACTIONS(3259), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(3261), - [anon_sym_BANGis] = ACTIONS(3263), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), - [sym_rune_literal] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2220), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [anon_sym_assert] = ACTIONS(2220), - [anon_sym_defer] = ACTIONS(2220), - [anon_sym_goto] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_DOLLARfor] = ACTIONS(2220), - [anon_sym_for] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2220), - [anon_sym_asm] = ACTIONS(2220), - [anon_sym_AT_LBRACK] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2220), - [sym___single_quote] = ACTIONS(2220), - [sym___c_double_quote] = ACTIONS(2220), - [sym___c_single_quote] = ACTIONS(2220), - [sym___r_double_quote] = ACTIONS(2220), - [sym___r_single_quote] = ACTIONS(2220), - }, - [986] = { - [sym_else_branch] = STATE(1025), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_CR] = ACTIONS(2406), - [anon_sym_CR_LF] = ACTIONS(2406), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_COMMA] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym___global] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_interface] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2406), - [anon_sym_json_DOTdecode] = ACTIONS(2406), - [anon_sym_LBRACK2] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_LT_DASH] = ACTIONS(2406), - [anon_sym_LT_LT] = ACTIONS(2406), - [anon_sym_GT_GT] = ACTIONS(2406), - [anon_sym_GT_GT_GT] = ACTIONS(2406), - [anon_sym_AMP_CARET] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_or] = ACTIONS(2406), - [sym_none] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_nil] = ACTIONS(2406), - [anon_sym_QMARK_DOT] = ACTIONS(2406), - [anon_sym_POUND_LBRACK] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_DOLLARif] = ACTIONS(2406), - [anon_sym_is] = ACTIONS(2406), - [anon_sym_BANGis] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_BANGin] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_select] = ACTIONS(2406), - [anon_sym_lock] = ACTIONS(2406), - [anon_sym_rlock] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_sql] = ACTIONS(2406), - [sym_int_literal] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), - [sym_rune_literal] = ACTIONS(2406), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_shared] = ACTIONS(2406), - [anon_sym_map_LBRACK] = ACTIONS(2406), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2406), - [anon_sym_atomic] = ACTIONS(2406), - [anon_sym_assert] = ACTIONS(2406), - [anon_sym_defer] = ACTIONS(2406), - [anon_sym_goto] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_DOLLARfor] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_POUND] = ACTIONS(2406), - [anon_sym_asm] = ACTIONS(2406), - [anon_sym_AT_LBRACK] = ACTIONS(2406), - [sym___double_quote] = ACTIONS(2406), - [sym___single_quote] = ACTIONS(2406), - [sym___c_double_quote] = ACTIONS(2406), - [sym___c_single_quote] = ACTIONS(2406), - [sym___r_double_quote] = ACTIONS(2406), - [sym___r_single_quote] = ACTIONS(2406), - }, - [987] = { - [sym_else_branch] = STATE(1026), - [ts_builtin_sym_end] = ACTIONS(2398), - [sym_identifier] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_CR] = ACTIONS(2400), - [anon_sym_CR_LF] = ACTIONS(2400), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(2400), - [anon_sym_const] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym___global] = ACTIONS(2400), - [anon_sym_type] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PERCENT] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_EQ_EQ] = ACTIONS(2400), - [anon_sym_BANG_EQ] = ACTIONS(2400), - [anon_sym_LT_EQ] = ACTIONS(2400), - [anon_sym_GT_EQ] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_union] = ACTIONS(2400), - [anon_sym_pub] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_enum] = ACTIONS(2400), - [anon_sym_interface] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2400), - [anon_sym_DASH_DASH] = ACTIONS(2400), - [anon_sym_QMARK] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_go] = ACTIONS(2400), - [anon_sym_spawn] = ACTIONS(2400), - [anon_sym_json_DOTdecode] = ACTIONS(2400), - [anon_sym_LBRACK2] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_LT_DASH] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(2400), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2400), - [anon_sym_AMP_CARET] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_or] = ACTIONS(2400), - [sym_none] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_nil] = ACTIONS(2400), - [anon_sym_QMARK_DOT] = ACTIONS(2400), - [anon_sym_POUND_LBRACK] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(3341), - [anon_sym_DOLLARif] = ACTIONS(2400), - [anon_sym_is] = ACTIONS(2400), - [anon_sym_BANGis] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_BANGin] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_select] = ACTIONS(2400), - [anon_sym_lock] = ACTIONS(2400), - [anon_sym_rlock] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_sql] = ACTIONS(2400), - [sym_int_literal] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - [sym_rune_literal] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2400), - [anon_sym_chan] = ACTIONS(2400), - [anon_sym_thread] = ACTIONS(2400), - [anon_sym_atomic] = ACTIONS(2400), - [anon_sym_assert] = ACTIONS(2400), - [anon_sym_defer] = ACTIONS(2400), - [anon_sym_goto] = ACTIONS(2400), - [anon_sym_break] = ACTIONS(2400), - [anon_sym_continue] = ACTIONS(2400), - [anon_sym_return] = ACTIONS(2400), - [anon_sym_DOLLARfor] = ACTIONS(2400), - [anon_sym_for] = ACTIONS(2400), - [anon_sym_POUND] = ACTIONS(2400), - [anon_sym_asm] = ACTIONS(2400), - [anon_sym_AT_LBRACK] = ACTIONS(2400), - [sym___double_quote] = ACTIONS(2400), - [sym___single_quote] = ACTIONS(2400), - [sym___c_double_quote] = ACTIONS(2400), - [sym___c_single_quote] = ACTIONS(2400), - [sym___r_double_quote] = ACTIONS(2400), - [sym___r_single_quote] = ACTIONS(2400), - }, - [988] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_GT] = ACTIONS(3319), - [anon_sym_EQ_EQ] = ACTIONS(3319), - [anon_sym_BANG_EQ] = ACTIONS(3319), - [anon_sym_LT_EQ] = ACTIONS(3319), - [anon_sym_GT_EQ] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3325), - [anon_sym_BANGin] = ACTIONS(3327), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [989] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [990] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_const] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2076), - [anon_sym_type] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_union] = ACTIONS(2076), - [anon_sym_pub] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_enum] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [anon_sym_assert] = ACTIONS(2076), - [anon_sym_defer] = ACTIONS(2076), - [anon_sym_goto] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_DOLLARfor] = ACTIONS(2076), - [anon_sym_for] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2076), - [anon_sym_asm] = ACTIONS(2076), - [anon_sym_AT_LBRACK] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [991] = { - [sym_type_parameters] = STATE(4389), - [sym_argument_list] = STATE(1051), - [sym_or_block] = STATE(1050), - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2112), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_CR] = ACTIONS(2112), - [anon_sym_CR_LF] = ACTIONS(2112), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3229), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_const] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym___global] = ACTIONS(2112), - [anon_sym_type] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(3315), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_STAR] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_PERCENT] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_union] = ACTIONS(2112), - [anon_sym_pub] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_enum] = ACTIONS(2112), - [anon_sym_interface] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2112), - [anon_sym_LBRACK2] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(3315), - [anon_sym_AMP] = ACTIONS(3317), - [anon_sym_LT_DASH] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(3317), - [anon_sym_GT_GT] = ACTIONS(3317), - [anon_sym_GT_GT_GT] = ACTIONS(3317), - [anon_sym_AMP_CARET] = ACTIONS(3317), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(3229), - [anon_sym_POUND_LBRACK] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - [sym_rune_literal] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2112), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [anon_sym_assert] = ACTIONS(2112), - [anon_sym_defer] = ACTIONS(2112), - [anon_sym_goto] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_DOLLARfor] = ACTIONS(2112), - [anon_sym_for] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2112), - [anon_sym_asm] = ACTIONS(2112), - [anon_sym_AT_LBRACK] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2112), - [sym___single_quote] = ACTIONS(2112), - [sym___c_double_quote] = ACTIONS(2112), - [sym___c_single_quote] = ACTIONS(2112), - [sym___r_double_quote] = ACTIONS(2112), - [sym___r_single_quote] = ACTIONS(2112), - }, - [992] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_DOLLARelse] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [993] = { - [ts_builtin_sym_end] = ACTIONS(2738), - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_const] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym___global] = ACTIONS(2740), - [anon_sym_type] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_union] = ACTIONS(2740), - [anon_sym_pub] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_enum] = ACTIONS(2740), - [anon_sym_interface] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_DOLLARelse] = ACTIONS(3343), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [anon_sym_assert] = ACTIONS(2740), - [anon_sym_defer] = ACTIONS(2740), - [anon_sym_goto] = ACTIONS(2740), - [anon_sym_break] = ACTIONS(2740), - [anon_sym_continue] = ACTIONS(2740), - [anon_sym_return] = ACTIONS(2740), - [anon_sym_DOLLARfor] = ACTIONS(2740), - [anon_sym_for] = ACTIONS(2740), - [anon_sym_POUND] = ACTIONS(2740), - [anon_sym_asm] = ACTIONS(2740), - [anon_sym_AT_LBRACK] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), - }, - [994] = { - [sym_type_parameters] = STATE(1077), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [995] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [996] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), - }, - [997] = { - [ts_builtin_sym_end] = ACTIONS(2732), - [sym_identifier] = ACTIONS(2734), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_CR] = ACTIONS(2734), - [anon_sym_CR_LF] = ACTIONS(2734), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2734), - [anon_sym_as] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_const] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym___global] = ACTIONS(2734), - [anon_sym_type] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_union] = ACTIONS(2734), - [anon_sym_pub] = ACTIONS(2734), - [anon_sym_mut] = ACTIONS(2734), - [anon_sym_enum] = ACTIONS(2734), - [anon_sym_interface] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_go] = ACTIONS(2734), - [anon_sym_spawn] = ACTIONS(2734), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [sym_none] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_nil] = ACTIONS(2734), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_DOLLARif] = ACTIONS(2734), - [anon_sym_DOLLARelse] = ACTIONS(3345), - [anon_sym_is] = ACTIONS(2734), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_select] = ACTIONS(2734), - [anon_sym_lock] = ACTIONS(2734), - [anon_sym_rlock] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_sql] = ACTIONS(2734), - [sym_int_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_shared] = ACTIONS(2734), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2734), - [anon_sym_thread] = ACTIONS(2734), - [anon_sym_atomic] = ACTIONS(2734), - [anon_sym_assert] = ACTIONS(2734), - [anon_sym_defer] = ACTIONS(2734), - [anon_sym_goto] = ACTIONS(2734), - [anon_sym_break] = ACTIONS(2734), - [anon_sym_continue] = ACTIONS(2734), - [anon_sym_return] = ACTIONS(2734), - [anon_sym_DOLLARfor] = ACTIONS(2734), - [anon_sym_for] = ACTIONS(2734), - [anon_sym_POUND] = ACTIONS(2734), - [anon_sym_asm] = ACTIONS(2734), - [anon_sym_AT_LBRACK] = ACTIONS(2734), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), - }, - [998] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_DOLLARelse] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), - }, - [999] = { - [ts_builtin_sym_end] = ACTIONS(2969), - [sym_identifier] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_CR] = ACTIONS(2971), - [anon_sym_CR_LF] = ACTIONS(2971), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_const] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym___global] = ACTIONS(2971), - [anon_sym_type] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(2971), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_enum] = ACTIONS(2971), - [anon_sym_interface] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [anon_sym_assert] = ACTIONS(2971), - [anon_sym_defer] = ACTIONS(2971), - [anon_sym_goto] = ACTIONS(2971), - [anon_sym_break] = ACTIONS(2971), - [anon_sym_continue] = ACTIONS(2971), - [anon_sym_return] = ACTIONS(2971), - [anon_sym_DOLLARfor] = ACTIONS(2971), - [anon_sym_for] = ACTIONS(2971), - [anon_sym_POUND] = ACTIONS(2971), - [anon_sym_asm] = ACTIONS(2971), - [anon_sym_AT_LBRACK] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2971), - [sym___single_quote] = ACTIONS(2971), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2971), - [sym___r_double_quote] = ACTIONS(2971), - [sym___r_single_quote] = ACTIONS(2971), - }, - [1000] = { - [ts_builtin_sym_end] = ACTIONS(2830), - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_const] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym___global] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_union] = ACTIONS(2832), - [anon_sym_pub] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_enum] = ACTIONS(2832), - [anon_sym_interface] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [anon_sym_assert] = ACTIONS(2832), - [anon_sym_defer] = ACTIONS(2832), - [anon_sym_goto] = ACTIONS(2832), - [anon_sym_break] = ACTIONS(2832), - [anon_sym_continue] = ACTIONS(2832), - [anon_sym_return] = ACTIONS(2832), - [anon_sym_DOLLARfor] = ACTIONS(2832), - [anon_sym_for] = ACTIONS(2832), - [anon_sym_POUND] = ACTIONS(2832), - [anon_sym_asm] = ACTIONS(2832), - [anon_sym_AT_LBRACK] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), - }, - [1001] = { - [ts_builtin_sym_end] = ACTIONS(3019), - [sym_identifier] = ACTIONS(3021), - [anon_sym_LF] = ACTIONS(3021), - [anon_sym_CR] = ACTIONS(3021), - [anon_sym_CR_LF] = ACTIONS(3021), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_const] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym___global] = ACTIONS(3021), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_EQ_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3021), - [anon_sym_GT_EQ] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_union] = ACTIONS(3021), - [anon_sym_pub] = ACTIONS(3021), - [anon_sym_mut] = ACTIONS(3021), - [anon_sym_enum] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(3021), - [anon_sym_spawn] = ACTIONS(3021), - [anon_sym_json_DOTdecode] = ACTIONS(3021), - [anon_sym_LBRACK2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3021), - [anon_sym_GT_GT] = ACTIONS(3021), - [anon_sym_GT_GT_GT] = ACTIONS(3021), - [anon_sym_AMP_CARET] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_or] = ACTIONS(3021), - [sym_none] = ACTIONS(3021), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_nil] = ACTIONS(3021), - [anon_sym_QMARK_DOT] = ACTIONS(3021), - [anon_sym_POUND_LBRACK] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_DOLLARif] = ACTIONS(3021), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_BANGis] = ACTIONS(3021), - [anon_sym_in] = ACTIONS(3021), - [anon_sym_BANGin] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_select] = ACTIONS(3021), - [anon_sym_lock] = ACTIONS(3021), - [anon_sym_rlock] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_sql] = ACTIONS(3021), - [sym_int_literal] = ACTIONS(3021), - [sym_float_literal] = ACTIONS(3021), - [sym_rune_literal] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_shared] = ACTIONS(3021), - [anon_sym_map_LBRACK] = ACTIONS(3021), - [anon_sym_chan] = ACTIONS(3021), - [anon_sym_thread] = ACTIONS(3021), - [anon_sym_atomic] = ACTIONS(3021), - [anon_sym_assert] = ACTIONS(3021), - [anon_sym_defer] = ACTIONS(3021), - [anon_sym_goto] = ACTIONS(3021), - [anon_sym_break] = ACTIONS(3021), - [anon_sym_continue] = ACTIONS(3021), - [anon_sym_return] = ACTIONS(3021), - [anon_sym_DOLLARfor] = ACTIONS(3021), - [anon_sym_for] = ACTIONS(3021), - [anon_sym_POUND] = ACTIONS(3021), - [anon_sym_asm] = ACTIONS(3021), - [anon_sym_AT_LBRACK] = ACTIONS(3021), - [sym___double_quote] = ACTIONS(3021), - [sym___single_quote] = ACTIONS(3021), - [sym___c_double_quote] = ACTIONS(3021), - [sym___c_single_quote] = ACTIONS(3021), - [sym___r_double_quote] = ACTIONS(3021), - [sym___r_single_quote] = ACTIONS(3021), - }, - [1002] = { - [ts_builtin_sym_end] = ACTIONS(3023), - [sym_identifier] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_CR] = ACTIONS(3025), - [anon_sym_CR_LF] = ACTIONS(3025), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_const] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym___global] = ACTIONS(3025), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_union] = ACTIONS(3025), - [anon_sym_pub] = ACTIONS(3025), - [anon_sym_mut] = ACTIONS(3025), - [anon_sym_enum] = ACTIONS(3025), - [anon_sym_interface] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3025), - [anon_sym_spawn] = ACTIONS(3025), - [anon_sym_json_DOTdecode] = ACTIONS(3025), - [anon_sym_LBRACK2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_GT_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_CARET] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_or] = ACTIONS(3025), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_QMARK_DOT] = ACTIONS(3025), - [anon_sym_POUND_LBRACK] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_DOLLARif] = ACTIONS(3025), - [anon_sym_is] = ACTIONS(3025), - [anon_sym_BANGis] = ACTIONS(3025), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_select] = ACTIONS(3025), - [anon_sym_lock] = ACTIONS(3025), - [anon_sym_rlock] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_sql] = ACTIONS(3025), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3025), - [sym_rune_literal] = ACTIONS(3025), - [anon_sym_AT] = ACTIONS(3025), - [anon_sym_shared] = ACTIONS(3025), - [anon_sym_map_LBRACK] = ACTIONS(3025), - [anon_sym_chan] = ACTIONS(3025), - [anon_sym_thread] = ACTIONS(3025), - [anon_sym_atomic] = ACTIONS(3025), - [anon_sym_assert] = ACTIONS(3025), - [anon_sym_defer] = ACTIONS(3025), - [anon_sym_goto] = ACTIONS(3025), - [anon_sym_break] = ACTIONS(3025), - [anon_sym_continue] = ACTIONS(3025), - [anon_sym_return] = ACTIONS(3025), - [anon_sym_DOLLARfor] = ACTIONS(3025), - [anon_sym_for] = ACTIONS(3025), - [anon_sym_POUND] = ACTIONS(3025), - [anon_sym_asm] = ACTIONS(3025), - [anon_sym_AT_LBRACK] = ACTIONS(3025), - [sym___double_quote] = ACTIONS(3025), - [sym___single_quote] = ACTIONS(3025), - [sym___c_double_quote] = ACTIONS(3025), - [sym___c_single_quote] = ACTIONS(3025), - [sym___r_double_quote] = ACTIONS(3025), - [sym___r_single_quote] = ACTIONS(3025), - }, - [1003] = { - [ts_builtin_sym_end] = ACTIONS(2929), - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_const] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym___global] = ACTIONS(2931), - [anon_sym_type] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_union] = ACTIONS(2931), - [anon_sym_pub] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_enum] = ACTIONS(2931), - [anon_sym_interface] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [anon_sym_assert] = ACTIONS(2931), - [anon_sym_defer] = ACTIONS(2931), - [anon_sym_goto] = ACTIONS(2931), - [anon_sym_break] = ACTIONS(2931), - [anon_sym_continue] = ACTIONS(2931), - [anon_sym_return] = ACTIONS(2931), - [anon_sym_DOLLARfor] = ACTIONS(2931), - [anon_sym_for] = ACTIONS(2931), - [anon_sym_POUND] = ACTIONS(2931), - [anon_sym_asm] = ACTIONS(2931), - [anon_sym_AT_LBRACK] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), - }, - [1004] = { - [ts_builtin_sym_end] = ACTIONS(3191), - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym___global] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_union] = ACTIONS(3193), - [anon_sym_pub] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [anon_sym_assert] = ACTIONS(3193), - [anon_sym_defer] = ACTIONS(3193), - [anon_sym_goto] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_DOLLARfor] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_POUND] = ACTIONS(3193), - [anon_sym_asm] = ACTIONS(3193), - [anon_sym_AT_LBRACK] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), - }, - [1005] = { - [ts_builtin_sym_end] = ACTIONS(2846), - [sym_identifier] = ACTIONS(2848), - [anon_sym_LF] = ACTIONS(2848), - [anon_sym_CR] = ACTIONS(2848), - [anon_sym_CR_LF] = ACTIONS(2848), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_const] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym___global] = ACTIONS(2848), - [anon_sym_type] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_union] = ACTIONS(2848), - [anon_sym_pub] = ACTIONS(2848), - [anon_sym_mut] = ACTIONS(2848), - [anon_sym_enum] = ACTIONS(2848), - [anon_sym_interface] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_go] = ACTIONS(2848), - [anon_sym_spawn] = ACTIONS(2848), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2848), - [sym_none] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_nil] = ACTIONS(2848), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_DOLLARif] = ACTIONS(2848), - [anon_sym_is] = ACTIONS(2848), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2848), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_select] = ACTIONS(2848), - [anon_sym_lock] = ACTIONS(2848), - [anon_sym_rlock] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_sql] = ACTIONS(2848), - [sym_int_literal] = ACTIONS(2848), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_shared] = ACTIONS(2848), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2848), - [anon_sym_thread] = ACTIONS(2848), - [anon_sym_atomic] = ACTIONS(2848), - [anon_sym_assert] = ACTIONS(2848), - [anon_sym_defer] = ACTIONS(2848), - [anon_sym_goto] = ACTIONS(2848), - [anon_sym_break] = ACTIONS(2848), - [anon_sym_continue] = ACTIONS(2848), - [anon_sym_return] = ACTIONS(2848), - [anon_sym_DOLLARfor] = ACTIONS(2848), - [anon_sym_for] = ACTIONS(2848), - [anon_sym_POUND] = ACTIONS(2848), - [anon_sym_asm] = ACTIONS(2848), - [anon_sym_AT_LBRACK] = ACTIONS(2848), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), - }, - [1006] = { - [ts_builtin_sym_end] = ACTIONS(3015), - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_const] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym___global] = ACTIONS(3017), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_EQ] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_union] = ACTIONS(3017), - [anon_sym_pub] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_enum] = ACTIONS(3017), - [anon_sym_interface] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_GT_GT_GT] = ACTIONS(3017), - [anon_sym_AMP_CARET] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_or] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [anon_sym_assert] = ACTIONS(3017), - [anon_sym_defer] = ACTIONS(3017), - [anon_sym_goto] = ACTIONS(3017), - [anon_sym_break] = ACTIONS(3017), - [anon_sym_continue] = ACTIONS(3017), - [anon_sym_return] = ACTIONS(3017), - [anon_sym_DOLLARfor] = ACTIONS(3017), - [anon_sym_for] = ACTIONS(3017), - [anon_sym_POUND] = ACTIONS(3017), - [anon_sym_asm] = ACTIONS(3017), - [anon_sym_AT_LBRACK] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3017), - [sym___single_quote] = ACTIONS(3017), - [sym___c_double_quote] = ACTIONS(3017), - [sym___c_single_quote] = ACTIONS(3017), - [sym___r_double_quote] = ACTIONS(3017), - [sym___r_single_quote] = ACTIONS(3017), - }, - [1007] = { - [ts_builtin_sym_end] = ACTIONS(3011), - [sym_identifier] = ACTIONS(3013), - [anon_sym_LF] = ACTIONS(3013), - [anon_sym_CR] = ACTIONS(3013), - [anon_sym_CR_LF] = ACTIONS(3013), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_const] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym___global] = ACTIONS(3013), - [anon_sym_type] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_union] = ACTIONS(3013), - [anon_sym_pub] = ACTIONS(3013), - [anon_sym_mut] = ACTIONS(3013), - [anon_sym_enum] = ACTIONS(3013), - [anon_sym_interface] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3013), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_LBRACK2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3013), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3013), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_select] = ACTIONS(3013), - [anon_sym_lock] = ACTIONS(3013), - [anon_sym_rlock] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_sql] = ACTIONS(3013), - [sym_int_literal] = ACTIONS(3013), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_shared] = ACTIONS(3013), - [anon_sym_map_LBRACK] = ACTIONS(3013), - [anon_sym_chan] = ACTIONS(3013), - [anon_sym_thread] = ACTIONS(3013), - [anon_sym_atomic] = ACTIONS(3013), - [anon_sym_assert] = ACTIONS(3013), - [anon_sym_defer] = ACTIONS(3013), - [anon_sym_goto] = ACTIONS(3013), - [anon_sym_break] = ACTIONS(3013), - [anon_sym_continue] = ACTIONS(3013), - [anon_sym_return] = ACTIONS(3013), - [anon_sym_DOLLARfor] = ACTIONS(3013), - [anon_sym_for] = ACTIONS(3013), - [anon_sym_POUND] = ACTIONS(3013), - [anon_sym_asm] = ACTIONS(3013), - [anon_sym_AT_LBRACK] = ACTIONS(3013), - [sym___double_quote] = ACTIONS(3013), - [sym___single_quote] = ACTIONS(3013), - [sym___c_double_quote] = ACTIONS(3013), - [sym___c_single_quote] = ACTIONS(3013), - [sym___r_double_quote] = ACTIONS(3013), - [sym___r_single_quote] = ACTIONS(3013), - }, - [1008] = { - [ts_builtin_sym_end] = ACTIONS(2921), - [sym_identifier] = ACTIONS(2923), - [anon_sym_LF] = ACTIONS(2923), - [anon_sym_CR] = ACTIONS(2923), - [anon_sym_CR_LF] = ACTIONS(2923), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_as] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2923), - [anon_sym_const] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym___global] = ACTIONS(2923), - [anon_sym_type] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_PERCENT] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_EQ_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_EQ] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_union] = ACTIONS(2923), - [anon_sym_pub] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_enum] = ACTIONS(2923), - [anon_sym_interface] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_go] = ACTIONS(2923), - [anon_sym_spawn] = ACTIONS(2923), - [anon_sym_json_DOTdecode] = ACTIONS(2923), - [anon_sym_LBRACK2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_CARET] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2923), - [anon_sym_LT_LT] = ACTIONS(2923), - [anon_sym_GT_GT] = ACTIONS(2923), - [anon_sym_GT_GT_GT] = ACTIONS(2923), - [anon_sym_AMP_CARET] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_nil] = ACTIONS(2923), - [anon_sym_QMARK_DOT] = ACTIONS(2923), - [anon_sym_POUND_LBRACK] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_DOLLARif] = ACTIONS(2923), - [anon_sym_is] = ACTIONS(2923), - [anon_sym_BANGis] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_BANGin] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_select] = ACTIONS(2923), - [anon_sym_lock] = ACTIONS(2923), - [anon_sym_rlock] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_sql] = ACTIONS(2923), - [sym_int_literal] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2923), - [sym_rune_literal] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_shared] = ACTIONS(2923), - [anon_sym_map_LBRACK] = ACTIONS(2923), - [anon_sym_chan] = ACTIONS(2923), - [anon_sym_thread] = ACTIONS(2923), - [anon_sym_atomic] = ACTIONS(2923), - [anon_sym_assert] = ACTIONS(2923), - [anon_sym_defer] = ACTIONS(2923), - [anon_sym_goto] = ACTIONS(2923), - [anon_sym_break] = ACTIONS(2923), - [anon_sym_continue] = ACTIONS(2923), - [anon_sym_return] = ACTIONS(2923), - [anon_sym_DOLLARfor] = ACTIONS(2923), - [anon_sym_for] = ACTIONS(2923), - [anon_sym_POUND] = ACTIONS(2923), - [anon_sym_asm] = ACTIONS(2923), - [anon_sym_AT_LBRACK] = ACTIONS(2923), - [sym___double_quote] = ACTIONS(2923), - [sym___single_quote] = ACTIONS(2923), - [sym___c_double_quote] = ACTIONS(2923), - [sym___c_single_quote] = ACTIONS(2923), - [sym___r_double_quote] = ACTIONS(2923), - [sym___r_single_quote] = ACTIONS(2923), - }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(2866), - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_const] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym___global] = ACTIONS(2868), - [anon_sym_type] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_union] = ACTIONS(2868), - [anon_sym_pub] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_enum] = ACTIONS(2868), - [anon_sym_interface] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [anon_sym_assert] = ACTIONS(2868), - [anon_sym_defer] = ACTIONS(2868), - [anon_sym_goto] = ACTIONS(2868), - [anon_sym_break] = ACTIONS(2868), - [anon_sym_continue] = ACTIONS(2868), - [anon_sym_return] = ACTIONS(2868), - [anon_sym_DOLLARfor] = ACTIONS(2868), - [anon_sym_for] = ACTIONS(2868), - [anon_sym_POUND] = ACTIONS(2868), - [anon_sym_asm] = ACTIONS(2868), - [anon_sym_AT_LBRACK] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), - }, - [1010] = { - [ts_builtin_sym_end] = ACTIONS(2850), - [sym_identifier] = ACTIONS(2852), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_CR] = ACTIONS(2852), - [anon_sym_CR_LF] = ACTIONS(2852), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_const] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym___global] = ACTIONS(2852), - [anon_sym_type] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PERCENT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_union] = ACTIONS(2852), - [anon_sym_pub] = ACTIONS(2852), - [anon_sym_mut] = ACTIONS(2852), - [anon_sym_enum] = ACTIONS(2852), - [anon_sym_interface] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_go] = ACTIONS(2852), - [anon_sym_spawn] = ACTIONS(2852), - [anon_sym_json_DOTdecode] = ACTIONS(2852), - [anon_sym_LBRACK2] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2852), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_CARET] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_nil] = ACTIONS(2852), - [anon_sym_QMARK_DOT] = ACTIONS(2852), - [anon_sym_POUND_LBRACK] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_DOLLARif] = ACTIONS(2852), - [anon_sym_is] = ACTIONS(2852), - [anon_sym_BANGis] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2852), - [anon_sym_BANGin] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_select] = ACTIONS(2852), - [anon_sym_lock] = ACTIONS(2852), - [anon_sym_rlock] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_sql] = ACTIONS(2852), - [sym_int_literal] = ACTIONS(2852), - [sym_float_literal] = ACTIONS(2852), - [sym_rune_literal] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_shared] = ACTIONS(2852), - [anon_sym_map_LBRACK] = ACTIONS(2852), - [anon_sym_chan] = ACTIONS(2852), - [anon_sym_thread] = ACTIONS(2852), - [anon_sym_atomic] = ACTIONS(2852), - [anon_sym_assert] = ACTIONS(2852), - [anon_sym_defer] = ACTIONS(2852), - [anon_sym_goto] = ACTIONS(2852), - [anon_sym_break] = ACTIONS(2852), - [anon_sym_continue] = ACTIONS(2852), - [anon_sym_return] = ACTIONS(2852), - [anon_sym_DOLLARfor] = ACTIONS(2852), - [anon_sym_for] = ACTIONS(2852), - [anon_sym_POUND] = ACTIONS(2852), - [anon_sym_asm] = ACTIONS(2852), - [anon_sym_AT_LBRACK] = ACTIONS(2852), - [sym___double_quote] = ACTIONS(2852), - [sym___single_quote] = ACTIONS(2852), - [sym___c_double_quote] = ACTIONS(2852), - [sym___c_single_quote] = ACTIONS(2852), - [sym___r_double_quote] = ACTIONS(2852), - [sym___r_single_quote] = ACTIONS(2852), - }, - [1011] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [1012] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), - }, - [1013] = { - [ts_builtin_sym_end] = ACTIONS(2905), - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_const] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym___global] = ACTIONS(2907), - [anon_sym_type] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_union] = ACTIONS(2907), - [anon_sym_pub] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_enum] = ACTIONS(2907), - [anon_sym_interface] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [anon_sym_assert] = ACTIONS(2907), - [anon_sym_defer] = ACTIONS(2907), - [anon_sym_goto] = ACTIONS(2907), - [anon_sym_break] = ACTIONS(2907), - [anon_sym_continue] = ACTIONS(2907), - [anon_sym_return] = ACTIONS(2907), - [anon_sym_DOLLARfor] = ACTIONS(2907), - [anon_sym_for] = ACTIONS(2907), - [anon_sym_POUND] = ACTIONS(2907), - [anon_sym_asm] = ACTIONS(2907), - [anon_sym_AT_LBRACK] = ACTIONS(2907), - [sym___double_quote] = ACTIONS(2907), - [sym___single_quote] = ACTIONS(2907), - [sym___c_double_quote] = ACTIONS(2907), - [sym___c_single_quote] = ACTIONS(2907), - [sym___r_double_quote] = ACTIONS(2907), - [sym___r_single_quote] = ACTIONS(2907), - }, - [1014] = { - [ts_builtin_sym_end] = ACTIONS(2814), - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_const] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym___global] = ACTIONS(2816), - [anon_sym_type] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_union] = ACTIONS(2816), - [anon_sym_pub] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2816), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [anon_sym_assert] = ACTIONS(2816), - [anon_sym_defer] = ACTIONS(2816), - [anon_sym_goto] = ACTIONS(2816), - [anon_sym_break] = ACTIONS(2816), - [anon_sym_continue] = ACTIONS(2816), - [anon_sym_return] = ACTIONS(2816), - [anon_sym_DOLLARfor] = ACTIONS(2816), - [anon_sym_for] = ACTIONS(2816), - [anon_sym_POUND] = ACTIONS(2816), - [anon_sym_asm] = ACTIONS(2816), - [anon_sym_AT_LBRACK] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), - }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(2802), - [sym_identifier] = ACTIONS(2804), - [anon_sym_LF] = ACTIONS(2804), - [anon_sym_CR] = ACTIONS(2804), - [anon_sym_CR_LF] = ACTIONS(2804), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_const] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym___global] = ACTIONS(2804), - [anon_sym_type] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_union] = ACTIONS(2804), - [anon_sym_pub] = ACTIONS(2804), - [anon_sym_mut] = ACTIONS(2804), - [anon_sym_enum] = ACTIONS(2804), - [anon_sym_interface] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_go] = ACTIONS(2804), - [anon_sym_spawn] = ACTIONS(2804), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2804), - [sym_none] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_nil] = ACTIONS(2804), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_DOLLARif] = ACTIONS(2804), - [anon_sym_is] = ACTIONS(2804), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2804), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_select] = ACTIONS(2804), - [anon_sym_lock] = ACTIONS(2804), - [anon_sym_rlock] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_sql] = ACTIONS(2804), - [sym_int_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_shared] = ACTIONS(2804), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2804), - [anon_sym_atomic] = ACTIONS(2804), - [anon_sym_assert] = ACTIONS(2804), - [anon_sym_defer] = ACTIONS(2804), - [anon_sym_goto] = ACTIONS(2804), - [anon_sym_break] = ACTIONS(2804), - [anon_sym_continue] = ACTIONS(2804), - [anon_sym_return] = ACTIONS(2804), - [anon_sym_DOLLARfor] = ACTIONS(2804), - [anon_sym_for] = ACTIONS(2804), - [anon_sym_POUND] = ACTIONS(2804), - [anon_sym_asm] = ACTIONS(2804), - [anon_sym_AT_LBRACK] = ACTIONS(2804), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), - }, - [1016] = { - [ts_builtin_sym_end] = ACTIONS(2897), - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2899), - [anon_sym_const] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym___global] = ACTIONS(2899), - [anon_sym_type] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_LT_EQ] = ACTIONS(2899), - [anon_sym_GT_EQ] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_union] = ACTIONS(2899), - [anon_sym_pub] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_enum] = ACTIONS(2899), - [anon_sym_interface] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_CARET] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - [sym_rune_literal] = ACTIONS(2899), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [anon_sym_assert] = ACTIONS(2899), - [anon_sym_defer] = ACTIONS(2899), - [anon_sym_goto] = ACTIONS(2899), - [anon_sym_break] = ACTIONS(2899), - [anon_sym_continue] = ACTIONS(2899), - [anon_sym_return] = ACTIONS(2899), - [anon_sym_DOLLARfor] = ACTIONS(2899), - [anon_sym_for] = ACTIONS(2899), - [anon_sym_POUND] = ACTIONS(2899), - [anon_sym_asm] = ACTIONS(2899), - [anon_sym_AT_LBRACK] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2899), - [sym___single_quote] = ACTIONS(2899), - [sym___c_double_quote] = ACTIONS(2899), - [sym___c_single_quote] = ACTIONS(2899), - [sym___r_double_quote] = ACTIONS(2899), - [sym___r_single_quote] = ACTIONS(2899), - }, - [1017] = { - [ts_builtin_sym_end] = ACTIONS(2874), - [sym_identifier] = ACTIONS(2876), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_CR] = ACTIONS(2876), - [anon_sym_CR_LF] = ACTIONS(2876), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym___global] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PERCENT] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_union] = ACTIONS(2876), - [anon_sym_pub] = ACTIONS(2876), - [anon_sym_mut] = ACTIONS(2876), - [anon_sym_enum] = ACTIONS(2876), - [anon_sym_interface] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_QMARK] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_go] = ACTIONS(2876), - [anon_sym_spawn] = ACTIONS(2876), - [anon_sym_json_DOTdecode] = ACTIONS(2876), - [anon_sym_LBRACK2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2876), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_CARET] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2876), - [sym_none] = ACTIONS(2876), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_nil] = ACTIONS(2876), - [anon_sym_QMARK_DOT] = ACTIONS(2876), - [anon_sym_POUND_LBRACK] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_DOLLARif] = ACTIONS(2876), - [anon_sym_is] = ACTIONS(2876), - [anon_sym_BANGis] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_BANGin] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_select] = ACTIONS(2876), - [anon_sym_lock] = ACTIONS(2876), - [anon_sym_rlock] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_sql] = ACTIONS(2876), - [sym_int_literal] = ACTIONS(2876), - [sym_float_literal] = ACTIONS(2876), - [sym_rune_literal] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_shared] = ACTIONS(2876), - [anon_sym_map_LBRACK] = ACTIONS(2876), - [anon_sym_chan] = ACTIONS(2876), - [anon_sym_thread] = ACTIONS(2876), - [anon_sym_atomic] = ACTIONS(2876), - [anon_sym_assert] = ACTIONS(2876), - [anon_sym_defer] = ACTIONS(2876), - [anon_sym_goto] = ACTIONS(2876), - [anon_sym_break] = ACTIONS(2876), - [anon_sym_continue] = ACTIONS(2876), - [anon_sym_return] = ACTIONS(2876), - [anon_sym_DOLLARfor] = ACTIONS(2876), - [anon_sym_for] = ACTIONS(2876), - [anon_sym_POUND] = ACTIONS(2876), - [anon_sym_asm] = ACTIONS(2876), - [anon_sym_AT_LBRACK] = ACTIONS(2876), - [sym___double_quote] = ACTIONS(2876), - [sym___single_quote] = ACTIONS(2876), - [sym___c_double_quote] = ACTIONS(2876), - [sym___c_single_quote] = ACTIONS(2876), - [sym___r_double_quote] = ACTIONS(2876), - [sym___r_single_quote] = ACTIONS(2876), - }, - [1018] = { - [ts_builtin_sym_end] = ACTIONS(3135), - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym___global] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_pub] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), - }, - [1019] = { - [ts_builtin_sym_end] = ACTIONS(2870), - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_const] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym___global] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_union] = ACTIONS(2872), - [anon_sym_pub] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_enum] = ACTIONS(2872), - [anon_sym_interface] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [anon_sym_assert] = ACTIONS(2872), - [anon_sym_defer] = ACTIONS(2872), - [anon_sym_goto] = ACTIONS(2872), - [anon_sym_break] = ACTIONS(2872), - [anon_sym_continue] = ACTIONS(2872), - [anon_sym_return] = ACTIONS(2872), - [anon_sym_DOLLARfor] = ACTIONS(2872), - [anon_sym_for] = ACTIONS(2872), - [anon_sym_POUND] = ACTIONS(2872), - [anon_sym_asm] = ACTIONS(2872), - [anon_sym_AT_LBRACK] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), - }, - [1020] = { - [ts_builtin_sym_end] = ACTIONS(2798), - [sym_identifier] = ACTIONS(2800), - [anon_sym_LF] = ACTIONS(2800), - [anon_sym_CR] = ACTIONS(2800), - [anon_sym_CR_LF] = ACTIONS(2800), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_as] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_const] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym___global] = ACTIONS(2800), - [anon_sym_type] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_union] = ACTIONS(2800), - [anon_sym_pub] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_enum] = ACTIONS(2800), - [anon_sym_interface] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_go] = ACTIONS(2800), - [anon_sym_spawn] = ACTIONS(2800), - [anon_sym_json_DOTdecode] = ACTIONS(2800), - [anon_sym_LBRACK2] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_LT_DASH] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2800), - [anon_sym_AMP_CARET] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2800), - [sym_none] = ACTIONS(2800), - [sym_true] = ACTIONS(2800), - [sym_false] = ACTIONS(2800), - [sym_nil] = ACTIONS(2800), - [anon_sym_QMARK_DOT] = ACTIONS(2800), - [anon_sym_POUND_LBRACK] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_DOLLARif] = ACTIONS(2800), - [anon_sym_is] = ACTIONS(2800), - [anon_sym_BANGis] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2800), - [anon_sym_BANGin] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_select] = ACTIONS(2800), - [anon_sym_lock] = ACTIONS(2800), - [anon_sym_rlock] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_sql] = ACTIONS(2800), - [sym_int_literal] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2800), - [sym_rune_literal] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_shared] = ACTIONS(2800), - [anon_sym_map_LBRACK] = ACTIONS(2800), - [anon_sym_chan] = ACTIONS(2800), - [anon_sym_thread] = ACTIONS(2800), - [anon_sym_atomic] = ACTIONS(2800), - [anon_sym_assert] = ACTIONS(2800), - [anon_sym_defer] = ACTIONS(2800), - [anon_sym_goto] = ACTIONS(2800), - [anon_sym_break] = ACTIONS(2800), - [anon_sym_continue] = ACTIONS(2800), - [anon_sym_return] = ACTIONS(2800), - [anon_sym_DOLLARfor] = ACTIONS(2800), - [anon_sym_for] = ACTIONS(2800), - [anon_sym_POUND] = ACTIONS(2800), - [anon_sym_asm] = ACTIONS(2800), - [anon_sym_AT_LBRACK] = ACTIONS(2800), - [sym___double_quote] = ACTIONS(2800), - [sym___single_quote] = ACTIONS(2800), - [sym___c_double_quote] = ACTIONS(2800), - [sym___c_single_quote] = ACTIONS(2800), - [sym___r_double_quote] = ACTIONS(2800), - [sym___r_single_quote] = ACTIONS(2800), - }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(3143), - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_const] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym___global] = ACTIONS(3145), - [anon_sym_type] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_union] = ACTIONS(3145), - [anon_sym_pub] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_enum] = ACTIONS(3145), - [anon_sym_interface] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [anon_sym_assert] = ACTIONS(3145), - [anon_sym_defer] = ACTIONS(3145), - [anon_sym_goto] = ACTIONS(3145), - [anon_sym_break] = ACTIONS(3145), - [anon_sym_continue] = ACTIONS(3145), - [anon_sym_return] = ACTIONS(3145), - [anon_sym_DOLLARfor] = ACTIONS(3145), - [anon_sym_for] = ACTIONS(3145), - [anon_sym_POUND] = ACTIONS(3145), - [anon_sym_asm] = ACTIONS(3145), - [anon_sym_AT_LBRACK] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), - }, - [1022] = { - [ts_builtin_sym_end] = ACTIONS(3067), - [sym_identifier] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3069), - [anon_sym_CR] = ACTIONS(3069), - [anon_sym_CR_LF] = ACTIONS(3069), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_const] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3069), - [anon_sym___global] = ACTIONS(3069), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_union] = ACTIONS(3069), - [anon_sym_pub] = ACTIONS(3069), - [anon_sym_mut] = ACTIONS(3069), - [anon_sym_enum] = ACTIONS(3069), - [anon_sym_interface] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3069), - [anon_sym_json_DOTdecode] = ACTIONS(3069), - [anon_sym_LBRACK2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_GT_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_CARET] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [sym_none] = ACTIONS(3069), - [sym_true] = ACTIONS(3069), - [sym_false] = ACTIONS(3069), - [sym_nil] = ACTIONS(3069), - [anon_sym_QMARK_DOT] = ACTIONS(3069), - [anon_sym_POUND_LBRACK] = ACTIONS(3069), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_DOLLARif] = ACTIONS(3069), - [anon_sym_is] = ACTIONS(3069), - [anon_sym_BANGis] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_BANGin] = ACTIONS(3069), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_select] = ACTIONS(3069), - [anon_sym_lock] = ACTIONS(3069), - [anon_sym_rlock] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_sql] = ACTIONS(3069), - [sym_int_literal] = ACTIONS(3069), - [sym_float_literal] = ACTIONS(3069), - [sym_rune_literal] = ACTIONS(3069), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_shared] = ACTIONS(3069), - [anon_sym_map_LBRACK] = ACTIONS(3069), - [anon_sym_chan] = ACTIONS(3069), - [anon_sym_thread] = ACTIONS(3069), - [anon_sym_atomic] = ACTIONS(3069), - [anon_sym_assert] = ACTIONS(3069), - [anon_sym_defer] = ACTIONS(3069), - [anon_sym_goto] = ACTIONS(3069), - [anon_sym_break] = ACTIONS(3069), - [anon_sym_continue] = ACTIONS(3069), - [anon_sym_return] = ACTIONS(3069), - [anon_sym_DOLLARfor] = ACTIONS(3069), - [anon_sym_for] = ACTIONS(3069), - [anon_sym_POUND] = ACTIONS(3069), - [anon_sym_asm] = ACTIONS(3069), - [anon_sym_AT_LBRACK] = ACTIONS(3069), - [sym___double_quote] = ACTIONS(3069), - [sym___single_quote] = ACTIONS(3069), - [sym___c_double_quote] = ACTIONS(3069), - [sym___c_single_quote] = ACTIONS(3069), - [sym___r_double_quote] = ACTIONS(3069), - [sym___r_single_quote] = ACTIONS(3069), - }, - [1023] = { - [ts_builtin_sym_end] = ACTIONS(2983), - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_const] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym___global] = ACTIONS(2985), - [anon_sym_type] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_union] = ACTIONS(2985), - [anon_sym_pub] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2985), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [anon_sym_assert] = ACTIONS(2985), - [anon_sym_defer] = ACTIONS(2985), - [anon_sym_goto] = ACTIONS(2985), - [anon_sym_break] = ACTIONS(2985), - [anon_sym_continue] = ACTIONS(2985), - [anon_sym_return] = ACTIONS(2985), - [anon_sym_DOLLARfor] = ACTIONS(2985), - [anon_sym_for] = ACTIONS(2985), - [anon_sym_POUND] = ACTIONS(2985), - [anon_sym_asm] = ACTIONS(2985), - [anon_sym_AT_LBRACK] = ACTIONS(2985), - [sym___double_quote] = ACTIONS(2985), - [sym___single_quote] = ACTIONS(2985), - [sym___c_double_quote] = ACTIONS(2985), - [sym___c_single_quote] = ACTIONS(2985), - [sym___r_double_quote] = ACTIONS(2985), - [sym___r_single_quote] = ACTIONS(2985), - }, - [1024] = { - [ts_builtin_sym_end] = ACTIONS(2979), - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_const] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym___global] = ACTIONS(2981), - [anon_sym_type] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_union] = ACTIONS(2981), - [anon_sym_pub] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_enum] = ACTIONS(2981), - [anon_sym_interface] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [anon_sym_assert] = ACTIONS(2981), - [anon_sym_defer] = ACTIONS(2981), - [anon_sym_goto] = ACTIONS(2981), - [anon_sym_break] = ACTIONS(2981), - [anon_sym_continue] = ACTIONS(2981), - [anon_sym_return] = ACTIONS(2981), - [anon_sym_DOLLARfor] = ACTIONS(2981), - [anon_sym_for] = ACTIONS(2981), - [anon_sym_POUND] = ACTIONS(2981), - [anon_sym_asm] = ACTIONS(2981), - [anon_sym_AT_LBRACK] = ACTIONS(2981), - [sym___double_quote] = ACTIONS(2981), - [sym___single_quote] = ACTIONS(2981), - [sym___c_double_quote] = ACTIONS(2981), - [sym___c_single_quote] = ACTIONS(2981), - [sym___r_double_quote] = ACTIONS(2981), - [sym___r_single_quote] = ACTIONS(2981), - }, - [1025] = { - [ts_builtin_sym_end] = ACTIONS(3083), - [sym_identifier] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3085), - [anon_sym_CR] = ACTIONS(3085), - [anon_sym_CR_LF] = ACTIONS(3085), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_as] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_const] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym___global] = ACTIONS(3085), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_fn] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_union] = ACTIONS(3085), - [anon_sym_pub] = ACTIONS(3085), - [anon_sym_mut] = ACTIONS(3085), - [anon_sym_enum] = ACTIONS(3085), - [anon_sym_interface] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_go] = ACTIONS(3085), - [anon_sym_spawn] = ACTIONS(3085), - [anon_sym_json_DOTdecode] = ACTIONS(3085), - [anon_sym_LBRACK2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_GT_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_CARET] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [sym_none] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_nil] = ACTIONS(3085), - [anon_sym_QMARK_DOT] = ACTIONS(3085), - [anon_sym_POUND_LBRACK] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_DOLLARif] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_BANGis] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_BANGin] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(3085), - [anon_sym_select] = ACTIONS(3085), - [anon_sym_lock] = ACTIONS(3085), - [anon_sym_rlock] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(3085), - [anon_sym_sql] = ACTIONS(3085), - [sym_int_literal] = ACTIONS(3085), - [sym_float_literal] = ACTIONS(3085), - [sym_rune_literal] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_shared] = ACTIONS(3085), - [anon_sym_map_LBRACK] = ACTIONS(3085), - [anon_sym_chan] = ACTIONS(3085), - [anon_sym_thread] = ACTIONS(3085), - [anon_sym_atomic] = ACTIONS(3085), - [anon_sym_assert] = ACTIONS(3085), - [anon_sym_defer] = ACTIONS(3085), - [anon_sym_goto] = ACTIONS(3085), - [anon_sym_break] = ACTIONS(3085), - [anon_sym_continue] = ACTIONS(3085), - [anon_sym_return] = ACTIONS(3085), - [anon_sym_DOLLARfor] = ACTIONS(3085), - [anon_sym_for] = ACTIONS(3085), - [anon_sym_POUND] = ACTIONS(3085), - [anon_sym_asm] = ACTIONS(3085), - [anon_sym_AT_LBRACK] = ACTIONS(3085), - [sym___double_quote] = ACTIONS(3085), - [sym___single_quote] = ACTIONS(3085), - [sym___c_double_quote] = ACTIONS(3085), - [sym___c_single_quote] = ACTIONS(3085), - [sym___r_double_quote] = ACTIONS(3085), - [sym___r_single_quote] = ACTIONS(3085), - }, - [1026] = { - [ts_builtin_sym_end] = ACTIONS(2999), - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_const] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym___global] = ACTIONS(3001), - [anon_sym_type] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_union] = ACTIONS(3001), - [anon_sym_pub] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_enum] = ACTIONS(3001), - [anon_sym_interface] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_AT] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [anon_sym_assert] = ACTIONS(3001), - [anon_sym_defer] = ACTIONS(3001), - [anon_sym_goto] = ACTIONS(3001), - [anon_sym_break] = ACTIONS(3001), - [anon_sym_continue] = ACTIONS(3001), - [anon_sym_return] = ACTIONS(3001), - [anon_sym_DOLLARfor] = ACTIONS(3001), - [anon_sym_for] = ACTIONS(3001), - [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_asm] = ACTIONS(3001), - [anon_sym_AT_LBRACK] = ACTIONS(3001), - [sym___double_quote] = ACTIONS(3001), - [sym___single_quote] = ACTIONS(3001), - [sym___c_double_quote] = ACTIONS(3001), - [sym___c_single_quote] = ACTIONS(3001), - [sym___r_double_quote] = ACTIONS(3001), - [sym___r_single_quote] = ACTIONS(3001), - }, - [1027] = { - [ts_builtin_sym_end] = ACTIONS(2862), - [sym_identifier] = ACTIONS(2864), - [anon_sym_LF] = ACTIONS(2864), - [anon_sym_CR] = ACTIONS(2864), - [anon_sym_CR_LF] = ACTIONS(2864), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym___global] = ACTIONS(2864), - [anon_sym_type] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2864), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_EQ_EQ] = ACTIONS(2864), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_union] = ACTIONS(2864), - [anon_sym_pub] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_enum] = ACTIONS(2864), - [anon_sym_interface] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_QMARK] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_go] = ACTIONS(2864), - [anon_sym_spawn] = ACTIONS(2864), - [anon_sym_json_DOTdecode] = ACTIONS(2864), - [anon_sym_LBRACK2] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_LT_DASH] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2864), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2864), - [anon_sym_AMP_CARET] = ACTIONS(2864), - [anon_sym_AMP_AMP] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2864), - [sym_none] = ACTIONS(2864), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_nil] = ACTIONS(2864), - [anon_sym_QMARK_DOT] = ACTIONS(2864), - [anon_sym_POUND_LBRACK] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_DOLLARif] = ACTIONS(2864), - [anon_sym_is] = ACTIONS(2864), - [anon_sym_BANGis] = ACTIONS(2864), - [anon_sym_in] = ACTIONS(2864), - [anon_sym_BANGin] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_select] = ACTIONS(2864), - [anon_sym_lock] = ACTIONS(2864), - [anon_sym_rlock] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_sql] = ACTIONS(2864), - [sym_int_literal] = ACTIONS(2864), - [sym_float_literal] = ACTIONS(2864), - [sym_rune_literal] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_shared] = ACTIONS(2864), - [anon_sym_map_LBRACK] = ACTIONS(2864), - [anon_sym_chan] = ACTIONS(2864), - [anon_sym_thread] = ACTIONS(2864), - [anon_sym_atomic] = ACTIONS(2864), - [anon_sym_assert] = ACTIONS(2864), - [anon_sym_defer] = ACTIONS(2864), - [anon_sym_goto] = ACTIONS(2864), - [anon_sym_break] = ACTIONS(2864), - [anon_sym_continue] = ACTIONS(2864), - [anon_sym_return] = ACTIONS(2864), - [anon_sym_DOLLARfor] = ACTIONS(2864), - [anon_sym_for] = ACTIONS(2864), - [anon_sym_POUND] = ACTIONS(2864), - [anon_sym_asm] = ACTIONS(2864), - [anon_sym_AT_LBRACK] = ACTIONS(2864), - [sym___double_quote] = ACTIONS(2864), - [sym___single_quote] = ACTIONS(2864), - [sym___c_double_quote] = ACTIONS(2864), - [sym___c_single_quote] = ACTIONS(2864), - [sym___r_double_quote] = ACTIONS(2864), - [sym___r_single_quote] = ACTIONS(2864), - }, - [1028] = { - [ts_builtin_sym_end] = ACTIONS(2834), - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym___global] = ACTIONS(2836), - [anon_sym_type] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_union] = ACTIONS(2836), - [anon_sym_pub] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_enum] = ACTIONS(2836), - [anon_sym_interface] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [anon_sym_assert] = ACTIONS(2836), - [anon_sym_defer] = ACTIONS(2836), - [anon_sym_goto] = ACTIONS(2836), - [anon_sym_break] = ACTIONS(2836), - [anon_sym_continue] = ACTIONS(2836), - [anon_sym_return] = ACTIONS(2836), - [anon_sym_DOLLARfor] = ACTIONS(2836), - [anon_sym_for] = ACTIONS(2836), - [anon_sym_POUND] = ACTIONS(2836), - [anon_sym_asm] = ACTIONS(2836), - [anon_sym_AT_LBRACK] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), - }, - [1029] = { - [ts_builtin_sym_end] = ACTIONS(2790), - [sym_identifier] = ACTIONS(2792), - [anon_sym_LF] = ACTIONS(2792), - [anon_sym_CR] = ACTIONS(2792), - [anon_sym_CR_LF] = ACTIONS(2792), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_const] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym___global] = ACTIONS(2792), - [anon_sym_type] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_union] = ACTIONS(2792), - [anon_sym_pub] = ACTIONS(2792), - [anon_sym_mut] = ACTIONS(2792), - [anon_sym_enum] = ACTIONS(2792), - [anon_sym_interface] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_go] = ACTIONS(2792), - [anon_sym_spawn] = ACTIONS(2792), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2792), - [sym_none] = ACTIONS(2792), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_nil] = ACTIONS(2792), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_DOLLARif] = ACTIONS(2792), - [anon_sym_is] = ACTIONS(2792), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2792), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_select] = ACTIONS(2792), - [anon_sym_lock] = ACTIONS(2792), - [anon_sym_rlock] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_sql] = ACTIONS(2792), - [sym_int_literal] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_shared] = ACTIONS(2792), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2792), - [anon_sym_thread] = ACTIONS(2792), - [anon_sym_atomic] = ACTIONS(2792), - [anon_sym_assert] = ACTIONS(2792), - [anon_sym_defer] = ACTIONS(2792), - [anon_sym_goto] = ACTIONS(2792), - [anon_sym_break] = ACTIONS(2792), - [anon_sym_continue] = ACTIONS(2792), - [anon_sym_return] = ACTIONS(2792), - [anon_sym_DOLLARfor] = ACTIONS(2792), - [anon_sym_for] = ACTIONS(2792), - [anon_sym_POUND] = ACTIONS(2792), - [anon_sym_asm] = ACTIONS(2792), - [anon_sym_AT_LBRACK] = ACTIONS(2792), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), - }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(3075), - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_const] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym___global] = ACTIONS(3077), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_pub] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_enum] = ACTIONS(3077), - [anon_sym_interface] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [anon_sym_AT] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [anon_sym_assert] = ACTIONS(3077), - [anon_sym_defer] = ACTIONS(3077), - [anon_sym_goto] = ACTIONS(3077), - [anon_sym_break] = ACTIONS(3077), - [anon_sym_continue] = ACTIONS(3077), - [anon_sym_return] = ACTIONS(3077), - [anon_sym_DOLLARfor] = ACTIONS(3077), - [anon_sym_for] = ACTIONS(3077), - [anon_sym_POUND] = ACTIONS(3077), - [anon_sym_asm] = ACTIONS(3077), - [anon_sym_AT_LBRACK] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), - }, - [1031] = { - [ts_builtin_sym_end] = ACTIONS(3123), - [sym_identifier] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_CR] = ACTIONS(3125), - [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_const] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym___global] = ACTIONS(3125), - [anon_sym_type] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_union] = ACTIONS(3125), - [anon_sym_pub] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_enum] = ACTIONS(3125), - [anon_sym_interface] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [anon_sym_assert] = ACTIONS(3125), - [anon_sym_defer] = ACTIONS(3125), - [anon_sym_goto] = ACTIONS(3125), - [anon_sym_break] = ACTIONS(3125), - [anon_sym_continue] = ACTIONS(3125), - [anon_sym_return] = ACTIONS(3125), - [anon_sym_DOLLARfor] = ACTIONS(3125), - [anon_sym_for] = ACTIONS(3125), - [anon_sym_POUND] = ACTIONS(3125), - [anon_sym_asm] = ACTIONS(3125), - [anon_sym_AT_LBRACK] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), - }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(3115), - [sym_identifier] = ACTIONS(3117), - [anon_sym_LF] = ACTIONS(3117), - [anon_sym_CR] = ACTIONS(3117), - [anon_sym_CR_LF] = ACTIONS(3117), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_as] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_const] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym___global] = ACTIONS(3117), - [anon_sym_type] = ACTIONS(3117), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_EQ_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3117), - [anon_sym_pub] = ACTIONS(3117), - [anon_sym_mut] = ACTIONS(3117), - [anon_sym_enum] = ACTIONS(3117), - [anon_sym_interface] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_go] = ACTIONS(3117), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3117), - [anon_sym_LBRACK2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_GT_GT_GT] = ACTIONS(3117), - [anon_sym_AMP_CARET] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [sym_none] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_nil] = ACTIONS(3117), - [anon_sym_QMARK_DOT] = ACTIONS(3117), - [anon_sym_POUND_LBRACK] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_DOLLARif] = ACTIONS(3117), - [anon_sym_is] = ACTIONS(3117), - [anon_sym_BANGis] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_BANGin] = ACTIONS(3117), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_select] = ACTIONS(3117), - [anon_sym_lock] = ACTIONS(3117), - [anon_sym_rlock] = ACTIONS(3117), - [anon_sym_unsafe] = ACTIONS(3117), - [anon_sym_sql] = ACTIONS(3117), - [sym_int_literal] = ACTIONS(3117), - [sym_float_literal] = ACTIONS(3117), - [sym_rune_literal] = ACTIONS(3117), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_shared] = ACTIONS(3117), - [anon_sym_map_LBRACK] = ACTIONS(3117), - [anon_sym_chan] = ACTIONS(3117), - [anon_sym_thread] = ACTIONS(3117), - [anon_sym_atomic] = ACTIONS(3117), - [anon_sym_assert] = ACTIONS(3117), - [anon_sym_defer] = ACTIONS(3117), - [anon_sym_goto] = ACTIONS(3117), - [anon_sym_break] = ACTIONS(3117), - [anon_sym_continue] = ACTIONS(3117), - [anon_sym_return] = ACTIONS(3117), - [anon_sym_DOLLARfor] = ACTIONS(3117), - [anon_sym_for] = ACTIONS(3117), - [anon_sym_POUND] = ACTIONS(3117), - [anon_sym_asm] = ACTIONS(3117), - [anon_sym_AT_LBRACK] = ACTIONS(3117), - [sym___double_quote] = ACTIONS(3117), - [sym___single_quote] = ACTIONS(3117), - [sym___c_double_quote] = ACTIONS(3117), - [sym___c_single_quote] = ACTIONS(3117), - [sym___r_double_quote] = ACTIONS(3117), - [sym___r_single_quote] = ACTIONS(3117), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(3091), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_const] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym___global] = ACTIONS(3093), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_EQ_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_EQ] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_union] = ACTIONS(3093), - [anon_sym_pub] = ACTIONS(3093), - [anon_sym_mut] = ACTIONS(3093), - [anon_sym_enum] = ACTIONS(3093), - [anon_sym_interface] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3093), - [anon_sym_spawn] = ACTIONS(3093), - [anon_sym_json_DOTdecode] = ACTIONS(3093), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3093), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_GT_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_CARET] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [sym_none] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_nil] = ACTIONS(3093), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_DOLLARif] = ACTIONS(3093), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_select] = ACTIONS(3093), - [anon_sym_lock] = ACTIONS(3093), - [anon_sym_rlock] = ACTIONS(3093), - [anon_sym_unsafe] = ACTIONS(3093), - [anon_sym_sql] = ACTIONS(3093), - [sym_int_literal] = ACTIONS(3093), - [sym_float_literal] = ACTIONS(3093), - [sym_rune_literal] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_shared] = ACTIONS(3093), - [anon_sym_map_LBRACK] = ACTIONS(3093), - [anon_sym_chan] = ACTIONS(3093), - [anon_sym_thread] = ACTIONS(3093), - [anon_sym_atomic] = ACTIONS(3093), - [anon_sym_assert] = ACTIONS(3093), - [anon_sym_defer] = ACTIONS(3093), - [anon_sym_goto] = ACTIONS(3093), - [anon_sym_break] = ACTIONS(3093), - [anon_sym_continue] = ACTIONS(3093), - [anon_sym_return] = ACTIONS(3093), - [anon_sym_DOLLARfor] = ACTIONS(3093), - [anon_sym_for] = ACTIONS(3093), - [anon_sym_POUND] = ACTIONS(3093), - [anon_sym_asm] = ACTIONS(3093), - [anon_sym_AT_LBRACK] = ACTIONS(3093), - [sym___double_quote] = ACTIONS(3093), - [sym___single_quote] = ACTIONS(3093), - [sym___c_double_quote] = ACTIONS(3093), - [sym___c_single_quote] = ACTIONS(3093), - [sym___r_double_quote] = ACTIONS(3093), - [sym___r_single_quote] = ACTIONS(3093), - }, - [1034] = { - [ts_builtin_sym_end] = ACTIONS(3087), - [sym_identifier] = ACTIONS(3089), - [anon_sym_LF] = ACTIONS(3089), - [anon_sym_CR] = ACTIONS(3089), - [anon_sym_CR_LF] = ACTIONS(3089), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_as] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_const] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym___global] = ACTIONS(3089), - [anon_sym_type] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_fn] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_union] = ACTIONS(3089), - [anon_sym_pub] = ACTIONS(3089), - [anon_sym_mut] = ACTIONS(3089), - [anon_sym_enum] = ACTIONS(3089), - [anon_sym_interface] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_go] = ACTIONS(3089), - [anon_sym_spawn] = ACTIONS(3089), - [anon_sym_json_DOTdecode] = ACTIONS(3089), - [anon_sym_LBRACK2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT_DASH] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_GT_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_CARET] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [sym_none] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [sym_nil] = ACTIONS(3089), - [anon_sym_QMARK_DOT] = ACTIONS(3089), - [anon_sym_POUND_LBRACK] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_DOLLARif] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_BANGin] = ACTIONS(3089), - [anon_sym_match] = ACTIONS(3089), - [anon_sym_select] = ACTIONS(3089), - [anon_sym_lock] = ACTIONS(3089), - [anon_sym_rlock] = ACTIONS(3089), - [anon_sym_unsafe] = ACTIONS(3089), - [anon_sym_sql] = ACTIONS(3089), - [sym_int_literal] = ACTIONS(3089), - [sym_float_literal] = ACTIONS(3089), - [sym_rune_literal] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_shared] = ACTIONS(3089), - [anon_sym_map_LBRACK] = ACTIONS(3089), - [anon_sym_chan] = ACTIONS(3089), - [anon_sym_thread] = ACTIONS(3089), - [anon_sym_atomic] = ACTIONS(3089), - [anon_sym_assert] = ACTIONS(3089), - [anon_sym_defer] = ACTIONS(3089), - [anon_sym_goto] = ACTIONS(3089), - [anon_sym_break] = ACTIONS(3089), - [anon_sym_continue] = ACTIONS(3089), - [anon_sym_return] = ACTIONS(3089), - [anon_sym_DOLLARfor] = ACTIONS(3089), - [anon_sym_for] = ACTIONS(3089), - [anon_sym_POUND] = ACTIONS(3089), - [anon_sym_asm] = ACTIONS(3089), - [anon_sym_AT_LBRACK] = ACTIONS(3089), - [sym___double_quote] = ACTIONS(3089), - [sym___single_quote] = ACTIONS(3089), - [sym___c_double_quote] = ACTIONS(3089), - [sym___c_single_quote] = ACTIONS(3089), - [sym___r_double_quote] = ACTIONS(3089), - [sym___r_single_quote] = ACTIONS(3089), - }, - [1035] = { - [ts_builtin_sym_end] = ACTIONS(2786), - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_const] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym___global] = ACTIONS(2788), - [anon_sym_type] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_union] = ACTIONS(2788), - [anon_sym_pub] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_enum] = ACTIONS(2788), - [anon_sym_interface] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [anon_sym_assert] = ACTIONS(2788), - [anon_sym_defer] = ACTIONS(2788), - [anon_sym_goto] = ACTIONS(2788), - [anon_sym_break] = ACTIONS(2788), - [anon_sym_continue] = ACTIONS(2788), - [anon_sym_return] = ACTIONS(2788), - [anon_sym_DOLLARfor] = ACTIONS(2788), - [anon_sym_for] = ACTIONS(2788), - [anon_sym_POUND] = ACTIONS(2788), - [anon_sym_asm] = ACTIONS(2788), - [anon_sym_AT_LBRACK] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), - }, - [1036] = { - [ts_builtin_sym_end] = ACTIONS(3003), - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_const] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym___global] = ACTIONS(3005), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_union] = ACTIONS(3005), - [anon_sym_pub] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_enum] = ACTIONS(3005), - [anon_sym_interface] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [anon_sym_assert] = ACTIONS(3005), - [anon_sym_defer] = ACTIONS(3005), - [anon_sym_goto] = ACTIONS(3005), - [anon_sym_break] = ACTIONS(3005), - [anon_sym_continue] = ACTIONS(3005), - [anon_sym_return] = ACTIONS(3005), - [anon_sym_DOLLARfor] = ACTIONS(3005), - [anon_sym_for] = ACTIONS(3005), - [anon_sym_POUND] = ACTIONS(3005), - [anon_sym_asm] = ACTIONS(3005), - [anon_sym_AT_LBRACK] = ACTIONS(3005), - [sym___double_quote] = ACTIONS(3005), - [sym___single_quote] = ACTIONS(3005), - [sym___c_double_quote] = ACTIONS(3005), - [sym___c_single_quote] = ACTIONS(3005), - [sym___r_double_quote] = ACTIONS(3005), - [sym___r_single_quote] = ACTIONS(3005), - }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(2995), - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_const] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym___global] = ACTIONS(2997), - [anon_sym_type] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_union] = ACTIONS(2997), - [anon_sym_pub] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_enum] = ACTIONS(2997), - [anon_sym_interface] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [anon_sym_assert] = ACTIONS(2997), - [anon_sym_defer] = ACTIONS(2997), - [anon_sym_goto] = ACTIONS(2997), - [anon_sym_break] = ACTIONS(2997), - [anon_sym_continue] = ACTIONS(2997), - [anon_sym_return] = ACTIONS(2997), - [anon_sym_DOLLARfor] = ACTIONS(2997), - [anon_sym_for] = ACTIONS(2997), - [anon_sym_POUND] = ACTIONS(2997), - [anon_sym_asm] = ACTIONS(2997), - [anon_sym_AT_LBRACK] = ACTIONS(2997), - [sym___double_quote] = ACTIONS(2997), - [sym___single_quote] = ACTIONS(2997), - [sym___c_double_quote] = ACTIONS(2997), - [sym___c_single_quote] = ACTIONS(2997), - [sym___r_double_quote] = ACTIONS(2997), - [sym___r_single_quote] = ACTIONS(2997), - }, - [1038] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), - }, - [1039] = { - [ts_builtin_sym_end] = ACTIONS(3071), - [sym_identifier] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3073), - [anon_sym_CR] = ACTIONS(3073), - [anon_sym_CR_LF] = ACTIONS(3073), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_const] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym___global] = ACTIONS(3073), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_union] = ACTIONS(3073), - [anon_sym_pub] = ACTIONS(3073), - [anon_sym_mut] = ACTIONS(3073), - [anon_sym_enum] = ACTIONS(3073), - [anon_sym_interface] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3073), - [anon_sym_json_DOTdecode] = ACTIONS(3073), - [anon_sym_LBRACK2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3073), - [anon_sym_GT_GT_GT] = ACTIONS(3073), - [anon_sym_AMP_CARET] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [sym_none] = ACTIONS(3073), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [sym_nil] = ACTIONS(3073), - [anon_sym_QMARK_DOT] = ACTIONS(3073), - [anon_sym_POUND_LBRACK] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_DOLLARif] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_select] = ACTIONS(3073), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(3073), - [anon_sym_sql] = ACTIONS(3073), - [sym_int_literal] = ACTIONS(3073), - [sym_float_literal] = ACTIONS(3073), - [sym_rune_literal] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_shared] = ACTIONS(3073), - [anon_sym_map_LBRACK] = ACTIONS(3073), - [anon_sym_chan] = ACTIONS(3073), - [anon_sym_thread] = ACTIONS(3073), - [anon_sym_atomic] = ACTIONS(3073), - [anon_sym_assert] = ACTIONS(3073), - [anon_sym_defer] = ACTIONS(3073), - [anon_sym_goto] = ACTIONS(3073), - [anon_sym_break] = ACTIONS(3073), - [anon_sym_continue] = ACTIONS(3073), - [anon_sym_return] = ACTIONS(3073), - [anon_sym_DOLLARfor] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(3073), - [anon_sym_POUND] = ACTIONS(3073), - [anon_sym_asm] = ACTIONS(3073), - [anon_sym_AT_LBRACK] = ACTIONS(3073), - [sym___double_quote] = ACTIONS(3073), - [sym___single_quote] = ACTIONS(3073), - [sym___c_double_quote] = ACTIONS(3073), - [sym___c_single_quote] = ACTIONS(3073), - [sym___r_double_quote] = ACTIONS(3073), - [sym___r_single_quote] = ACTIONS(3073), - }, - [1040] = { - [ts_builtin_sym_end] = ACTIONS(2858), - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_const] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym___global] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_union] = ACTIONS(2860), - [anon_sym_pub] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_enum] = ACTIONS(2860), - [anon_sym_interface] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [anon_sym_assert] = ACTIONS(2860), - [anon_sym_defer] = ACTIONS(2860), - [anon_sym_goto] = ACTIONS(2860), - [anon_sym_break] = ACTIONS(2860), - [anon_sym_continue] = ACTIONS(2860), - [anon_sym_return] = ACTIONS(2860), - [anon_sym_DOLLARfor] = ACTIONS(2860), - [anon_sym_for] = ACTIONS(2860), - [anon_sym_POUND] = ACTIONS(2860), - [anon_sym_asm] = ACTIONS(2860), - [anon_sym_AT_LBRACK] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), - }, - [1041] = { - [ts_builtin_sym_end] = ACTIONS(2806), - [sym_identifier] = ACTIONS(2808), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_CR] = ACTIONS(2808), - [anon_sym_CR_LF] = ACTIONS(2808), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_const] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym___global] = ACTIONS(2808), - [anon_sym_type] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2808), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_union] = ACTIONS(2808), - [anon_sym_pub] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2808), - [anon_sym_enum] = ACTIONS(2808), - [anon_sym_interface] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_QMARK] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_go] = ACTIONS(2808), - [anon_sym_spawn] = ACTIONS(2808), - [anon_sym_json_DOTdecode] = ACTIONS(2808), - [anon_sym_LBRACK2] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_LT_DASH] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_CARET] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2808), - [sym_none] = ACTIONS(2808), - [sym_true] = ACTIONS(2808), - [sym_false] = ACTIONS(2808), - [sym_nil] = ACTIONS(2808), - [anon_sym_QMARK_DOT] = ACTIONS(2808), - [anon_sym_POUND_LBRACK] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_DOLLARif] = ACTIONS(2808), - [anon_sym_is] = ACTIONS(2808), - [anon_sym_BANGis] = ACTIONS(2808), - [anon_sym_in] = ACTIONS(2808), - [anon_sym_BANGin] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_select] = ACTIONS(2808), - [anon_sym_lock] = ACTIONS(2808), - [anon_sym_rlock] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_sql] = ACTIONS(2808), - [sym_int_literal] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2808), - [sym_rune_literal] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_shared] = ACTIONS(2808), - [anon_sym_map_LBRACK] = ACTIONS(2808), - [anon_sym_chan] = ACTIONS(2808), - [anon_sym_thread] = ACTIONS(2808), - [anon_sym_atomic] = ACTIONS(2808), - [anon_sym_assert] = ACTIONS(2808), - [anon_sym_defer] = ACTIONS(2808), - [anon_sym_goto] = ACTIONS(2808), - [anon_sym_break] = ACTIONS(2808), - [anon_sym_continue] = ACTIONS(2808), - [anon_sym_return] = ACTIONS(2808), - [anon_sym_DOLLARfor] = ACTIONS(2808), - [anon_sym_for] = ACTIONS(2808), - [anon_sym_POUND] = ACTIONS(2808), - [anon_sym_asm] = ACTIONS(2808), - [anon_sym_AT_LBRACK] = ACTIONS(2808), - [sym___double_quote] = ACTIONS(2808), - [sym___single_quote] = ACTIONS(2808), - [sym___c_double_quote] = ACTIONS(2808), - [sym___c_single_quote] = ACTIONS(2808), - [sym___r_double_quote] = ACTIONS(2808), - [sym___r_single_quote] = ACTIONS(2808), - }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(2941), - [sym_identifier] = ACTIONS(2943), - [anon_sym_LF] = ACTIONS(2943), - [anon_sym_CR] = ACTIONS(2943), - [anon_sym_CR_LF] = ACTIONS(2943), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_const] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym___global] = ACTIONS(2943), - [anon_sym_type] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_union] = ACTIONS(2943), - [anon_sym_pub] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_enum] = ACTIONS(2943), - [anon_sym_interface] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [anon_sym_AT] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [anon_sym_assert] = ACTIONS(2943), - [anon_sym_defer] = ACTIONS(2943), - [anon_sym_goto] = ACTIONS(2943), - [anon_sym_break] = ACTIONS(2943), - [anon_sym_continue] = ACTIONS(2943), - [anon_sym_return] = ACTIONS(2943), - [anon_sym_DOLLARfor] = ACTIONS(2943), - [anon_sym_for] = ACTIONS(2943), - [anon_sym_POUND] = ACTIONS(2943), - [anon_sym_asm] = ACTIONS(2943), - [anon_sym_AT_LBRACK] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), - }, - [1043] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym___global] = ACTIONS(3105), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_EQ] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_pub] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_interface] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3105), - [anon_sym_AMP_CARET] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3105), - [anon_sym_POUND_LBRACK] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3105), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3105), - [sym_rune_literal] = ACTIONS(3105), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [anon_sym_assert] = ACTIONS(3105), - [anon_sym_defer] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_DOLLARfor] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym_AT_LBRACK] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3105), - [sym___single_quote] = ACTIONS(3105), - [sym___c_double_quote] = ACTIONS(3105), - [sym___c_single_quote] = ACTIONS(3105), - [sym___r_double_quote] = ACTIONS(3105), - [sym___r_single_quote] = ACTIONS(3105), - }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_pub] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_interface] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_defer] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_DOLLARfor] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym_AT_LBRACK] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), - }, - [1045] = { - [ts_builtin_sym_end] = ACTIONS(2909), - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_const] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym___global] = ACTIONS(2911), - [anon_sym_type] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_union] = ACTIONS(2911), - [anon_sym_pub] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_enum] = ACTIONS(2911), - [anon_sym_interface] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_AMP_CARET] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [anon_sym_assert] = ACTIONS(2911), - [anon_sym_defer] = ACTIONS(2911), - [anon_sym_goto] = ACTIONS(2911), - [anon_sym_break] = ACTIONS(2911), - [anon_sym_continue] = ACTIONS(2911), - [anon_sym_return] = ACTIONS(2911), - [anon_sym_DOLLARfor] = ACTIONS(2911), - [anon_sym_for] = ACTIONS(2911), - [anon_sym_POUND] = ACTIONS(2911), - [anon_sym_asm] = ACTIONS(2911), - [anon_sym_AT_LBRACK] = ACTIONS(2911), - [sym___double_quote] = ACTIONS(2911), - [sym___single_quote] = ACTIONS(2911), - [sym___c_double_quote] = ACTIONS(2911), - [sym___c_single_quote] = ACTIONS(2911), - [sym___r_double_quote] = ACTIONS(2911), - [sym___r_single_quote] = ACTIONS(2911), - }, - [1046] = { - [ts_builtin_sym_end] = ACTIONS(2961), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LF] = ACTIONS(2963), - [anon_sym_CR] = ACTIONS(2963), - [anon_sym_CR_LF] = ACTIONS(2963), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_const] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym___global] = ACTIONS(2963), - [anon_sym_type] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_EQ_EQ] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_EQ] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_union] = ACTIONS(2963), - [anon_sym_pub] = ACTIONS(2963), - [anon_sym_mut] = ACTIONS(2963), - [anon_sym_enum] = ACTIONS(2963), - [anon_sym_interface] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2963), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_LBRACK2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2963), - [anon_sym_AMP_CARET] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [sym_none] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_nil] = ACTIONS(2963), - [anon_sym_QMARK_DOT] = ACTIONS(2963), - [anon_sym_POUND_LBRACK] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_DOLLARif] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_BANGis] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_BANGin] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_select] = ACTIONS(2963), - [anon_sym_lock] = ACTIONS(2963), - [anon_sym_rlock] = ACTIONS(2963), - [anon_sym_unsafe] = ACTIONS(2963), - [anon_sym_sql] = ACTIONS(2963), - [sym_int_literal] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2963), - [anon_sym_shared] = ACTIONS(2963), - [anon_sym_map_LBRACK] = ACTIONS(2963), - [anon_sym_chan] = ACTIONS(2963), - [anon_sym_thread] = ACTIONS(2963), - [anon_sym_atomic] = ACTIONS(2963), - [anon_sym_assert] = ACTIONS(2963), - [anon_sym_defer] = ACTIONS(2963), - [anon_sym_goto] = ACTIONS(2963), - [anon_sym_break] = ACTIONS(2963), - [anon_sym_continue] = ACTIONS(2963), - [anon_sym_return] = ACTIONS(2963), - [anon_sym_DOLLARfor] = ACTIONS(2963), - [anon_sym_for] = ACTIONS(2963), - [anon_sym_POUND] = ACTIONS(2963), - [anon_sym_asm] = ACTIONS(2963), - [anon_sym_AT_LBRACK] = ACTIONS(2963), - [sym___double_quote] = ACTIONS(2963), - [sym___single_quote] = ACTIONS(2963), - [sym___c_double_quote] = ACTIONS(2963), - [sym___c_single_quote] = ACTIONS(2963), - [sym___r_double_quote] = ACTIONS(2963), - [sym___r_single_quote] = ACTIONS(2963), - }, - [1047] = { - [ts_builtin_sym_end] = ACTIONS(3151), - [sym_identifier] = ACTIONS(3153), - [anon_sym_LF] = ACTIONS(3153), - [anon_sym_CR] = ACTIONS(3153), - [anon_sym_CR_LF] = ACTIONS(3153), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_const] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym___global] = ACTIONS(3153), - [anon_sym_type] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_union] = ACTIONS(3153), - [anon_sym_pub] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_enum] = ACTIONS(3153), - [anon_sym_interface] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [anon_sym_assert] = ACTIONS(3153), - [anon_sym_defer] = ACTIONS(3153), - [anon_sym_goto] = ACTIONS(3153), - [anon_sym_break] = ACTIONS(3153), - [anon_sym_continue] = ACTIONS(3153), - [anon_sym_return] = ACTIONS(3153), - [anon_sym_DOLLARfor] = ACTIONS(3153), - [anon_sym_for] = ACTIONS(3153), - [anon_sym_POUND] = ACTIONS(3153), - [anon_sym_asm] = ACTIONS(3153), - [anon_sym_AT_LBRACK] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), - }, - [1048] = { - [ts_builtin_sym_end] = ACTIONS(3159), - [sym_identifier] = ACTIONS(3161), - [anon_sym_LF] = ACTIONS(3161), - [anon_sym_CR] = ACTIONS(3161), - [anon_sym_CR_LF] = ACTIONS(3161), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_const] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym___global] = ACTIONS(3161), - [anon_sym_type] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_union] = ACTIONS(3161), - [anon_sym_pub] = ACTIONS(3161), - [anon_sym_mut] = ACTIONS(3161), - [anon_sym_enum] = ACTIONS(3161), - [anon_sym_interface] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_go] = ACTIONS(3161), - [anon_sym_spawn] = ACTIONS(3161), - [anon_sym_json_DOTdecode] = ACTIONS(3161), - [anon_sym_LBRACK2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3161), - [anon_sym_GT_GT] = ACTIONS(3161), - [anon_sym_GT_GT_GT] = ACTIONS(3161), - [anon_sym_AMP_CARET] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [sym_none] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_nil] = ACTIONS(3161), - [anon_sym_QMARK_DOT] = ACTIONS(3161), - [anon_sym_POUND_LBRACK] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_DOLLARif] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3161), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_sql] = ACTIONS(3161), - [sym_int_literal] = ACTIONS(3161), - [sym_float_literal] = ACTIONS(3161), - [sym_rune_literal] = ACTIONS(3161), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_shared] = ACTIONS(3161), - [anon_sym_map_LBRACK] = ACTIONS(3161), - [anon_sym_chan] = ACTIONS(3161), - [anon_sym_thread] = ACTIONS(3161), - [anon_sym_atomic] = ACTIONS(3161), - [anon_sym_assert] = ACTIONS(3161), - [anon_sym_defer] = ACTIONS(3161), - [anon_sym_goto] = ACTIONS(3161), - [anon_sym_break] = ACTIONS(3161), - [anon_sym_continue] = ACTIONS(3161), - [anon_sym_return] = ACTIONS(3161), - [anon_sym_DOLLARfor] = ACTIONS(3161), - [anon_sym_for] = ACTIONS(3161), - [anon_sym_POUND] = ACTIONS(3161), - [anon_sym_asm] = ACTIONS(3161), - [anon_sym_AT_LBRACK] = ACTIONS(3161), - [sym___double_quote] = ACTIONS(3161), - [sym___single_quote] = ACTIONS(3161), - [sym___c_double_quote] = ACTIONS(3161), - [sym___c_single_quote] = ACTIONS(3161), - [sym___r_double_quote] = ACTIONS(3161), - [sym___r_single_quote] = ACTIONS(3161), - }, - [1049] = { - [ts_builtin_sym_end] = ACTIONS(2810), - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_const] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym___global] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_union] = ACTIONS(2812), - [anon_sym_pub] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_enum] = ACTIONS(2812), - [anon_sym_interface] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [anon_sym_assert] = ACTIONS(2812), - [anon_sym_defer] = ACTIONS(2812), - [anon_sym_goto] = ACTIONS(2812), - [anon_sym_break] = ACTIONS(2812), - [anon_sym_continue] = ACTIONS(2812), - [anon_sym_return] = ACTIONS(2812), - [anon_sym_DOLLARfor] = ACTIONS(2812), - [anon_sym_for] = ACTIONS(2812), - [anon_sym_POUND] = ACTIONS(2812), - [anon_sym_asm] = ACTIONS(2812), - [anon_sym_AT_LBRACK] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), - }, - [1050] = { - [ts_builtin_sym_end] = ACTIONS(3187), - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_const] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym___global] = ACTIONS(3189), - [anon_sym_type] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_union] = ACTIONS(3189), - [anon_sym_pub] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_enum] = ACTIONS(3189), - [anon_sym_interface] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [anon_sym_assert] = ACTIONS(3189), - [anon_sym_defer] = ACTIONS(3189), - [anon_sym_goto] = ACTIONS(3189), - [anon_sym_break] = ACTIONS(3189), - [anon_sym_continue] = ACTIONS(3189), - [anon_sym_return] = ACTIONS(3189), - [anon_sym_DOLLARfor] = ACTIONS(3189), - [anon_sym_for] = ACTIONS(3189), - [anon_sym_POUND] = ACTIONS(3189), - [anon_sym_asm] = ACTIONS(3189), - [anon_sym_AT_LBRACK] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), - }, - [1051] = { - [ts_builtin_sym_end] = ACTIONS(3183), - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym___global] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_union] = ACTIONS(3185), - [anon_sym_pub] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [anon_sym_assert] = ACTIONS(3185), - [anon_sym_defer] = ACTIONS(3185), - [anon_sym_goto] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_DOLLARfor] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_POUND] = ACTIONS(3185), - [anon_sym_asm] = ACTIONS(3185), - [anon_sym_AT_LBRACK] = ACTIONS(3185), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), - }, - [1052] = { - [ts_builtin_sym_end] = ACTIONS(2794), - [sym_identifier] = ACTIONS(2796), - [anon_sym_LF] = ACTIONS(2796), - [anon_sym_CR] = ACTIONS(2796), - [anon_sym_CR_LF] = ACTIONS(2796), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_as] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_const] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym___global] = ACTIONS(2796), - [anon_sym_type] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_union] = ACTIONS(2796), - [anon_sym_pub] = ACTIONS(2796), - [anon_sym_mut] = ACTIONS(2796), - [anon_sym_enum] = ACTIONS(2796), - [anon_sym_interface] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_go] = ACTIONS(2796), - [anon_sym_spawn] = ACTIONS(2796), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2796), - [sym_none] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_nil] = ACTIONS(2796), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_DOLLARif] = ACTIONS(2796), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2796), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_select] = ACTIONS(2796), - [anon_sym_lock] = ACTIONS(2796), - [anon_sym_rlock] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_sql] = ACTIONS(2796), - [sym_int_literal] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_shared] = ACTIONS(2796), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2796), - [anon_sym_thread] = ACTIONS(2796), - [anon_sym_atomic] = ACTIONS(2796), - [anon_sym_assert] = ACTIONS(2796), - [anon_sym_defer] = ACTIONS(2796), - [anon_sym_goto] = ACTIONS(2796), - [anon_sym_break] = ACTIONS(2796), - [anon_sym_continue] = ACTIONS(2796), - [anon_sym_return] = ACTIONS(2796), - [anon_sym_DOLLARfor] = ACTIONS(2796), - [anon_sym_for] = ACTIONS(2796), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_asm] = ACTIONS(2796), - [anon_sym_AT_LBRACK] = ACTIONS(2796), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), - }, - [1053] = { - [ts_builtin_sym_end] = ACTIONS(2818), - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_const] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym___global] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_union] = ACTIONS(2820), - [anon_sym_pub] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_enum] = ACTIONS(2820), - [anon_sym_interface] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [anon_sym_assert] = ACTIONS(2820), - [anon_sym_defer] = ACTIONS(2820), - [anon_sym_goto] = ACTIONS(2820), - [anon_sym_break] = ACTIONS(2820), - [anon_sym_continue] = ACTIONS(2820), - [anon_sym_return] = ACTIONS(2820), - [anon_sym_DOLLARfor] = ACTIONS(2820), - [anon_sym_for] = ACTIONS(2820), - [anon_sym_POUND] = ACTIONS(2820), - [anon_sym_asm] = ACTIONS(2820), - [anon_sym_AT_LBRACK] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), - }, - [1054] = { - [ts_builtin_sym_end] = ACTIONS(2822), - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_const] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym___global] = ACTIONS(2824), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_union] = ACTIONS(2824), - [anon_sym_pub] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_enum] = ACTIONS(2824), - [anon_sym_interface] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [anon_sym_assert] = ACTIONS(2824), - [anon_sym_defer] = ACTIONS(2824), - [anon_sym_goto] = ACTIONS(2824), - [anon_sym_break] = ACTIONS(2824), - [anon_sym_continue] = ACTIONS(2824), - [anon_sym_return] = ACTIONS(2824), - [anon_sym_DOLLARfor] = ACTIONS(2824), - [anon_sym_for] = ACTIONS(2824), - [anon_sym_POUND] = ACTIONS(2824), - [anon_sym_asm] = ACTIONS(2824), - [anon_sym_AT_LBRACK] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), - }, - [1055] = { - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_const] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym___global] = ACTIONS(3181), - [anon_sym_type] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_union] = ACTIONS(3181), - [anon_sym_pub] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_enum] = ACTIONS(3181), - [anon_sym_interface] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [anon_sym_AT] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [anon_sym_assert] = ACTIONS(3181), - [anon_sym_defer] = ACTIONS(3181), - [anon_sym_goto] = ACTIONS(3181), - [anon_sym_break] = ACTIONS(3181), - [anon_sym_continue] = ACTIONS(3181), - [anon_sym_return] = ACTIONS(3181), - [anon_sym_DOLLARfor] = ACTIONS(3181), - [anon_sym_for] = ACTIONS(3181), - [anon_sym_POUND] = ACTIONS(3181), - [anon_sym_asm] = ACTIONS(3181), - [anon_sym_AT_LBRACK] = ACTIONS(3181), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), - }, - [1056] = { - [ts_builtin_sym_end] = ACTIONS(3147), - [sym_identifier] = ACTIONS(3149), - [anon_sym_LF] = ACTIONS(3149), - [anon_sym_CR] = ACTIONS(3149), - [anon_sym_CR_LF] = ACTIONS(3149), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_const] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym___global] = ACTIONS(3149), - [anon_sym_type] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_EQ] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_union] = ACTIONS(3149), - [anon_sym_pub] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_enum] = ACTIONS(3149), - [anon_sym_interface] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [anon_sym_assert] = ACTIONS(3149), - [anon_sym_defer] = ACTIONS(3149), - [anon_sym_goto] = ACTIONS(3149), - [anon_sym_break] = ACTIONS(3149), - [anon_sym_continue] = ACTIONS(3149), - [anon_sym_return] = ACTIONS(3149), - [anon_sym_DOLLARfor] = ACTIONS(3149), - [anon_sym_for] = ACTIONS(3149), - [anon_sym_POUND] = ACTIONS(3149), - [anon_sym_asm] = ACTIONS(3149), - [anon_sym_AT_LBRACK] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), - }, - [1057] = { - [ts_builtin_sym_end] = ACTIONS(3063), - [sym_identifier] = ACTIONS(3065), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_CR] = ACTIONS(3065), - [anon_sym_CR_LF] = ACTIONS(3065), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_const] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3065), - [anon_sym___global] = ACTIONS(3065), - [anon_sym_type] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_union] = ACTIONS(3065), - [anon_sym_pub] = ACTIONS(3065), - [anon_sym_mut] = ACTIONS(3065), - [anon_sym_enum] = ACTIONS(3065), - [anon_sym_interface] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3065), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(3065), - [anon_sym_LBRACK2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3065), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_GT_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_CARET] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_nil] = ACTIONS(3065), - [anon_sym_QMARK_DOT] = ACTIONS(3065), - [anon_sym_POUND_LBRACK] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_DOLLARif] = ACTIONS(3065), - [anon_sym_is] = ACTIONS(3065), - [anon_sym_BANGis] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_BANGin] = ACTIONS(3065), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_lock] = ACTIONS(3065), - [anon_sym_rlock] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_sql] = ACTIONS(3065), - [sym_int_literal] = ACTIONS(3065), - [sym_float_literal] = ACTIONS(3065), - [sym_rune_literal] = ACTIONS(3065), - [anon_sym_AT] = ACTIONS(3065), - [anon_sym_shared] = ACTIONS(3065), - [anon_sym_map_LBRACK] = ACTIONS(3065), - [anon_sym_chan] = ACTIONS(3065), - [anon_sym_thread] = ACTIONS(3065), - [anon_sym_atomic] = ACTIONS(3065), - [anon_sym_assert] = ACTIONS(3065), - [anon_sym_defer] = ACTIONS(3065), - [anon_sym_goto] = ACTIONS(3065), - [anon_sym_break] = ACTIONS(3065), - [anon_sym_continue] = ACTIONS(3065), - [anon_sym_return] = ACTIONS(3065), - [anon_sym_DOLLARfor] = ACTIONS(3065), - [anon_sym_for] = ACTIONS(3065), - [anon_sym_POUND] = ACTIONS(3065), - [anon_sym_asm] = ACTIONS(3065), - [anon_sym_AT_LBRACK] = ACTIONS(3065), - [sym___double_quote] = ACTIONS(3065), - [sym___single_quote] = ACTIONS(3065), - [sym___c_double_quote] = ACTIONS(3065), - [sym___c_single_quote] = ACTIONS(3065), - [sym___r_double_quote] = ACTIONS(3065), - [sym___r_single_quote] = ACTIONS(3065), - }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(3051), - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_const] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym___global] = ACTIONS(3053), - [anon_sym_type] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_EQ_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_union] = ACTIONS(3053), - [anon_sym_pub] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_enum] = ACTIONS(3053), - [anon_sym_interface] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_GT_GT_GT] = ACTIONS(3053), - [anon_sym_AMP_CARET] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3053), - [anon_sym_or] = ACTIONS(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [anon_sym_assert] = ACTIONS(3053), - [anon_sym_defer] = ACTIONS(3053), - [anon_sym_goto] = ACTIONS(3053), - [anon_sym_break] = ACTIONS(3053), - [anon_sym_continue] = ACTIONS(3053), - [anon_sym_return] = ACTIONS(3053), - [anon_sym_DOLLARfor] = ACTIONS(3053), - [anon_sym_for] = ACTIONS(3053), - [anon_sym_POUND] = ACTIONS(3053), - [anon_sym_asm] = ACTIONS(3053), - [anon_sym_AT_LBRACK] = ACTIONS(3053), - [sym___double_quote] = ACTIONS(3053), - [sym___single_quote] = ACTIONS(3053), - [sym___c_double_quote] = ACTIONS(3053), - [sym___c_single_quote] = ACTIONS(3053), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3053), - }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym___global] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_pub] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_interface] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym_AT_LBRACK] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), - }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [1061] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [1062] = { - [ts_builtin_sym_end] = ACTIONS(3043), - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_const] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym___global] = ACTIONS(3045), - [anon_sym_type] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_union] = ACTIONS(3045), - [anon_sym_pub] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_enum] = ACTIONS(3045), - [anon_sym_interface] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [anon_sym_assert] = ACTIONS(3045), - [anon_sym_defer] = ACTIONS(3045), - [anon_sym_goto] = ACTIONS(3045), - [anon_sym_break] = ACTIONS(3045), - [anon_sym_continue] = ACTIONS(3045), - [anon_sym_return] = ACTIONS(3045), - [anon_sym_DOLLARfor] = ACTIONS(3045), - [anon_sym_for] = ACTIONS(3045), - [anon_sym_POUND] = ACTIONS(3045), - [anon_sym_asm] = ACTIONS(3045), - [anon_sym_AT_LBRACK] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), - }, - [1063] = { - [ts_builtin_sym_end] = ACTIONS(3035), - [sym_identifier] = ACTIONS(3037), - [anon_sym_LF] = ACTIONS(3037), - [anon_sym_CR] = ACTIONS(3037), - [anon_sym_CR_LF] = ACTIONS(3037), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_const] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym___global] = ACTIONS(3037), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_EQ] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_union] = ACTIONS(3037), - [anon_sym_pub] = ACTIONS(3037), - [anon_sym_mut] = ACTIONS(3037), - [anon_sym_enum] = ACTIONS(3037), - [anon_sym_interface] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_go] = ACTIONS(3037), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(3037), - [anon_sym_LBRACK2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3037), - [anon_sym_GT_GT] = ACTIONS(3037), - [anon_sym_GT_GT_GT] = ACTIONS(3037), - [anon_sym_AMP_CARET] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_or] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_nil] = ACTIONS(3037), - [anon_sym_QMARK_DOT] = ACTIONS(3037), - [anon_sym_POUND_LBRACK] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_DOLLARif] = ACTIONS(3037), - [anon_sym_is] = ACTIONS(3037), - [anon_sym_BANGis] = ACTIONS(3037), - [anon_sym_in] = ACTIONS(3037), - [anon_sym_BANGin] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_select] = ACTIONS(3037), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3037), - [sym_int_literal] = ACTIONS(3037), - [sym_float_literal] = ACTIONS(3037), - [sym_rune_literal] = ACTIONS(3037), - [anon_sym_AT] = ACTIONS(3037), - [anon_sym_shared] = ACTIONS(3037), - [anon_sym_map_LBRACK] = ACTIONS(3037), - [anon_sym_chan] = ACTIONS(3037), - [anon_sym_thread] = ACTIONS(3037), - [anon_sym_atomic] = ACTIONS(3037), - [anon_sym_assert] = ACTIONS(3037), - [anon_sym_defer] = ACTIONS(3037), - [anon_sym_goto] = ACTIONS(3037), - [anon_sym_break] = ACTIONS(3037), - [anon_sym_continue] = ACTIONS(3037), - [anon_sym_return] = ACTIONS(3037), - [anon_sym_DOLLARfor] = ACTIONS(3037), - [anon_sym_for] = ACTIONS(3037), - [anon_sym_POUND] = ACTIONS(3037), - [anon_sym_asm] = ACTIONS(3037), - [anon_sym_AT_LBRACK] = ACTIONS(3037), - [sym___double_quote] = ACTIONS(3037), - [sym___single_quote] = ACTIONS(3037), - [sym___c_double_quote] = ACTIONS(3037), - [sym___c_single_quote] = ACTIONS(3037), - [sym___r_double_quote] = ACTIONS(3037), - [sym___r_single_quote] = ACTIONS(3037), - }, - [1064] = { - [ts_builtin_sym_end] = ACTIONS(3031), - [sym_identifier] = ACTIONS(3033), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_CR] = ACTIONS(3033), - [anon_sym_CR_LF] = ACTIONS(3033), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_const] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym___global] = ACTIONS(3033), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_EQ] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_union] = ACTIONS(3033), - [anon_sym_pub] = ACTIONS(3033), - [anon_sym_mut] = ACTIONS(3033), - [anon_sym_enum] = ACTIONS(3033), - [anon_sym_interface] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3033), - [anon_sym_spawn] = ACTIONS(3033), - [anon_sym_json_DOTdecode] = ACTIONS(3033), - [anon_sym_LBRACK2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3033), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_GT_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_CARET] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_or] = ACTIONS(3033), - [sym_none] = ACTIONS(3033), - [sym_true] = ACTIONS(3033), - [sym_false] = ACTIONS(3033), - [sym_nil] = ACTIONS(3033), - [anon_sym_QMARK_DOT] = ACTIONS(3033), - [anon_sym_POUND_LBRACK] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_DOLLARif] = ACTIONS(3033), - [anon_sym_is] = ACTIONS(3033), - [anon_sym_BANGis] = ACTIONS(3033), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_BANGin] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3033), - [anon_sym_rlock] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_sql] = ACTIONS(3033), - [sym_int_literal] = ACTIONS(3033), - [sym_float_literal] = ACTIONS(3033), - [sym_rune_literal] = ACTIONS(3033), - [anon_sym_AT] = ACTIONS(3033), - [anon_sym_shared] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3033), - [anon_sym_chan] = ACTIONS(3033), - [anon_sym_thread] = ACTIONS(3033), - [anon_sym_atomic] = ACTIONS(3033), - [anon_sym_assert] = ACTIONS(3033), - [anon_sym_defer] = ACTIONS(3033), - [anon_sym_goto] = ACTIONS(3033), - [anon_sym_break] = ACTIONS(3033), - [anon_sym_continue] = ACTIONS(3033), - [anon_sym_return] = ACTIONS(3033), - [anon_sym_DOLLARfor] = ACTIONS(3033), - [anon_sym_for] = ACTIONS(3033), - [anon_sym_POUND] = ACTIONS(3033), - [anon_sym_asm] = ACTIONS(3033), - [anon_sym_AT_LBRACK] = ACTIONS(3033), - [sym___double_quote] = ACTIONS(3033), - [sym___single_quote] = ACTIONS(3033), - [sym___c_double_quote] = ACTIONS(3033), - [sym___c_single_quote] = ACTIONS(3033), - [sym___r_double_quote] = ACTIONS(3033), - [sym___r_single_quote] = ACTIONS(3033), - }, - [1065] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_CR] = ACTIONS(2959), - [anon_sym_CR_LF] = ACTIONS(2959), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym___global] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_union] = ACTIONS(2959), - [anon_sym_pub] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_GT_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_CARET] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_QMARK_DOT] = ACTIONS(2959), - [anon_sym_POUND_LBRACK] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_BANGis] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_BANGin] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_defer] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_DOLLARfor] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2959), - [anon_sym_AT_LBRACK] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), - }, - [1066] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_LF] = ACTIONS(2927), - [anon_sym_CR] = ACTIONS(2927), - [anon_sym_CR_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_as] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym___global] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2927), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_EQ_EQ] = ACTIONS(2927), - [anon_sym_BANG_EQ] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_pub] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_interface] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2927), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2927), - [anon_sym_LT_LT] = ACTIONS(2927), - [anon_sym_GT_GT] = ACTIONS(2927), - [anon_sym_GT_GT_GT] = ACTIONS(2927), - [anon_sym_AMP_CARET] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_QMARK_DOT] = ACTIONS(2927), - [anon_sym_POUND_LBRACK] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_is] = ACTIONS(2927), - [anon_sym_BANGis] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_BANGin] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), - [sym_rune_literal] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2927), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [anon_sym_assert] = ACTIONS(2927), - [anon_sym_defer] = ACTIONS(2927), - [anon_sym_goto] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_DOLLARfor] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_asm] = ACTIONS(2927), - [anon_sym_AT_LBRACK] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2927), - [sym___single_quote] = ACTIONS(2927), - [sym___c_double_quote] = ACTIONS(2927), - [sym___c_single_quote] = ACTIONS(2927), - [sym___r_double_quote] = ACTIONS(2927), - [sym___r_single_quote] = ACTIONS(2927), - }, - [1067] = { - [ts_builtin_sym_end] = ACTIONS(3155), - [sym_identifier] = ACTIONS(3157), - [anon_sym_LF] = ACTIONS(3157), - [anon_sym_CR] = ACTIONS(3157), - [anon_sym_CR_LF] = ACTIONS(3157), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_const] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym___global] = ACTIONS(3157), - [anon_sym_type] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_EQ_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_EQ] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_union] = ACTIONS(3157), - [anon_sym_pub] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_enum] = ACTIONS(3157), - [anon_sym_interface] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [anon_sym_assert] = ACTIONS(3157), - [anon_sym_defer] = ACTIONS(3157), - [anon_sym_goto] = ACTIONS(3157), - [anon_sym_break] = ACTIONS(3157), - [anon_sym_continue] = ACTIONS(3157), - [anon_sym_return] = ACTIONS(3157), - [anon_sym_DOLLARfor] = ACTIONS(3157), - [anon_sym_for] = ACTIONS(3157), - [anon_sym_POUND] = ACTIONS(3157), - [anon_sym_asm] = ACTIONS(3157), - [anon_sym_AT_LBRACK] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), - }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym___global] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [anon_sym_assert] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_DOLLARfor] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym_AT_LBRACK] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), - }, - [1069] = { - [ts_builtin_sym_end] = ACTIONS(3195), - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_const] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym___global] = ACTIONS(3197), - [anon_sym_type] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_union] = ACTIONS(3197), - [anon_sym_pub] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_enum] = ACTIONS(3197), - [anon_sym_interface] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [anon_sym_assert] = ACTIONS(3197), - [anon_sym_defer] = ACTIONS(3197), - [anon_sym_goto] = ACTIONS(3197), - [anon_sym_break] = ACTIONS(3197), - [anon_sym_continue] = ACTIONS(3197), - [anon_sym_return] = ACTIONS(3197), - [anon_sym_DOLLARfor] = ACTIONS(3197), - [anon_sym_for] = ACTIONS(3197), - [anon_sym_POUND] = ACTIONS(3197), - [anon_sym_asm] = ACTIONS(3197), - [anon_sym_AT_LBRACK] = ACTIONS(3197), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), - }, - [1070] = { - [ts_builtin_sym_end] = ACTIONS(3059), - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_const] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym___global] = ACTIONS(3061), - [anon_sym_type] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_union] = ACTIONS(3061), - [anon_sym_pub] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_enum] = ACTIONS(3061), - [anon_sym_interface] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [anon_sym_AT] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [anon_sym_assert] = ACTIONS(3061), - [anon_sym_defer] = ACTIONS(3061), - [anon_sym_goto] = ACTIONS(3061), - [anon_sym_break] = ACTIONS(3061), - [anon_sym_continue] = ACTIONS(3061), - [anon_sym_return] = ACTIONS(3061), - [anon_sym_DOLLARfor] = ACTIONS(3061), - [anon_sym_for] = ACTIONS(3061), - [anon_sym_POUND] = ACTIONS(3061), - [anon_sym_asm] = ACTIONS(3061), - [anon_sym_AT_LBRACK] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), - }, - [1071] = { - [ts_builtin_sym_end] = ACTIONS(3055), - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_const] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym___global] = ACTIONS(3057), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_union] = ACTIONS(3057), - [anon_sym_pub] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_enum] = ACTIONS(3057), - [anon_sym_interface] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [anon_sym_assert] = ACTIONS(3057), - [anon_sym_defer] = ACTIONS(3057), - [anon_sym_goto] = ACTIONS(3057), - [anon_sym_break] = ACTIONS(3057), - [anon_sym_continue] = ACTIONS(3057), - [anon_sym_return] = ACTIONS(3057), - [anon_sym_DOLLARfor] = ACTIONS(3057), - [anon_sym_for] = ACTIONS(3057), - [anon_sym_POUND] = ACTIONS(3057), - [anon_sym_asm] = ACTIONS(3057), - [anon_sym_AT_LBRACK] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), - }, - [1072] = { - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym___global] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [anon_sym_assert] = ACTIONS(2856), - [anon_sym_defer] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_DOLLARfor] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_asm] = ACTIONS(2856), - [anon_sym_AT_LBRACK] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), - }, - [1073] = { - [ts_builtin_sym_end] = ACTIONS(3047), - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_const] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym___global] = ACTIONS(3049), - [anon_sym_type] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_union] = ACTIONS(3049), - [anon_sym_pub] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_enum] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3049), - [anon_sym_AMP_CARET] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [anon_sym_AT] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [anon_sym_assert] = ACTIONS(3049), - [anon_sym_defer] = ACTIONS(3049), - [anon_sym_goto] = ACTIONS(3049), - [anon_sym_break] = ACTIONS(3049), - [anon_sym_continue] = ACTIONS(3049), - [anon_sym_return] = ACTIONS(3049), - [anon_sym_DOLLARfor] = ACTIONS(3049), - [anon_sym_for] = ACTIONS(3049), - [anon_sym_POUND] = ACTIONS(3049), - [anon_sym_asm] = ACTIONS(3049), - [anon_sym_AT_LBRACK] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3049), - [sym___single_quote] = ACTIONS(3049), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3049), - [sym___r_double_quote] = ACTIONS(3049), - [sym___r_single_quote] = ACTIONS(3049), - }, - [1074] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_defer] = ACTIONS(2784), - [anon_sym_goto] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_DOLLARfor] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_asm] = ACTIONS(2784), - [anon_sym_AT_LBRACK] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), - }, - [1075] = { - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_LF] = ACTIONS(2844), - [anon_sym_CR] = ACTIONS(2844), - [anon_sym_CR_LF] = ACTIONS(2844), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_as] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym___global] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_interface] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_is] = ACTIONS(2844), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2844), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [anon_sym_assert] = ACTIONS(2844), - [anon_sym_defer] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_DOLLARfor] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym_AT_LBRACK] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), - }, - [1076] = { - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), - }, - [1077] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym___global] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_EQ_EQ] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_EQ] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_pub] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_interface] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3165), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_GT_GT_GT] = ACTIONS(3165), - [anon_sym_AMP_CARET] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_QMARK_DOT] = ACTIONS(3165), - [anon_sym_POUND_LBRACK] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_is] = ACTIONS(3165), - [anon_sym_BANGis] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_BANGin] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_defer] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_DOLLARfor] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym_AT_LBRACK] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), - }, - [1078] = { - [ts_builtin_sym_end] = ACTIONS(2889), - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym___global] = ACTIONS(2891), - [anon_sym_type] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_union] = ACTIONS(2891), - [anon_sym_pub] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_enum] = ACTIONS(2891), - [anon_sym_interface] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [anon_sym_AT] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [anon_sym_assert] = ACTIONS(2891), - [anon_sym_defer] = ACTIONS(2891), - [anon_sym_goto] = ACTIONS(2891), - [anon_sym_break] = ACTIONS(2891), - [anon_sym_continue] = ACTIONS(2891), - [anon_sym_return] = ACTIONS(2891), - [anon_sym_DOLLARfor] = ACTIONS(2891), - [anon_sym_for] = ACTIONS(2891), - [anon_sym_POUND] = ACTIONS(2891), - [anon_sym_asm] = ACTIONS(2891), - [anon_sym_AT_LBRACK] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), - }, - [1079] = { - [ts_builtin_sym_end] = ACTIONS(2976), - [sym_identifier] = ACTIONS(2973), - [anon_sym_LF] = ACTIONS(2973), - [anon_sym_CR] = ACTIONS(2973), - [anon_sym_CR_LF] = ACTIONS(2973), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2973), - [anon_sym_COMMA] = ACTIONS(2973), - [anon_sym_const] = ACTIONS(2973), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym___global] = ACTIONS(2973), - [anon_sym_type] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2973), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2973), - [anon_sym_union] = ACTIONS(2973), - [anon_sym_pub] = ACTIONS(2973), - [anon_sym_mut] = ACTIONS(2973), - [anon_sym_enum] = ACTIONS(2973), - [anon_sym_interface] = ACTIONS(2973), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2973), - [anon_sym_spawn] = ACTIONS(2973), - [anon_sym_json_DOTdecode] = ACTIONS(2973), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2973), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2973), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2973), - [sym_true] = ACTIONS(2973), - [sym_false] = ACTIONS(2973), - [sym_nil] = ACTIONS(2973), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2973), - [anon_sym_DOLLARif] = ACTIONS(2973), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2973), - [anon_sym_select] = ACTIONS(2973), - [anon_sym_lock] = ACTIONS(2973), - [anon_sym_rlock] = ACTIONS(2973), - [anon_sym_unsafe] = ACTIONS(2973), - [anon_sym_sql] = ACTIONS(2973), - [sym_int_literal] = ACTIONS(2973), - [sym_float_literal] = ACTIONS(2973), - [sym_rune_literal] = ACTIONS(2973), - [anon_sym_AT] = ACTIONS(2973), - [anon_sym_shared] = ACTIONS(2973), - [anon_sym_map_LBRACK] = ACTIONS(2973), - [anon_sym_chan] = ACTIONS(2973), - [anon_sym_thread] = ACTIONS(2973), - [anon_sym_atomic] = ACTIONS(2973), - [anon_sym_assert] = ACTIONS(2973), - [anon_sym_defer] = ACTIONS(2973), - [anon_sym_goto] = ACTIONS(2973), - [anon_sym_break] = ACTIONS(2973), - [anon_sym_continue] = ACTIONS(2973), - [anon_sym_return] = ACTIONS(2973), - [anon_sym_DOLLARfor] = ACTIONS(2973), - [anon_sym_for] = ACTIONS(2973), - [anon_sym_POUND] = ACTIONS(2973), - [anon_sym_asm] = ACTIONS(2973), - [anon_sym_AT_LBRACK] = ACTIONS(2973), - [sym___double_quote] = ACTIONS(2973), - [sym___single_quote] = ACTIONS(2973), - [sym___c_double_quote] = ACTIONS(2973), - [sym___c_single_quote] = ACTIONS(2973), - [sym___r_double_quote] = ACTIONS(2973), - [sym___r_single_quote] = ACTIONS(2973), - }, - [1080] = { - [ts_builtin_sym_end] = ACTIONS(2893), - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_const] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym___global] = ACTIONS(2895), - [anon_sym_type] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_union] = ACTIONS(2895), - [anon_sym_pub] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_enum] = ACTIONS(2895), - [anon_sym_interface] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [anon_sym_assert] = ACTIONS(2895), - [anon_sym_defer] = ACTIONS(2895), - [anon_sym_goto] = ACTIONS(2895), - [anon_sym_break] = ACTIONS(2895), - [anon_sym_continue] = ACTIONS(2895), - [anon_sym_return] = ACTIONS(2895), - [anon_sym_DOLLARfor] = ACTIONS(2895), - [anon_sym_for] = ACTIONS(2895), - [anon_sym_POUND] = ACTIONS(2895), - [anon_sym_asm] = ACTIONS(2895), - [anon_sym_AT_LBRACK] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), - }, - [1081] = { - [ts_builtin_sym_end] = ACTIONS(2878), - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_const] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym___global] = ACTIONS(2880), - [anon_sym_type] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_union] = ACTIONS(2880), - [anon_sym_pub] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2880), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [anon_sym_assert] = ACTIONS(2880), - [anon_sym_defer] = ACTIONS(2880), - [anon_sym_goto] = ACTIONS(2880), - [anon_sym_break] = ACTIONS(2880), - [anon_sym_continue] = ACTIONS(2880), - [anon_sym_return] = ACTIONS(2880), - [anon_sym_DOLLARfor] = ACTIONS(2880), - [anon_sym_for] = ACTIONS(2880), - [anon_sym_POUND] = ACTIONS(2880), - [anon_sym_asm] = ACTIONS(2880), - [anon_sym_AT_LBRACK] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), - }, - [1082] = { - [ts_builtin_sym_end] = ACTIONS(3139), - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_const] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym___global] = ACTIONS(3141), - [anon_sym_type] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_union] = ACTIONS(3141), - [anon_sym_pub] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_enum] = ACTIONS(3141), - [anon_sym_interface] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [anon_sym_assert] = ACTIONS(3141), - [anon_sym_defer] = ACTIONS(3141), - [anon_sym_goto] = ACTIONS(3141), - [anon_sym_break] = ACTIONS(3141), - [anon_sym_continue] = ACTIONS(3141), - [anon_sym_return] = ACTIONS(3141), - [anon_sym_DOLLARfor] = ACTIONS(3141), - [anon_sym_for] = ACTIONS(3141), - [anon_sym_POUND] = ACTIONS(3141), - [anon_sym_asm] = ACTIONS(3141), - [anon_sym_AT_LBRACK] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), - }, - [1083] = { - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym___global] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_union] = ACTIONS(3081), - [anon_sym_pub] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [anon_sym_assert] = ACTIONS(3081), - [anon_sym_defer] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_DOLLARfor] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_asm] = ACTIONS(3081), - [anon_sym_AT_LBRACK] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), - }, - [1084] = { - [ts_builtin_sym_end] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_const] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym___global] = ACTIONS(3009), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_union] = ACTIONS(3009), - [anon_sym_pub] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_enum] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3009), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_GT_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_CARET] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [anon_sym_assert] = ACTIONS(3009), - [anon_sym_defer] = ACTIONS(3009), - [anon_sym_goto] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_DOLLARfor] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3009), - [anon_sym_POUND] = ACTIONS(3009), - [anon_sym_asm] = ACTIONS(3009), - [anon_sym_AT_LBRACK] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), - }, - [1085] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym___global] = ACTIONS(2993), - [anon_sym_type] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_pub] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_interface] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym_AT_LBRACK] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2993), - [sym___single_quote] = ACTIONS(2993), - [sym___c_double_quote] = ACTIONS(2993), - [sym___c_single_quote] = ACTIONS(2993), - [sym___r_double_quote] = ACTIONS(2993), - [sym___r_single_quote] = ACTIONS(2993), - }, - [1086] = { - [ts_builtin_sym_end] = ACTIONS(2954), - [sym_identifier] = ACTIONS(2951), - [anon_sym_LF] = ACTIONS(2951), - [anon_sym_CR] = ACTIONS(2951), - [anon_sym_CR_LF] = ACTIONS(2951), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_COMMA] = ACTIONS(2951), - [anon_sym_const] = ACTIONS(2951), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym___global] = ACTIONS(2951), - [anon_sym_type] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2951), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2951), - [anon_sym_union] = ACTIONS(2951), - [anon_sym_pub] = ACTIONS(2951), - [anon_sym_mut] = ACTIONS(2951), - [anon_sym_enum] = ACTIONS(2951), - [anon_sym_interface] = ACTIONS(2951), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2951), - [anon_sym_spawn] = ACTIONS(2951), - [anon_sym_json_DOTdecode] = ACTIONS(2951), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2951), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2951), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2951), - [sym_true] = ACTIONS(2951), - [sym_false] = ACTIONS(2951), - [sym_nil] = ACTIONS(2951), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2951), - [anon_sym_DOLLARif] = ACTIONS(2951), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2951), - [anon_sym_select] = ACTIONS(2951), - [anon_sym_lock] = ACTIONS(2951), - [anon_sym_rlock] = ACTIONS(2951), - [anon_sym_unsafe] = ACTIONS(2951), - [anon_sym_sql] = ACTIONS(2951), - [sym_int_literal] = ACTIONS(2951), - [sym_float_literal] = ACTIONS(2951), - [sym_rune_literal] = ACTIONS(2951), - [anon_sym_AT] = ACTIONS(2951), - [anon_sym_shared] = ACTIONS(2951), - [anon_sym_map_LBRACK] = ACTIONS(2951), - [anon_sym_chan] = ACTIONS(2951), - [anon_sym_thread] = ACTIONS(2951), - [anon_sym_atomic] = ACTIONS(2951), - [anon_sym_assert] = ACTIONS(2951), - [anon_sym_defer] = ACTIONS(2951), - [anon_sym_goto] = ACTIONS(2951), - [anon_sym_break] = ACTIONS(2951), - [anon_sym_continue] = ACTIONS(2951), - [anon_sym_return] = ACTIONS(2951), - [anon_sym_DOLLARfor] = ACTIONS(2951), - [anon_sym_for] = ACTIONS(2951), - [anon_sym_POUND] = ACTIONS(2951), - [anon_sym_asm] = ACTIONS(2951), - [anon_sym_AT_LBRACK] = ACTIONS(2951), - [sym___double_quote] = ACTIONS(2951), - [sym___single_quote] = ACTIONS(2951), - [sym___c_double_quote] = ACTIONS(2951), - [sym___c_single_quote] = ACTIONS(2951), - [sym___r_double_quote] = ACTIONS(2951), - [sym___r_single_quote] = ACTIONS(2951), - }, - [1087] = { - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_as] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_COMMA] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym___global] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_PERCENT] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_GT] = ACTIONS(2939), - [anon_sym_EQ_EQ] = ACTIONS(2939), - [anon_sym_BANG_EQ] = ACTIONS(2939), - [anon_sym_LT_EQ] = ACTIONS(2939), - [anon_sym_GT_EQ] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_pub] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_interface] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2939), - [anon_sym_GT_GT] = ACTIONS(2939), - [anon_sym_GT_GT_GT] = ACTIONS(2939), - [anon_sym_AMP_CARET] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_PIPE_PIPE] = ACTIONS(2939), - [anon_sym_or] = ACTIONS(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_QMARK_DOT] = ACTIONS(2939), - [anon_sym_POUND_LBRACK] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_is] = ACTIONS(2939), - [anon_sym_BANGis] = ACTIONS(2939), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_BANGin] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), - [sym_rune_literal] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2939), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [anon_sym_assert] = ACTIONS(2939), - [anon_sym_defer] = ACTIONS(2939), - [anon_sym_goto] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_DOLLARfor] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_asm] = ACTIONS(2939), - [anon_sym_AT_LBRACK] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2939), - [sym___single_quote] = ACTIONS(2939), - [sym___c_double_quote] = ACTIONS(2939), - [sym___c_single_quote] = ACTIONS(2939), - [sym___r_double_quote] = ACTIONS(2939), - [sym___r_single_quote] = ACTIONS(2939), - }, - [1088] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym___global] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym_AT_LBRACK] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), - }, - [1089] = { - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_identifier] = ACTIONS(2967), - [anon_sym_LF] = ACTIONS(2967), - [anon_sym_CR] = ACTIONS(2967), - [anon_sym_CR_LF] = ACTIONS(2967), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym___global] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [anon_sym_EQ_EQ] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_union] = ACTIONS(2967), - [anon_sym_pub] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), - [anon_sym_interface] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2967), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_GT_GT_GT] = ACTIONS(2967), - [anon_sym_AMP_CARET] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), - [sym_rune_literal] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2967), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [anon_sym_assert] = ACTIONS(2967), - [anon_sym_defer] = ACTIONS(2967), - [anon_sym_goto] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_DOLLARfor] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_asm] = ACTIONS(2967), - [anon_sym_AT_LBRACK] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2967), - [sym___c_double_quote] = ACTIONS(2967), - [sym___c_single_quote] = ACTIONS(2967), - [sym___r_double_quote] = ACTIONS(2967), - [sym___r_single_quote] = ACTIONS(2967), - }, - [1090] = { - [ts_builtin_sym_end] = ACTIONS(2768), - [sym_identifier] = ACTIONS(2766), - [anon_sym_LF] = ACTIONS(2766), - [anon_sym_CR] = ACTIONS(2766), - [anon_sym_CR_LF] = ACTIONS(2766), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym___global] = ACTIONS(2766), - [anon_sym_type] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_union] = ACTIONS(2766), - [anon_sym_pub] = ACTIONS(2766), - [anon_sym_mut] = ACTIONS(2766), - [anon_sym_enum] = ACTIONS(2766), - [anon_sym_interface] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_go] = ACTIONS(2766), - [anon_sym_spawn] = ACTIONS(2766), - [anon_sym_json_DOTdecode] = ACTIONS(2766), - [anon_sym_LBRACK2] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_LT_DASH] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_nil] = ACTIONS(2766), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_DOLLARif] = ACTIONS(2766), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_select] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2766), - [anon_sym_rlock] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_sql] = ACTIONS(2766), - [sym_int_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), - [sym_rune_literal] = ACTIONS(2766), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_shared] = ACTIONS(2766), - [anon_sym_map_LBRACK] = ACTIONS(2766), - [anon_sym_chan] = ACTIONS(2766), - [anon_sym_thread] = ACTIONS(2766), - [anon_sym_atomic] = ACTIONS(2766), - [anon_sym_assert] = ACTIONS(2766), - [anon_sym_defer] = ACTIONS(2766), - [anon_sym_goto] = ACTIONS(2766), - [anon_sym_break] = ACTIONS(2766), - [anon_sym_continue] = ACTIONS(2766), - [anon_sym_return] = ACTIONS(2766), - [anon_sym_DOLLARfor] = ACTIONS(2766), - [anon_sym_for] = ACTIONS(2766), - [anon_sym_POUND] = ACTIONS(2766), - [anon_sym_asm] = ACTIONS(2766), - [anon_sym_AT_LBRACK] = ACTIONS(2766), - [sym___double_quote] = ACTIONS(2766), - [sym___single_quote] = ACTIONS(2766), - [sym___c_double_quote] = ACTIONS(2766), - [sym___c_single_quote] = ACTIONS(2766), - [sym___r_double_quote] = ACTIONS(2766), - [sym___r_single_quote] = ACTIONS(2766), - }, - [1091] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_CR] = ACTIONS(2919), - [anon_sym_CR_LF] = ACTIONS(2919), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym___global] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), - [anon_sym_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_pub] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_interface] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_GT_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_CARET] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_QMARK_DOT] = ACTIONS(2919), - [anon_sym_POUND_LBRACK] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_is] = ACTIONS(2919), - [anon_sym_BANGis] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_BANGin] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [anon_sym_assert] = ACTIONS(2919), - [anon_sym_defer] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_DOLLARfor] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym_AT_LBRACK] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2919), - [sym___single_quote] = ACTIONS(2919), - [sym___c_double_quote] = ACTIONS(2919), - [sym___c_single_quote] = ACTIONS(2919), - [sym___r_double_quote] = ACTIONS(2919), - [sym___r_single_quote] = ACTIONS(2919), - }, - [1092] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_AMP_CARET] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), - }, - [1093] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym___global] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_EQ] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_GT_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_CARET] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_defer] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_DOLLARfor] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym_AT_LBRACK] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2903), - [sym___single_quote] = ACTIONS(2903), - [sym___c_double_quote] = ACTIONS(2903), - [sym___c_single_quote] = ACTIONS(2903), - [sym___r_double_quote] = ACTIONS(2903), - [sym___r_single_quote] = ACTIONS(2903), - }, - [1094] = { - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [1095] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), - }, - [1096] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), - }, - [1097] = { - [ts_builtin_sym_end] = ACTIONS(2770), - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_const] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym___global] = ACTIONS(2772), - [anon_sym_type] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_union] = ACTIONS(2772), - [anon_sym_pub] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_enum] = ACTIONS(2772), - [anon_sym_interface] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [anon_sym_assert] = ACTIONS(2772), - [anon_sym_defer] = ACTIONS(2772), - [anon_sym_goto] = ACTIONS(2772), - [anon_sym_break] = ACTIONS(2772), - [anon_sym_continue] = ACTIONS(2772), - [anon_sym_return] = ACTIONS(2772), - [anon_sym_DOLLARfor] = ACTIONS(2772), - [anon_sym_for] = ACTIONS(2772), - [anon_sym_POUND] = ACTIONS(2772), - [anon_sym_asm] = ACTIONS(2772), - [anon_sym_AT_LBRACK] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [1098] = { - [ts_builtin_sym_end] = ACTIONS(2882), - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_const] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym___global] = ACTIONS(2884), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_union] = ACTIONS(2884), - [anon_sym_pub] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_enum] = ACTIONS(2884), - [anon_sym_interface] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [anon_sym_assert] = ACTIONS(2884), - [anon_sym_defer] = ACTIONS(2884), - [anon_sym_goto] = ACTIONS(2884), - [anon_sym_break] = ACTIONS(2884), - [anon_sym_continue] = ACTIONS(2884), - [anon_sym_return] = ACTIONS(2884), - [anon_sym_DOLLARfor] = ACTIONS(2884), - [anon_sym_for] = ACTIONS(2884), - [anon_sym_POUND] = ACTIONS(2884), - [anon_sym_asm] = ACTIONS(2884), - [anon_sym_AT_LBRACK] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), - }, - [1099] = { - [ts_builtin_sym_end] = ACTIONS(2947), - [sym_identifier] = ACTIONS(2949), - [anon_sym_LF] = ACTIONS(2949), - [anon_sym_CR] = ACTIONS(2949), - [anon_sym_CR_LF] = ACTIONS(2949), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_const] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym___global] = ACTIONS(2949), - [anon_sym_type] = ACTIONS(2949), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_union] = ACTIONS(2949), - [anon_sym_pub] = ACTIONS(2949), - [anon_sym_mut] = ACTIONS(2949), - [anon_sym_enum] = ACTIONS(2949), - [anon_sym_interface] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2949), - [anon_sym_select] = ACTIONS(2949), - [anon_sym_lock] = ACTIONS(2949), - [anon_sym_rlock] = ACTIONS(2949), - [anon_sym_unsafe] = ACTIONS(2949), - [anon_sym_sql] = ACTIONS(2949), - [sym_int_literal] = ACTIONS(2949), - [sym_float_literal] = ACTIONS(2949), - [sym_rune_literal] = ACTIONS(2949), - [anon_sym_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [anon_sym_assert] = ACTIONS(2949), - [anon_sym_defer] = ACTIONS(2949), - [anon_sym_goto] = ACTIONS(2949), - [anon_sym_break] = ACTIONS(2949), - [anon_sym_continue] = ACTIONS(2949), - [anon_sym_return] = ACTIONS(2949), - [anon_sym_DOLLARfor] = ACTIONS(2949), - [anon_sym_for] = ACTIONS(2949), - [anon_sym_POUND] = ACTIONS(2949), - [anon_sym_asm] = ACTIONS(2949), - [anon_sym_AT_LBRACK] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2949), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2949), - [sym___c_single_quote] = ACTIONS(2949), - [sym___r_double_quote] = ACTIONS(2949), - [sym___r_single_quote] = ACTIONS(2949), - }, - [1100] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), - }, - [1101] = { - [ts_builtin_sym_end] = ACTIONS(2965), - [sym_identifier] = ACTIONS(2967), - [anon_sym_LF] = ACTIONS(2967), - [anon_sym_CR] = ACTIONS(2967), - [anon_sym_CR_LF] = ACTIONS(2967), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym___global] = ACTIONS(2967), - [anon_sym_type] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [anon_sym_EQ_EQ] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_union] = ACTIONS(2967), - [anon_sym_pub] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_enum] = ACTIONS(2967), - [anon_sym_interface] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2967), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_GT_GT_GT] = ACTIONS(2967), - [anon_sym_AMP_CARET] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), - [sym_rune_literal] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2967), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [anon_sym_assert] = ACTIONS(2967), - [anon_sym_defer] = ACTIONS(2967), - [anon_sym_goto] = ACTIONS(2967), - [anon_sym_break] = ACTIONS(2967), - [anon_sym_continue] = ACTIONS(2967), - [anon_sym_return] = ACTIONS(2967), - [anon_sym_DOLLARfor] = ACTIONS(2967), - [anon_sym_for] = ACTIONS(2967), - [anon_sym_POUND] = ACTIONS(2967), - [anon_sym_asm] = ACTIONS(2967), - [anon_sym_AT_LBRACK] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2967), - [sym___c_double_quote] = ACTIONS(2967), - [sym___c_single_quote] = ACTIONS(2967), - [sym___r_double_quote] = ACTIONS(2967), - [sym___r_single_quote] = ACTIONS(2967), - }, - [1102] = { - [ts_builtin_sym_end] = ACTIONS(3119), - [sym_identifier] = ACTIONS(3121), - [anon_sym_LF] = ACTIONS(3121), - [anon_sym_CR] = ACTIONS(3121), - [anon_sym_CR_LF] = ACTIONS(3121), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_as] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym___global] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_EQ] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_pub] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3121), - [anon_sym_GT_GT] = ACTIONS(3121), - [anon_sym_GT_GT_GT] = ACTIONS(3121), - [anon_sym_AMP_CARET] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_QMARK_DOT] = ACTIONS(3121), - [anon_sym_POUND_LBRACK] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_is] = ACTIONS(3121), - [anon_sym_BANGis] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_BANGin] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [anon_sym_assert] = ACTIONS(3121), - [anon_sym_defer] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_DOLLARfor] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym_AT_LBRACK] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), - }, - [1103] = { - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [1104] = { - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym___global] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_pub] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3169), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_is] = ACTIONS(3169), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [anon_sym_assert] = ACTIONS(3169), - [anon_sym_defer] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_DOLLARfor] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_asm] = ACTIONS(3169), - [anon_sym_AT_LBRACK] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), - }, - [1105] = { - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3097), - [anon_sym_CR] = ACTIONS(3097), - [anon_sym_CR_LF] = ACTIONS(3097), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym___global] = ACTIONS(3097), - [anon_sym_type] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_EQ] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_pub] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3097), - [anon_sym_GT_GT_GT] = ACTIONS(3097), - [anon_sym_AMP_CARET] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_QMARK_DOT] = ACTIONS(3097), - [anon_sym_POUND_LBRACK] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_BANGis] = ACTIONS(3097), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_BANGin] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [anon_sym_assert] = ACTIONS(3097), - [anon_sym_defer] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_DOLLARfor] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym_AT_LBRACK] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), - }, - [1106] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [1107] = { - [ts_builtin_sym_end] = ACTIONS(3111), - [sym_identifier] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_CR] = ACTIONS(3113), - [anon_sym_CR_LF] = ACTIONS(3113), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_as] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym___global] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_LT_EQ] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_union] = ACTIONS(3113), - [anon_sym_pub] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3113), - [anon_sym_interface] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3113), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_GT_GT_GT] = ACTIONS(3113), - [anon_sym_AMP_CARET] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_QMARK_DOT] = ACTIONS(3113), - [anon_sym_POUND_LBRACK] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_is] = ACTIONS(3113), - [anon_sym_BANGis] = ACTIONS(3113), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_BANGin] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3113), - [sym_rune_literal] = ACTIONS(3113), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3113), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [anon_sym_assert] = ACTIONS(3113), - [anon_sym_defer] = ACTIONS(3113), - [anon_sym_goto] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_DOLLARfor] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_asm] = ACTIONS(3113), - [anon_sym_AT_LBRACK] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3113), - [sym___single_quote] = ACTIONS(3113), - [sym___c_double_quote] = ACTIONS(3113), - [sym___c_single_quote] = ACTIONS(3113), - [sym___r_double_quote] = ACTIONS(3113), - [sym___r_single_quote] = ACTIONS(3113), - }, - [1108] = { - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), - }, - [1109] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(1294), - [sym_plain_type] = STATE(1316), - [sym__plain_type_without_special] = STATE(1344), - [sym_anon_struct_type] = STATE(1345), - [sym_multi_return_type] = STATE(1344), - [sym_result_type] = STATE(1344), - [sym_option_type] = STATE(1344), - [sym_qualified_type] = STATE(1294), - [sym_fixed_array_type] = STATE(1345), - [sym_array_type] = STATE(1345), - [sym_pointer_type] = STATE(1345), - [sym_wrong_pointer_type] = STATE(1345), - [sym_map_type] = STATE(1345), - [sym_channel_type] = STATE(1345), - [sym_shared_type] = STATE(1345), - [sym_thread_type] = STATE(1345), - [sym_atomic_type] = STATE(1345), - [sym_generic_type] = STATE(1345), - [sym_function_type] = STATE(1345), - [sym_identifier] = ACTIONS(3349), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(587), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(587), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_LT_DASH] = ACTIONS(587), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_AMP_CARET] = ACTIONS(587), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(587), - [sym_rune_literal] = ACTIONS(587), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3369), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3373), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(587), - [sym___single_quote] = ACTIONS(587), - [sym___c_double_quote] = ACTIONS(587), - [sym___c_single_quote] = ACTIONS(587), - [sym___r_double_quote] = ACTIONS(587), - [sym___r_single_quote] = ACTIONS(587), - }, - [1110] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(585), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(585), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_RBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_go] = ACTIONS(585), - [anon_sym_spawn] = ACTIONS(585), - [anon_sym_json_DOTdecode] = ACTIONS(583), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_TILDE] = ACTIONS(583), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_AMP_CARET] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [sym_none] = ACTIONS(585), - [sym_true] = ACTIONS(585), - [sym_false] = ACTIONS(585), - [sym_nil] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_if] = ACTIONS(585), - [anon_sym_DOLLARif] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_match] = ACTIONS(585), - [anon_sym_select] = ACTIONS(585), - [anon_sym_lock] = ACTIONS(585), - [anon_sym_rlock] = ACTIONS(585), - [anon_sym_unsafe] = ACTIONS(585), - [anon_sym_sql] = ACTIONS(585), - [sym_int_literal] = ACTIONS(585), - [sym_float_literal] = ACTIONS(583), - [sym_rune_literal] = ACTIONS(583), - [anon_sym_AT] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(585), - [anon_sym_map_LBRACK] = ACTIONS(583), - [anon_sym_chan] = ACTIONS(585), - [anon_sym_thread] = ACTIONS(585), - [anon_sym_atomic] = ACTIONS(585), - [sym___double_quote] = ACTIONS(583), - [sym___single_quote] = ACTIONS(583), - [sym___c_double_quote] = ACTIONS(583), - [sym___c_single_quote] = ACTIONS(583), - [sym___r_double_quote] = ACTIONS(583), - [sym___r_single_quote] = ACTIONS(583), - }, - [1111] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_go] = ACTIONS(595), - [anon_sym_spawn] = ACTIONS(595), - [anon_sym_json_DOTdecode] = ACTIONS(591), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_TILDE] = ACTIONS(591), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [sym_none] = ACTIONS(595), - [sym_true] = ACTIONS(595), - [sym_false] = ACTIONS(595), - [sym_nil] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_if] = ACTIONS(595), - [anon_sym_DOLLARif] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_match] = ACTIONS(595), - [anon_sym_select] = ACTIONS(595), - [anon_sym_lock] = ACTIONS(595), - [anon_sym_rlock] = ACTIONS(595), - [anon_sym_unsafe] = ACTIONS(595), - [anon_sym_sql] = ACTIONS(595), - [sym_int_literal] = ACTIONS(595), - [sym_float_literal] = ACTIONS(591), - [sym_rune_literal] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [sym___double_quote] = ACTIONS(591), - [sym___single_quote] = ACTIONS(591), - [sym___c_double_quote] = ACTIONS(591), - [sym___c_single_quote] = ACTIONS(591), - [sym___r_double_quote] = ACTIONS(591), - [sym___r_single_quote] = ACTIONS(591), - }, - [1112] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(1294), - [sym_plain_type] = STATE(1312), - [sym__plain_type_without_special] = STATE(1344), - [sym_anon_struct_type] = STATE(1345), - [sym_multi_return_type] = STATE(1344), - [sym_result_type] = STATE(1344), - [sym_option_type] = STATE(1344), - [sym_qualified_type] = STATE(1294), - [sym_fixed_array_type] = STATE(1345), - [sym_array_type] = STATE(1345), - [sym_pointer_type] = STATE(1345), - [sym_wrong_pointer_type] = STATE(1345), - [sym_map_type] = STATE(1345), - [sym_channel_type] = STATE(1345), - [sym_shared_type] = STATE(1345), - [sym_thread_type] = STATE(1345), - [sym_atomic_type] = STATE(1345), - [sym_generic_type] = STATE(1345), - [sym_function_type] = STATE(1345), - [sym_identifier] = ACTIONS(3349), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(613), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(613), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(613), - [sym_rune_literal] = ACTIONS(613), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3369), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3373), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(613), - [sym___single_quote] = ACTIONS(613), - [sym___c_double_quote] = ACTIONS(613), - [sym___c_single_quote] = ACTIONS(613), - [sym___r_double_quote] = ACTIONS(613), - [sym___r_single_quote] = ACTIONS(613), - }, - [1113] = { - [sym_reference_expression] = STATE(4423), - [sym_type_reference_expression] = STATE(1294), - [sym_plain_type] = STATE(1386), - [sym__plain_type_without_special] = STATE(1344), - [sym_anon_struct_type] = STATE(1345), - [sym_multi_return_type] = STATE(1344), - [sym_result_type] = STATE(1344), - [sym_option_type] = STATE(1344), - [sym_qualified_type] = STATE(1294), - [sym_fixed_array_type] = STATE(1345), - [sym_array_type] = STATE(1345), - [sym_pointer_type] = STATE(1345), - [sym_wrong_pointer_type] = STATE(1345), - [sym_map_type] = STATE(1345), - [sym_channel_type] = STATE(1345), - [sym_shared_type] = STATE(1345), - [sym_thread_type] = STATE(1345), - [sym_atomic_type] = STATE(1345), - [sym_generic_type] = STATE(1345), - [sym_function_type] = STATE(1345), - [sym_identifier] = ACTIONS(3349), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_RBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3357), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(551), - [anon_sym_LBRACK2] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(551), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(3365), - [anon_sym_LT_DASH] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(551), - [anon_sym_AMP_CARET] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(551), - [sym_rune_literal] = ACTIONS(551), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3367), - [anon_sym_map_LBRACK] = ACTIONS(3369), - [anon_sym_chan] = ACTIONS(3371), - [anon_sym_thread] = ACTIONS(3373), - [anon_sym_atomic] = ACTIONS(3375), - [sym___double_quote] = ACTIONS(551), - [sym___single_quote] = ACTIONS(551), - [sym___c_double_quote] = ACTIONS(551), - [sym___c_single_quote] = ACTIONS(551), - [sym___r_double_quote] = ACTIONS(551), - [sym___r_single_quote] = ACTIONS(551), - }, - [1114] = { - [sym_reference_expression] = STATE(4515), - [sym_type_reference_expression] = STATE(1411), - [sym_plain_type] = STATE(1435), - [sym__plain_type_without_special] = STATE(1465), - [sym_anon_struct_type] = STATE(1427), - [sym_multi_return_type] = STATE(1465), - [sym_result_type] = STATE(1465), - [sym_option_type] = STATE(1465), - [sym_qualified_type] = STATE(1411), - [sym_fixed_array_type] = STATE(1427), - [sym_array_type] = STATE(1427), - [sym_pointer_type] = STATE(1427), - [sym_wrong_pointer_type] = STATE(1427), - [sym_map_type] = STATE(1427), - [sym_channel_type] = STATE(1427), - [sym_shared_type] = STATE(1427), - [sym_thread_type] = STATE(1427), - [sym_atomic_type] = STATE(1427), - [sym_generic_type] = STATE(1427), - [sym_function_type] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(613), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_const] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym___global] = ACTIONS(615), - [anon_sym_type] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(615), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_enum] = ACTIONS(615), - [anon_sym_interface] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(615), - [anon_sym_spawn] = ACTIONS(615), - [anon_sym_json_DOTdecode] = ACTIONS(615), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(615), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(615), - [sym_none] = ACTIONS(615), - [sym_true] = ACTIONS(615), - [sym_false] = ACTIONS(615), - [sym_nil] = ACTIONS(615), - [anon_sym_if] = ACTIONS(615), - [anon_sym_DOLLARif] = ACTIONS(615), - [anon_sym_match] = ACTIONS(615), - [anon_sym_select] = ACTIONS(615), - [anon_sym_lock] = ACTIONS(615), - [anon_sym_rlock] = ACTIONS(615), - [anon_sym_unsafe] = ACTIONS(615), - [anon_sym_sql] = ACTIONS(615), - [sym_int_literal] = ACTIONS(615), - [sym_float_literal] = ACTIONS(615), - [sym_rune_literal] = ACTIONS(615), - [anon_sym_AT] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(615), - [anon_sym_defer] = ACTIONS(615), - [anon_sym_goto] = ACTIONS(615), - [anon_sym_break] = ACTIONS(615), - [anon_sym_continue] = ACTIONS(615), - [anon_sym_return] = ACTIONS(615), - [anon_sym_DOLLARfor] = ACTIONS(615), - [anon_sym_for] = ACTIONS(615), - [anon_sym_POUND] = ACTIONS(615), - [anon_sym_asm] = ACTIONS(615), - [anon_sym_AT_LBRACK] = ACTIONS(615), - [sym___double_quote] = ACTIONS(615), - [sym___single_quote] = ACTIONS(615), - [sym___c_double_quote] = ACTIONS(615), - [sym___c_single_quote] = ACTIONS(615), - [sym___r_double_quote] = ACTIONS(615), - [sym___r_single_quote] = ACTIONS(615), - }, - [1115] = { - [sym_reference_expression] = STATE(4515), - [sym_type_reference_expression] = STATE(1411), - [sym_plain_type] = STATE(1437), - [sym__plain_type_without_special] = STATE(1465), - [sym_anon_struct_type] = STATE(1427), - [sym_multi_return_type] = STATE(1465), - [sym_result_type] = STATE(1465), - [sym_option_type] = STATE(1465), - [sym_qualified_type] = STATE(1411), - [sym_fixed_array_type] = STATE(1427), - [sym_array_type] = STATE(1427), - [sym_pointer_type] = STATE(1427), - [sym_wrong_pointer_type] = STATE(1427), - [sym_map_type] = STATE(1427), - [sym_channel_type] = STATE(1427), - [sym_shared_type] = STATE(1427), - [sym_thread_type] = STATE(1427), - [sym_atomic_type] = STATE(1427), - [sym_generic_type] = STATE(1427), - [sym_function_type] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(551), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(555), - [anon_sym_const] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym___global] = ACTIONS(555), - [anon_sym_type] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(555), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_enum] = ACTIONS(555), - [anon_sym_interface] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(555), - [anon_sym_spawn] = ACTIONS(555), - [anon_sym_json_DOTdecode] = ACTIONS(555), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(555), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(555), - [sym_none] = ACTIONS(555), - [sym_true] = ACTIONS(555), - [sym_false] = ACTIONS(555), - [sym_nil] = ACTIONS(555), - [anon_sym_if] = ACTIONS(555), - [anon_sym_DOLLARif] = ACTIONS(555), - [anon_sym_match] = ACTIONS(555), - [anon_sym_select] = ACTIONS(555), - [anon_sym_lock] = ACTIONS(555), - [anon_sym_rlock] = ACTIONS(555), - [anon_sym_unsafe] = ACTIONS(555), - [anon_sym_sql] = ACTIONS(555), - [sym_int_literal] = ACTIONS(555), - [sym_float_literal] = ACTIONS(555), - [sym_rune_literal] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(555), - [anon_sym_defer] = ACTIONS(555), - [anon_sym_goto] = ACTIONS(555), - [anon_sym_break] = ACTIONS(555), - [anon_sym_continue] = ACTIONS(555), - [anon_sym_return] = ACTIONS(555), - [anon_sym_DOLLARfor] = ACTIONS(555), - [anon_sym_for] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(555), - [anon_sym_asm] = ACTIONS(555), - [anon_sym_AT_LBRACK] = ACTIONS(555), - [sym___double_quote] = ACTIONS(555), - [sym___single_quote] = ACTIONS(555), - [sym___c_double_quote] = ACTIONS(555), - [sym___c_single_quote] = ACTIONS(555), - [sym___r_double_quote] = ACTIONS(555), - [sym___r_single_quote] = ACTIONS(555), - }, - [1116] = { - [sym_reference_expression] = STATE(4515), - [sym_type_reference_expression] = STATE(1411), - [sym_plain_type] = STATE(1472), - [sym__plain_type_without_special] = STATE(1465), - [sym_anon_struct_type] = STATE(1427), - [sym_multi_return_type] = STATE(1465), - [sym_result_type] = STATE(1465), - [sym_option_type] = STATE(1465), - [sym_qualified_type] = STATE(1411), - [sym_fixed_array_type] = STATE(1427), - [sym_array_type] = STATE(1427), - [sym_pointer_type] = STATE(1427), - [sym_wrong_pointer_type] = STATE(1427), - [sym_map_type] = STATE(1427), - [sym_channel_type] = STATE(1427), - [sym_shared_type] = STATE(1427), - [sym_thread_type] = STATE(1427), - [sym_atomic_type] = STATE(1427), - [sym_generic_type] = STATE(1427), - [sym_function_type] = STATE(1427), - [ts_builtin_sym_end] = ACTIONS(587), - [sym_identifier] = ACTIONS(3383), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(589), - [anon_sym_const] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3385), - [anon_sym___global] = ACTIONS(589), - [anon_sym_type] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3389), - [anon_sym_struct] = ACTIONS(3391), - [anon_sym_union] = ACTIONS(589), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_enum] = ACTIONS(589), - [anon_sym_interface] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3393), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_go] = ACTIONS(589), - [anon_sym_spawn] = ACTIONS(589), - [anon_sym_json_DOTdecode] = ACTIONS(589), - [anon_sym_LBRACK2] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(589), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3399), - [anon_sym_LT_DASH] = ACTIONS(589), - [sym_none] = ACTIONS(589), - [sym_true] = ACTIONS(589), - [sym_false] = ACTIONS(589), - [sym_nil] = ACTIONS(589), - [anon_sym_if] = ACTIONS(589), - [anon_sym_DOLLARif] = ACTIONS(589), - [anon_sym_match] = ACTIONS(589), - [anon_sym_select] = ACTIONS(589), - [anon_sym_lock] = ACTIONS(589), - [anon_sym_rlock] = ACTIONS(589), - [anon_sym_unsafe] = ACTIONS(589), - [anon_sym_sql] = ACTIONS(589), - [sym_int_literal] = ACTIONS(589), - [sym_float_literal] = ACTIONS(589), - [sym_rune_literal] = ACTIONS(589), - [anon_sym_AT] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3401), - [anon_sym_map_LBRACK] = ACTIONS(3403), - [anon_sym_chan] = ACTIONS(3405), - [anon_sym_thread] = ACTIONS(3407), - [anon_sym_atomic] = ACTIONS(3409), - [anon_sym_assert] = ACTIONS(589), - [anon_sym_defer] = ACTIONS(589), - [anon_sym_goto] = ACTIONS(589), - [anon_sym_break] = ACTIONS(589), - [anon_sym_continue] = ACTIONS(589), - [anon_sym_return] = ACTIONS(589), - [anon_sym_DOLLARfor] = ACTIONS(589), - [anon_sym_for] = ACTIONS(589), - [anon_sym_POUND] = ACTIONS(589), - [anon_sym_asm] = ACTIONS(589), - [anon_sym_AT_LBRACK] = ACTIONS(589), - [sym___double_quote] = ACTIONS(589), - [sym___single_quote] = ACTIONS(589), - [sym___c_double_quote] = ACTIONS(589), - [sym___c_single_quote] = ACTIONS(589), - [sym___r_double_quote] = ACTIONS(589), - [sym___r_single_quote] = ACTIONS(589), - }, - [1117] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1118] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1666), - [sym_plain_type] = STATE(1654), - [sym__plain_type_without_special] = STATE(1665), - [sym_anon_struct_type] = STATE(1641), - [sym_multi_return_type] = STATE(1665), - [sym_result_type] = STATE(1665), - [sym_option_type] = STATE(1665), - [sym_qualified_type] = STATE(1666), - [sym_fixed_array_type] = STATE(1641), - [sym_array_type] = STATE(1641), - [sym_pointer_type] = STATE(1641), - [sym_wrong_pointer_type] = STATE(1641), - [sym_map_type] = STATE(1641), - [sym_channel_type] = STATE(1641), - [sym_shared_type] = STATE(1641), - [sym_thread_type] = STATE(1641), - [sym_atomic_type] = STATE(1641), - [sym_generic_type] = STATE(1641), - [sym_function_type] = STATE(1641), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(589), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3437), - }, - [1119] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3439), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(595), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_LT_LT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), - [anon_sym_AMP_EQ] = ACTIONS(595), - [anon_sym_AMP_CARET_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_PIPE_EQ] = ACTIONS(595), - [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1120] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1666), - [sym_plain_type] = STATE(1643), - [sym__plain_type_without_special] = STATE(1665), - [sym_anon_struct_type] = STATE(1641), - [sym_multi_return_type] = STATE(1665), - [sym_result_type] = STATE(1665), - [sym_option_type] = STATE(1665), - [sym_qualified_type] = STATE(1666), - [sym_fixed_array_type] = STATE(1641), - [sym_array_type] = STATE(1641), - [sym_pointer_type] = STATE(1641), - [sym_wrong_pointer_type] = STATE(1641), - [sym_map_type] = STATE(1641), - [sym_channel_type] = STATE(1641), - [sym_shared_type] = STATE(1641), - [sym_thread_type] = STATE(1641), - [sym_atomic_type] = STATE(1641), - [sym_generic_type] = STATE(1641), - [sym_function_type] = STATE(1641), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(615), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3437), - }, - [1121] = { - [sym_reference_expression] = STATE(4409), - [sym_type_reference_expression] = STATE(1666), - [sym_plain_type] = STATE(1661), - [sym__plain_type_without_special] = STATE(1665), - [sym_anon_struct_type] = STATE(1641), - [sym_multi_return_type] = STATE(1665), - [sym_result_type] = STATE(1665), - [sym_option_type] = STATE(1665), - [sym_qualified_type] = STATE(1666), - [sym_fixed_array_type] = STATE(1641), - [sym_array_type] = STATE(1641), - [sym_pointer_type] = STATE(1641), - [sym_wrong_pointer_type] = STATE(1641), - [sym_map_type] = STATE(1641), - [sym_channel_type] = STATE(1641), - [sym_shared_type] = STATE(1641), - [sym_thread_type] = STATE(1641), - [sym_atomic_type] = STATE(1641), - [sym_generic_type] = STATE(1641), - [sym_function_type] = STATE(1641), - [sym_identifier] = ACTIONS(3411), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3419), - [anon_sym_COLON] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_LBRACK2] = ACTIONS(3425), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3427), - [anon_sym_LT_DASH] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_AMP_CARET_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_COLON_EQ] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3429), - [anon_sym_map_LBRACK] = ACTIONS(3431), - [anon_sym_chan] = ACTIONS(3433), - [anon_sym_thread] = ACTIONS(3435), - [anon_sym_atomic] = ACTIONS(3437), - }, - [1122] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1684), - [anon_sym_LF] = ACTIONS(1684), - [anon_sym_CR] = ACTIONS(1684), - [anon_sym_CR_LF] = ACTIONS(1684), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1684), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1684), - [anon_sym_EQ] = ACTIONS(1690), - [anon_sym___global] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1684), - [anon_sym_fn] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_struct] = ACTIONS(1684), - [anon_sym_union] = ACTIONS(1684), - [anon_sym_pub] = ACTIONS(1684), - [anon_sym_mut] = ACTIONS(1684), - [anon_sym_enum] = ACTIONS(1684), - [anon_sym_interface] = ACTIONS(1684), - [anon_sym_QMARK] = ACTIONS(1684), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_go] = ACTIONS(1684), - [anon_sym_spawn] = ACTIONS(1684), - [anon_sym_json_DOTdecode] = ACTIONS(1684), - [anon_sym_LBRACK2] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1684), - [anon_sym_CARET] = ACTIONS(1684), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_LT_DASH] = ACTIONS(1684), - [sym_none] = ACTIONS(1684), - [sym_true] = ACTIONS(1684), - [sym_false] = ACTIONS(1684), - [sym_nil] = ACTIONS(1684), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_DOLLARif] = ACTIONS(1684), - [anon_sym_match] = ACTIONS(1684), - [anon_sym_select] = ACTIONS(1684), - [anon_sym_STAR_EQ] = ACTIONS(1690), - [anon_sym_SLASH_EQ] = ACTIONS(1690), - [anon_sym_PERCENT_EQ] = ACTIONS(1690), - [anon_sym_LT_LT_EQ] = ACTIONS(1690), - [anon_sym_GT_GT_EQ] = ACTIONS(1690), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1690), - [anon_sym_AMP_EQ] = ACTIONS(1690), - [anon_sym_AMP_CARET_EQ] = ACTIONS(1690), - [anon_sym_PLUS_EQ] = ACTIONS(1690), - [anon_sym_DASH_EQ] = ACTIONS(1690), - [anon_sym_PIPE_EQ] = ACTIONS(1690), - [anon_sym_CARET_EQ] = ACTIONS(1690), - [anon_sym_COLON_EQ] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1684), - [anon_sym_rlock] = ACTIONS(1684), - [anon_sym_unsafe] = ACTIONS(1684), - [anon_sym_sql] = ACTIONS(1684), - [sym_int_literal] = ACTIONS(1684), - [sym_float_literal] = ACTIONS(1684), - [sym_rune_literal] = ACTIONS(1684), - [anon_sym_AT] = ACTIONS(1684), - [anon_sym_shared] = ACTIONS(1684), - [anon_sym_map_LBRACK] = ACTIONS(1684), - [anon_sym_chan] = ACTIONS(1684), - [anon_sym_thread] = ACTIONS(1684), - [anon_sym_atomic] = ACTIONS(1684), - [anon_sym_assert] = ACTIONS(1684), - [anon_sym_defer] = ACTIONS(1684), - [anon_sym_goto] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_DOLLARfor] = ACTIONS(1684), - [anon_sym_for] = ACTIONS(1684), - [anon_sym_POUND] = ACTIONS(1684), - [anon_sym_asm] = ACTIONS(1684), - [anon_sym_AT_LBRACK] = ACTIONS(1684), - [sym___double_quote] = ACTIONS(1684), - [sym___single_quote] = ACTIONS(1684), - [sym___c_double_quote] = ACTIONS(1684), - [sym___c_single_quote] = ACTIONS(1684), - [sym___r_double_quote] = ACTIONS(1684), - [sym___r_single_quote] = ACTIONS(1684), - }, - [1123] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_STAR_EQ] = ACTIONS(585), - [anon_sym_SLASH_EQ] = ACTIONS(585), - [anon_sym_PERCENT_EQ] = ACTIONS(585), - [anon_sym_LT_LT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_EQ] = ACTIONS(585), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(585), - [anon_sym_AMP_EQ] = ACTIONS(585), - [anon_sym_AMP_CARET_EQ] = ACTIONS(585), - [anon_sym_PLUS_EQ] = ACTIONS(585), - [anon_sym_DASH_EQ] = ACTIONS(585), - [anon_sym_PIPE_EQ] = ACTIONS(585), - [anon_sym_CARET_EQ] = ACTIONS(585), - [anon_sym_COLON_EQ] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1124] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_STAR_EQ] = ACTIONS(595), - [anon_sym_SLASH_EQ] = ACTIONS(595), - [anon_sym_PERCENT_EQ] = ACTIONS(595), - [anon_sym_LT_LT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_EQ] = ACTIONS(595), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(595), - [anon_sym_AMP_EQ] = ACTIONS(595), - [anon_sym_AMP_CARET_EQ] = ACTIONS(595), - [anon_sym_PLUS_EQ] = ACTIONS(595), - [anon_sym_DASH_EQ] = ACTIONS(595), - [anon_sym_PIPE_EQ] = ACTIONS(595), - [anon_sym_CARET_EQ] = ACTIONS(595), - [anon_sym_COLON_EQ] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1125] = { - [sym_reference_expression] = STATE(4549), - [sym_type_reference_expression] = STATE(1787), - [sym_plain_type] = STATE(1831), - [sym__plain_type_without_special] = STATE(1886), - [sym_anon_struct_type] = STATE(1885), - [sym_multi_return_type] = STATE(1886), - [sym_result_type] = STATE(1886), - [sym_option_type] = STATE(1886), - [sym_qualified_type] = STATE(1787), - [sym_fixed_array_type] = STATE(1885), - [sym_array_type] = STATE(1885), - [sym_pointer_type] = STATE(1885), - [sym_wrong_pointer_type] = STATE(1885), - [sym_map_type] = STATE(1885), - [sym_channel_type] = STATE(1885), - [sym_shared_type] = STATE(1885), - [sym_thread_type] = STATE(1885), - [sym_atomic_type] = STATE(1885), - [sym_generic_type] = STATE(1885), - [sym_function_type] = STATE(1885), - [sym_identifier] = ACTIONS(3443), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_LBRACK2] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_STAR_EQ] = ACTIONS(615), - [anon_sym_SLASH_EQ] = ACTIONS(615), - [anon_sym_PERCENT_EQ] = ACTIONS(615), - [anon_sym_LT_LT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_EQ] = ACTIONS(615), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(615), - [anon_sym_AMP_EQ] = ACTIONS(615), - [anon_sym_AMP_CARET_EQ] = ACTIONS(615), - [anon_sym_PLUS_EQ] = ACTIONS(615), - [anon_sym_DASH_EQ] = ACTIONS(615), - [anon_sym_PIPE_EQ] = ACTIONS(615), - [anon_sym_CARET_EQ] = ACTIONS(615), - [anon_sym_COLON_EQ] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3461), - [anon_sym_map_LBRACK] = ACTIONS(3463), - [anon_sym_chan] = ACTIONS(3465), - [anon_sym_thread] = ACTIONS(3467), - [anon_sym_atomic] = ACTIONS(3469), - }, - [1126] = { - [sym_reference_expression] = STATE(4549), - [sym_type_reference_expression] = STATE(1787), - [sym_plain_type] = STATE(1872), - [sym__plain_type_without_special] = STATE(1886), - [sym_anon_struct_type] = STATE(1885), - [sym_multi_return_type] = STATE(1886), - [sym_result_type] = STATE(1886), - [sym_option_type] = STATE(1886), - [sym_qualified_type] = STATE(1787), - [sym_fixed_array_type] = STATE(1885), - [sym_array_type] = STATE(1885), - [sym_pointer_type] = STATE(1885), - [sym_wrong_pointer_type] = STATE(1885), - [sym_map_type] = STATE(1885), - [sym_channel_type] = STATE(1885), - [sym_shared_type] = STATE(1885), - [sym_thread_type] = STATE(1885), - [sym_atomic_type] = STATE(1885), - [sym_generic_type] = STATE(1885), - [sym_function_type] = STATE(1885), - [sym_identifier] = ACTIONS(3443), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_LBRACK2] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_AMP_CARET_EQ] = ACTIONS(555), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_COLON_EQ] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3461), - [anon_sym_map_LBRACK] = ACTIONS(3463), - [anon_sym_chan] = ACTIONS(3465), - [anon_sym_thread] = ACTIONS(3467), - [anon_sym_atomic] = ACTIONS(3469), - }, - [1127] = { - [sym_reference_expression] = STATE(4549), - [sym_type_reference_expression] = STATE(1787), - [sym_plain_type] = STATE(1849), - [sym__plain_type_without_special] = STATE(1886), - [sym_anon_struct_type] = STATE(1885), - [sym_multi_return_type] = STATE(1886), - [sym_result_type] = STATE(1886), - [sym_option_type] = STATE(1886), - [sym_qualified_type] = STATE(1787), - [sym_fixed_array_type] = STATE(1885), - [sym_array_type] = STATE(1885), - [sym_pointer_type] = STATE(1885), - [sym_wrong_pointer_type] = STATE(1885), - [sym_map_type] = STATE(1885), - [sym_channel_type] = STATE(1885), - [sym_shared_type] = STATE(1885), - [sym_thread_type] = STATE(1885), - [sym_atomic_type] = STATE(1885), - [sym_generic_type] = STATE(1885), - [sym_function_type] = STATE(1885), - [sym_identifier] = ACTIONS(3443), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_LBRACK2] = ACTIONS(3457), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3459), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_STAR_EQ] = ACTIONS(589), - [anon_sym_SLASH_EQ] = ACTIONS(589), - [anon_sym_PERCENT_EQ] = ACTIONS(589), - [anon_sym_LT_LT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_EQ] = ACTIONS(589), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(589), - [anon_sym_AMP_EQ] = ACTIONS(589), - [anon_sym_AMP_CARET_EQ] = ACTIONS(589), - [anon_sym_PLUS_EQ] = ACTIONS(589), - [anon_sym_DASH_EQ] = ACTIONS(589), - [anon_sym_PIPE_EQ] = ACTIONS(589), - [anon_sym_CARET_EQ] = ACTIONS(589), - [anon_sym_COLON_EQ] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3461), - [anon_sym_map_LBRACK] = ACTIONS(3463), - [anon_sym_chan] = ACTIONS(3465), - [anon_sym_thread] = ACTIONS(3467), - [anon_sym_atomic] = ACTIONS(3469), - }, - [1128] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1129] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1130] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2112), - [anon_sym_LF] = ACTIONS(2112), - [anon_sym_CR] = ACTIONS(2112), - [anon_sym_CR_LF] = ACTIONS(2112), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2112), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2112), - [anon_sym_COMMA] = ACTIONS(2112), - [anon_sym_RBRACE] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2112), - [anon_sym_BANG_EQ] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2112), - [anon_sym_DASH_DASH] = ACTIONS(2112), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2112), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2112), - [anon_sym_PIPE_PIPE] = ACTIONS(2112), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2112), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2112), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2112), - [sym_rune_literal] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2112), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2112), - [sym___single_quote] = ACTIONS(2112), - [sym___c_double_quote] = ACTIONS(2112), - [sym___c_single_quote] = ACTIONS(2112), - [sym___r_double_quote] = ACTIONS(2112), - [sym___r_single_quote] = ACTIONS(2112), - }, - [1131] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1132] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1133] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(3495), - [anon_sym_LF] = ACTIONS(3495), - [anon_sym_CR] = ACTIONS(3495), - [anon_sym_CR_LF] = ACTIONS(3495), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3495), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3495), - [anon_sym_COMMA] = ACTIONS(3495), - [anon_sym_RBRACE] = ACTIONS(3495), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(3495), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3495), - [anon_sym_mut] = ACTIONS(3495), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(3495), - [anon_sym_spawn] = ACTIONS(3495), - [anon_sym_json_DOTdecode] = ACTIONS(3495), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3495), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(3495), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3505), - [sym_none] = ACTIONS(3495), - [sym_true] = ACTIONS(3495), - [sym_false] = ACTIONS(3495), - [sym_nil] = ACTIONS(3495), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(3495), - [anon_sym_DOLLARif] = ACTIONS(3495), - [anon_sym_is] = ACTIONS(3507), - [anon_sym_BANGis] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3495), - [anon_sym_select] = ACTIONS(3495), - [anon_sym_lock] = ACTIONS(3495), - [anon_sym_rlock] = ACTIONS(3495), - [anon_sym_unsafe] = ACTIONS(3495), - [anon_sym_sql] = ACTIONS(3495), - [sym_int_literal] = ACTIONS(3495), - [sym_float_literal] = ACTIONS(3495), - [sym_rune_literal] = ACTIONS(3495), - [anon_sym_AT] = ACTIONS(3495), - [anon_sym_shared] = ACTIONS(3495), - [anon_sym_map_LBRACK] = ACTIONS(3495), - [anon_sym_chan] = ACTIONS(3495), - [anon_sym_thread] = ACTIONS(3495), - [anon_sym_atomic] = ACTIONS(3495), - [sym___double_quote] = ACTIONS(3495), - [sym___single_quote] = ACTIONS(3495), - [sym___c_double_quote] = ACTIONS(3495), - [sym___c_single_quote] = ACTIONS(3495), - [sym___r_double_quote] = ACTIONS(3495), - [sym___r_single_quote] = ACTIONS(3495), - }, - [1134] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2164), - [anon_sym_LF] = ACTIONS(2164), - [anon_sym_CR] = ACTIONS(2164), - [anon_sym_CR_LF] = ACTIONS(2164), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2164), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2164), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_mut] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2164), - [anon_sym_DASH_DASH] = ACTIONS(2164), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2164), - [anon_sym_spawn] = ACTIONS(2164), - [anon_sym_json_DOTdecode] = ACTIONS(2164), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_LT_DASH] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_AMP_CARET] = ACTIONS(2164), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_or] = ACTIONS(2164), - [sym_none] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_nil] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_DOLLARif] = ACTIONS(2164), - [anon_sym_is] = ACTIONS(2164), - [anon_sym_BANGis] = ACTIONS(2164), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_BANGin] = ACTIONS(2164), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_select] = ACTIONS(2164), - [anon_sym_lock] = ACTIONS(2164), - [anon_sym_rlock] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_sql] = ACTIONS(2164), - [sym_int_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2164), - [sym_rune_literal] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_shared] = ACTIONS(2164), - [anon_sym_map_LBRACK] = ACTIONS(2164), - [anon_sym_chan] = ACTIONS(2164), - [anon_sym_thread] = ACTIONS(2164), - [anon_sym_atomic] = ACTIONS(2164), - [sym___double_quote] = ACTIONS(2164), - [sym___single_quote] = ACTIONS(2164), - [sym___c_double_quote] = ACTIONS(2164), - [sym___c_single_quote] = ACTIONS(2164), - [sym___r_double_quote] = ACTIONS(2164), - [sym___r_single_quote] = ACTIONS(2164), - }, - [1135] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2210), - [anon_sym_LF] = ACTIONS(2210), - [anon_sym_CR] = ACTIONS(2210), - [anon_sym_CR_LF] = ACTIONS(2210), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2210), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2210), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2210), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3505), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(3507), - [anon_sym_BANGis] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2210), - [sym_rune_literal] = ACTIONS(2210), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2210), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2210), - [sym___single_quote] = ACTIONS(2210), - [sym___c_double_quote] = ACTIONS(2210), - [sym___c_single_quote] = ACTIONS(2210), - [sym___r_double_quote] = ACTIONS(2210), - [sym___r_single_quote] = ACTIONS(2210), - }, - [1136] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2220), - [anon_sym_LF] = ACTIONS(2220), - [anon_sym_CR] = ACTIONS(2220), - [anon_sym_CR_LF] = ACTIONS(2220), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2220), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2220), - [anon_sym_RBRACE] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2220), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3505), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(3507), - [anon_sym_BANGis] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2220), - [sym_rune_literal] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2220), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2220), - [sym___single_quote] = ACTIONS(2220), - [sym___c_double_quote] = ACTIONS(2220), - [sym___c_single_quote] = ACTIONS(2220), - [sym___r_double_quote] = ACTIONS(2220), - [sym___r_single_quote] = ACTIONS(2220), - }, - [1137] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2230), - [anon_sym_LF] = ACTIONS(2230), - [anon_sym_CR] = ACTIONS(2230), - [anon_sym_CR_LF] = ACTIONS(2230), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2230), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2230), - [anon_sym_spawn] = ACTIONS(2230), - [anon_sym_json_DOTdecode] = ACTIONS(2230), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_LT_DASH] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP_CARET] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_or] = ACTIONS(2230), - [sym_none] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_nil] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_DOLLARif] = ACTIONS(2230), - [anon_sym_is] = ACTIONS(2230), - [anon_sym_BANGis] = ACTIONS(2230), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_BANGin] = ACTIONS(2230), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_select] = ACTIONS(2230), - [anon_sym_lock] = ACTIONS(2230), - [anon_sym_rlock] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_sql] = ACTIONS(2230), - [sym_int_literal] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2230), - [sym_rune_literal] = ACTIONS(2230), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_shared] = ACTIONS(2230), - [anon_sym_map_LBRACK] = ACTIONS(2230), - [anon_sym_chan] = ACTIONS(2230), - [anon_sym_thread] = ACTIONS(2230), - [anon_sym_atomic] = ACTIONS(2230), - [sym___double_quote] = ACTIONS(2230), - [sym___single_quote] = ACTIONS(2230), - [sym___c_double_quote] = ACTIONS(2230), - [sym___c_single_quote] = ACTIONS(2230), - [sym___r_double_quote] = ACTIONS(2230), - [sym___r_single_quote] = ACTIONS(2230), - }, - [1138] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(3511), - [anon_sym_LF] = ACTIONS(3511), - [anon_sym_CR] = ACTIONS(3511), - [anon_sym_CR_LF] = ACTIONS(3511), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3511), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(3497), - [anon_sym_LBRACE] = ACTIONS(3511), - [anon_sym_COMMA] = ACTIONS(3511), - [anon_sym_RBRACE] = ACTIONS(3511), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(3511), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(3487), - [anon_sym_GT] = ACTIONS(3487), - [anon_sym_EQ_EQ] = ACTIONS(3487), - [anon_sym_BANG_EQ] = ACTIONS(3487), - [anon_sym_LT_EQ] = ACTIONS(3487), - [anon_sym_GT_EQ] = ACTIONS(3487), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(3511), - [anon_sym_mut] = ACTIONS(3511), - [anon_sym_PLUS_PLUS] = ACTIONS(3499), - [anon_sym_DASH_DASH] = ACTIONS(3501), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(3511), - [anon_sym_spawn] = ACTIONS(3511), - [anon_sym_json_DOTdecode] = ACTIONS(3511), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(3511), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(3511), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(3489), - [anon_sym_PIPE_PIPE] = ACTIONS(3503), - [anon_sym_or] = ACTIONS(3505), - [sym_none] = ACTIONS(3511), - [sym_true] = ACTIONS(3511), - [sym_false] = ACTIONS(3511), - [sym_nil] = ACTIONS(3511), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(3511), - [anon_sym_DOLLARif] = ACTIONS(3511), - [anon_sym_is] = ACTIONS(3507), - [anon_sym_BANGis] = ACTIONS(3509), - [anon_sym_in] = ACTIONS(3491), - [anon_sym_BANGin] = ACTIONS(3493), - [anon_sym_match] = ACTIONS(3511), - [anon_sym_select] = ACTIONS(3511), - [anon_sym_lock] = ACTIONS(3511), - [anon_sym_rlock] = ACTIONS(3511), - [anon_sym_unsafe] = ACTIONS(3511), - [anon_sym_sql] = ACTIONS(3511), - [sym_int_literal] = ACTIONS(3511), - [sym_float_literal] = ACTIONS(3511), - [sym_rune_literal] = ACTIONS(3511), - [anon_sym_AT] = ACTIONS(3511), - [anon_sym_shared] = ACTIONS(3511), - [anon_sym_map_LBRACK] = ACTIONS(3511), - [anon_sym_chan] = ACTIONS(3511), - [anon_sym_thread] = ACTIONS(3511), - [anon_sym_atomic] = ACTIONS(3511), - [sym___double_quote] = ACTIONS(3511), - [sym___single_quote] = ACTIONS(3511), - [sym___c_double_quote] = ACTIONS(3511), - [sym___c_single_quote] = ACTIONS(3511), - [sym___r_double_quote] = ACTIONS(3511), - [sym___r_single_quote] = ACTIONS(3511), - }, - [1139] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2076), - [anon_sym_LF] = ACTIONS(2076), - [anon_sym_CR] = ACTIONS(2076), - [anon_sym_CR_LF] = ACTIONS(2076), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2076), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2076), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2076), - [anon_sym_DASH_DASH] = ACTIONS(2076), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2076), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_LT_DASH] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_AMP_CARET] = ACTIONS(2076), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2076), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2076), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2076), - [sym_rune_literal] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2076), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2076), - [sym___single_quote] = ACTIONS(2076), - [sym___c_double_quote] = ACTIONS(2076), - [sym___c_single_quote] = ACTIONS(2076), - [sym___r_double_quote] = ACTIONS(2076), - [sym___r_single_quote] = ACTIONS(2076), - }, - [1140] = { - [sym_type_parameters] = STATE(4123), - [sym_argument_list] = STATE(1199), - [sym_or_block] = STATE(1200), - [sym_identifier] = ACTIONS(2108), - [anon_sym_LF] = ACTIONS(2108), - [anon_sym_CR] = ACTIONS(2108), - [anon_sym_CR_LF] = ACTIONS(2108), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2108), - [anon_sym_DOT] = ACTIONS(3471), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2108), - [anon_sym_COMMA] = ACTIONS(2108), - [anon_sym_RBRACE] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_PIPE] = ACTIONS(3485), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(3485), - [anon_sym_DASH] = ACTIONS(3485), - [anon_sym_STAR] = ACTIONS(3475), - [anon_sym_SLASH] = ACTIONS(3475), - [anon_sym_PERCENT] = ACTIONS(3475), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(3477), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2108), - [anon_sym_DASH_DASH] = ACTIONS(2108), - [anon_sym_QMARK] = ACTIONS(3479), - [anon_sym_BANG] = ACTIONS(3481), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2108), - [anon_sym_LBRACK2] = ACTIONS(3483), - [anon_sym_TILDE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(3485), - [anon_sym_AMP] = ACTIONS(3475), - [anon_sym_LT_DASH] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(3475), - [anon_sym_GT_GT] = ACTIONS(3475), - [anon_sym_GT_GT_GT] = ACTIONS(3475), - [anon_sym_AMP_CARET] = ACTIONS(3475), - [anon_sym_AMP_AMP] = ACTIONS(2108), - [anon_sym_PIPE_PIPE] = ACTIONS(2108), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(3471), - [anon_sym_POUND_LBRACK] = ACTIONS(3483), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2108), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2108), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2108), - [sym_rune_literal] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2108), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2108), - [sym___single_quote] = ACTIONS(2108), - [sym___c_double_quote] = ACTIONS(2108), - [sym___c_single_quote] = ACTIONS(2108), - [sym___r_double_quote] = ACTIONS(2108), - [sym___r_single_quote] = ACTIONS(2108), - }, - [1141] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_DASH] = ACTIONS(583), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_STAR_EQ] = ACTIONS(583), - [anon_sym_SLASH_EQ] = ACTIONS(583), - [anon_sym_PERCENT_EQ] = ACTIONS(583), - [anon_sym_LT_LT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(583), - [anon_sym_AMP_EQ] = ACTIONS(583), - [anon_sym_AMP_CARET_EQ] = ACTIONS(583), - [anon_sym_PLUS_EQ] = ACTIONS(583), - [anon_sym_DASH_EQ] = ACTIONS(583), - [anon_sym_PIPE_EQ] = ACTIONS(583), - [anon_sym_CARET_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1142] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_STAR_EQ] = ACTIONS(583), - [anon_sym_SLASH_EQ] = ACTIONS(583), - [anon_sym_PERCENT_EQ] = ACTIONS(583), - [anon_sym_LT_LT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(583), - [anon_sym_AMP_EQ] = ACTIONS(583), - [anon_sym_AMP_CARET_EQ] = ACTIONS(583), - [anon_sym_PLUS_EQ] = ACTIONS(583), - [anon_sym_DASH_EQ] = ACTIONS(583), - [anon_sym_PIPE_EQ] = ACTIONS(583), - [anon_sym_CARET_EQ] = ACTIONS(583), - [anon_sym_COLON_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1143] = { - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2774), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [1144] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_EQ] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_STAR_EQ] = ACTIONS(583), - [anon_sym_SLASH_EQ] = ACTIONS(583), - [anon_sym_PERCENT_EQ] = ACTIONS(583), - [anon_sym_LT_LT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_EQ] = ACTIONS(583), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(583), - [anon_sym_AMP_EQ] = ACTIONS(583), - [anon_sym_AMP_CARET_EQ] = ACTIONS(583), - [anon_sym_PLUS_EQ] = ACTIONS(583), - [anon_sym_DASH_EQ] = ACTIONS(583), - [anon_sym_PIPE_EQ] = ACTIONS(583), - [anon_sym_CARET_EQ] = ACTIONS(583), - [anon_sym_COLON_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1145] = { - [sym_else_branch] = STATE(1172), - [sym_identifier] = ACTIONS(2400), - [anon_sym_LF] = ACTIONS(2400), - [anon_sym_CR] = ACTIONS(2400), - [anon_sym_CR_LF] = ACTIONS(2400), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2400), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2400), - [anon_sym_COMMA] = ACTIONS(2400), - [anon_sym_RBRACE] = ACTIONS(2400), - [anon_sym_LPAREN] = ACTIONS(2400), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2400), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PERCENT] = ACTIONS(2400), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_EQ_EQ] = ACTIONS(2400), - [anon_sym_BANG_EQ] = ACTIONS(2400), - [anon_sym_LT_EQ] = ACTIONS(2400), - [anon_sym_GT_EQ] = ACTIONS(2400), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2400), - [anon_sym_DASH_DASH] = ACTIONS(2400), - [anon_sym_QMARK] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_go] = ACTIONS(2400), - [anon_sym_spawn] = ACTIONS(2400), - [anon_sym_json_DOTdecode] = ACTIONS(2400), - [anon_sym_LBRACK2] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2400), - [anon_sym_CARET] = ACTIONS(2400), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_LT_DASH] = ACTIONS(2400), - [anon_sym_LT_LT] = ACTIONS(2400), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2400), - [anon_sym_AMP_CARET] = ACTIONS(2400), - [anon_sym_AMP_AMP] = ACTIONS(2400), - [anon_sym_PIPE_PIPE] = ACTIONS(2400), - [anon_sym_or] = ACTIONS(2400), - [sym_none] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_nil] = ACTIONS(2400), - [anon_sym_QMARK_DOT] = ACTIONS(2400), - [anon_sym_POUND_LBRACK] = ACTIONS(2400), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_DOLLARif] = ACTIONS(2400), - [anon_sym_is] = ACTIONS(2400), - [anon_sym_BANGis] = ACTIONS(2400), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_BANGin] = ACTIONS(2400), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_select] = ACTIONS(2400), - [anon_sym_lock] = ACTIONS(2400), - [anon_sym_rlock] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_sql] = ACTIONS(2400), - [sym_int_literal] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), - [sym_rune_literal] = ACTIONS(2400), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2400), - [anon_sym_chan] = ACTIONS(2400), - [anon_sym_thread] = ACTIONS(2400), - [anon_sym_atomic] = ACTIONS(2400), - [sym___double_quote] = ACTIONS(2400), - [sym___single_quote] = ACTIONS(2400), - [sym___c_double_quote] = ACTIONS(2400), - [sym___c_single_quote] = ACTIONS(2400), - [sym___r_double_quote] = ACTIONS(2400), - [sym___r_single_quote] = ACTIONS(2400), - }, - [1146] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3515), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_AMP_CARET_EQ] = ACTIONS(591), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1147] = { - [sym_identifier] = ACTIONS(3517), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_CR] = ACTIONS(3520), - [anon_sym_CR_LF] = ACTIONS(3520), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3520), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(3520), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(3525), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), - }, - [1148] = { - [sym_reference_expression] = STATE(4528), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(1982), - [sym__plain_type_without_special] = STATE(2020), - [sym_anon_struct_type] = STATE(1942), - [sym_multi_return_type] = STATE(2020), - [sym_result_type] = STATE(2020), - [sym_option_type] = STATE(2020), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(1942), - [sym_array_type] = STATE(1942), - [sym_pointer_type] = STATE(1942), - [sym_wrong_pointer_type] = STATE(1942), - [sym_map_type] = STATE(1942), - [sym_channel_type] = STATE(1942), - [sym_shared_type] = STATE(1942), - [sym_thread_type] = STATE(1942), - [sym_atomic_type] = STATE(1942), - [sym_generic_type] = STATE(1942), - [sym_function_type] = STATE(1942), - [sym_identifier] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3531), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3535), - [anon_sym_COLON] = ACTIONS(613), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3537), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_LBRACK2] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(613), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_AMP_CARET_EQ] = ACTIONS(613), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3545), - [anon_sym_map_LBRACK] = ACTIONS(3547), - [anon_sym_chan] = ACTIONS(3549), - [anon_sym_thread] = ACTIONS(3551), - [anon_sym_atomic] = ACTIONS(3553), - }, - [1149] = { - [sym_reference_expression] = STATE(4528), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(2006), - [sym__plain_type_without_special] = STATE(2020), - [sym_anon_struct_type] = STATE(1942), - [sym_multi_return_type] = STATE(2020), - [sym_result_type] = STATE(2020), - [sym_option_type] = STATE(2020), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(1942), - [sym_array_type] = STATE(1942), - [sym_pointer_type] = STATE(1942), - [sym_wrong_pointer_type] = STATE(1942), - [sym_map_type] = STATE(1942), - [sym_channel_type] = STATE(1942), - [sym_shared_type] = STATE(1942), - [sym_thread_type] = STATE(1942), - [sym_atomic_type] = STATE(1942), - [sym_generic_type] = STATE(1942), - [sym_function_type] = STATE(1942), - [sym_identifier] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(587), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3531), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3535), - [anon_sym_COLON] = ACTIONS(587), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(3537), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_LBRACK2] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(587), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_STAR_EQ] = ACTIONS(587), - [anon_sym_SLASH_EQ] = ACTIONS(587), - [anon_sym_PERCENT_EQ] = ACTIONS(587), - [anon_sym_LT_LT_EQ] = ACTIONS(587), - [anon_sym_GT_GT_EQ] = ACTIONS(587), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(587), - [anon_sym_AMP_EQ] = ACTIONS(587), - [anon_sym_AMP_CARET_EQ] = ACTIONS(587), - [anon_sym_PLUS_EQ] = ACTIONS(587), - [anon_sym_DASH_EQ] = ACTIONS(587), - [anon_sym_PIPE_EQ] = ACTIONS(587), - [anon_sym_CARET_EQ] = ACTIONS(587), - [anon_sym_shared] = ACTIONS(3545), - [anon_sym_map_LBRACK] = ACTIONS(3547), - [anon_sym_chan] = ACTIONS(3549), - [anon_sym_thread] = ACTIONS(3551), - [anon_sym_atomic] = ACTIONS(3553), - }, - [1150] = { - [sym_else_branch] = STATE(1173), - [sym_identifier] = ACTIONS(2406), - [anon_sym_LF] = ACTIONS(2406), - [anon_sym_CR] = ACTIONS(2406), - [anon_sym_CR_LF] = ACTIONS(2406), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2406), - [anon_sym_DOT] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2406), - [anon_sym_COMMA] = ACTIONS(2406), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_LPAREN] = ACTIONS(2406), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2406), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2406), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2406), - [anon_sym_BANG_EQ] = ACTIONS(2406), - [anon_sym_LT_EQ] = ACTIONS(2406), - [anon_sym_GT_EQ] = ACTIONS(2406), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2406), - [anon_sym_DASH_DASH] = ACTIONS(2406), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2406), - [anon_sym_json_DOTdecode] = ACTIONS(2406), - [anon_sym_LBRACK2] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2406), - [anon_sym_CARET] = ACTIONS(2406), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_LT_DASH] = ACTIONS(2406), - [anon_sym_LT_LT] = ACTIONS(2406), - [anon_sym_GT_GT] = ACTIONS(2406), - [anon_sym_GT_GT_GT] = ACTIONS(2406), - [anon_sym_AMP_CARET] = ACTIONS(2406), - [anon_sym_AMP_AMP] = ACTIONS(2406), - [anon_sym_PIPE_PIPE] = ACTIONS(2406), - [anon_sym_or] = ACTIONS(2406), - [sym_none] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_nil] = ACTIONS(2406), - [anon_sym_QMARK_DOT] = ACTIONS(2406), - [anon_sym_POUND_LBRACK] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(3513), - [anon_sym_DOLLARif] = ACTIONS(2406), - [anon_sym_is] = ACTIONS(2406), - [anon_sym_BANGis] = ACTIONS(2406), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_BANGin] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_select] = ACTIONS(2406), - [anon_sym_lock] = ACTIONS(2406), - [anon_sym_rlock] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_sql] = ACTIONS(2406), - [sym_int_literal] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2406), - [sym_rune_literal] = ACTIONS(2406), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_shared] = ACTIONS(2406), - [anon_sym_map_LBRACK] = ACTIONS(2406), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2406), - [anon_sym_atomic] = ACTIONS(2406), - [sym___double_quote] = ACTIONS(2406), - [sym___single_quote] = ACTIONS(2406), - [sym___c_double_quote] = ACTIONS(2406), - [sym___c_single_quote] = ACTIONS(2406), - [sym___r_double_quote] = ACTIONS(2406), - [sym___r_single_quote] = ACTIONS(2406), - }, - [1151] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1919), - [sym_plain_type] = STATE(2137), - [sym__plain_type_without_special] = STATE(2126), - [sym_anon_struct_type] = STATE(2127), - [sym_multi_return_type] = STATE(2126), - [sym_result_type] = STATE(2126), - [sym_option_type] = STATE(2126), - [sym_qualified_type] = STATE(1919), - [sym_fixed_array_type] = STATE(2127), - [sym_array_type] = STATE(2127), - [sym_pointer_type] = STATE(2127), - [sym_wrong_pointer_type] = STATE(2127), - [sym_map_type] = STATE(2127), - [sym_channel_type] = STATE(2127), - [sym_shared_type] = STATE(2127), - [sym_thread_type] = STATE(2127), - [sym_atomic_type] = STATE(2127), - [sym_generic_type] = STATE(2127), - [sym_function_type] = STATE(2127), - [sym_identifier] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(551), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3561), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3567), - [anon_sym_LBRACK2] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_STAR_EQ] = ACTIONS(551), - [anon_sym_SLASH_EQ] = ACTIONS(551), - [anon_sym_PERCENT_EQ] = ACTIONS(551), - [anon_sym_LT_LT_EQ] = ACTIONS(551), - [anon_sym_GT_GT_EQ] = ACTIONS(551), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(551), - [anon_sym_AMP_EQ] = ACTIONS(551), - [anon_sym_AMP_CARET_EQ] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(551), - [anon_sym_DASH_EQ] = ACTIONS(551), - [anon_sym_PIPE_EQ] = ACTIONS(551), - [anon_sym_CARET_EQ] = ACTIONS(551), - [anon_sym_COLON_EQ] = ACTIONS(551), - [anon_sym_shared] = ACTIONS(3573), - [anon_sym_map_LBRACK] = ACTIONS(3575), - [anon_sym_chan] = ACTIONS(3577), - [anon_sym_thread] = ACTIONS(3579), - [anon_sym_atomic] = ACTIONS(3581), - }, - [1152] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1919), - [sym_plain_type] = STATE(2052), - [sym__plain_type_without_special] = STATE(2126), - [sym_anon_struct_type] = STATE(2127), - [sym_multi_return_type] = STATE(2126), - [sym_result_type] = STATE(2126), - [sym_option_type] = STATE(2126), - [sym_qualified_type] = STATE(1919), - [sym_fixed_array_type] = STATE(2127), - [sym_array_type] = STATE(2127), - [sym_pointer_type] = STATE(2127), - [sym_wrong_pointer_type] = STATE(2127), - [sym_map_type] = STATE(2127), - [sym_channel_type] = STATE(2127), - [sym_shared_type] = STATE(2127), - [sym_thread_type] = STATE(2127), - [sym_atomic_type] = STATE(2127), - [sym_generic_type] = STATE(2127), - [sym_function_type] = STATE(2127), - [sym_identifier] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(587), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_EQ] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3561), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3567), - [anon_sym_LBRACK2] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_STAR_EQ] = ACTIONS(587), - [anon_sym_SLASH_EQ] = ACTIONS(587), - [anon_sym_PERCENT_EQ] = ACTIONS(587), - [anon_sym_LT_LT_EQ] = ACTIONS(587), - [anon_sym_GT_GT_EQ] = ACTIONS(587), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(587), - [anon_sym_AMP_EQ] = ACTIONS(587), - [anon_sym_AMP_CARET_EQ] = ACTIONS(587), - [anon_sym_PLUS_EQ] = ACTIONS(587), - [anon_sym_DASH_EQ] = ACTIONS(587), - [anon_sym_PIPE_EQ] = ACTIONS(587), - [anon_sym_CARET_EQ] = ACTIONS(587), - [anon_sym_COLON_EQ] = ACTIONS(587), - [anon_sym_shared] = ACTIONS(3573), - [anon_sym_map_LBRACK] = ACTIONS(3575), - [anon_sym_chan] = ACTIONS(3577), - [anon_sym_thread] = ACTIONS(3579), - [anon_sym_atomic] = ACTIONS(3581), - }, - [1153] = { - [sym_reference_expression] = STATE(4465), - [sym_type_reference_expression] = STATE(1919), - [sym_plain_type] = STATE(2059), - [sym__plain_type_without_special] = STATE(2126), - [sym_anon_struct_type] = STATE(2127), - [sym_multi_return_type] = STATE(2126), - [sym_result_type] = STATE(2126), - [sym_option_type] = STATE(2126), - [sym_qualified_type] = STATE(1919), - [sym_fixed_array_type] = STATE(2127), - [sym_array_type] = STATE(2127), - [sym_pointer_type] = STATE(2127), - [sym_wrong_pointer_type] = STATE(2127), - [sym_map_type] = STATE(2127), - [sym_channel_type] = STATE(2127), - [sym_shared_type] = STATE(2127), - [sym_thread_type] = STATE(2127), - [sym_atomic_type] = STATE(2127), - [sym_generic_type] = STATE(2127), - [sym_function_type] = STATE(2127), - [sym_identifier] = ACTIONS(3555), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(613), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3557), - [anon_sym_EQ] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3559), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3561), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3563), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3565), - [anon_sym_BANG] = ACTIONS(3567), - [anon_sym_LBRACK2] = ACTIONS(3569), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3571), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_STAR_EQ] = ACTIONS(613), - [anon_sym_SLASH_EQ] = ACTIONS(613), - [anon_sym_PERCENT_EQ] = ACTIONS(613), - [anon_sym_LT_LT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_EQ] = ACTIONS(613), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(613), - [anon_sym_AMP_EQ] = ACTIONS(613), - [anon_sym_AMP_CARET_EQ] = ACTIONS(613), - [anon_sym_PLUS_EQ] = ACTIONS(613), - [anon_sym_DASH_EQ] = ACTIONS(613), - [anon_sym_PIPE_EQ] = ACTIONS(613), - [anon_sym_CARET_EQ] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3573), - [anon_sym_map_LBRACK] = ACTIONS(3575), - [anon_sym_chan] = ACTIONS(3577), - [anon_sym_thread] = ACTIONS(3579), - [anon_sym_atomic] = ACTIONS(3581), - }, - [1154] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3583), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_DASH] = ACTIONS(591), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_AMP_CARET_EQ] = ACTIONS(591), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1155] = { - [sym_identifier] = ACTIONS(3517), - [anon_sym_LF] = ACTIONS(3520), - [anon_sym_CR] = ACTIONS(3520), - [anon_sym_CR_LF] = ACTIONS(3520), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3520), - [anon_sym_DOT] = ACTIONS(3585), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(3520), - [anon_sym_RBRACE] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3523), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(3525), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), - }, - [1156] = { - [sym_reference_expression] = STATE(4528), - [sym_type_reference_expression] = STATE(1923), - [sym_plain_type] = STATE(2109), - [sym__plain_type_without_special] = STATE(2020), - [sym_anon_struct_type] = STATE(1942), - [sym_multi_return_type] = STATE(2020), - [sym_result_type] = STATE(2020), - [sym_option_type] = STATE(2020), - [sym_qualified_type] = STATE(1923), - [sym_fixed_array_type] = STATE(1942), - [sym_array_type] = STATE(1942), - [sym_pointer_type] = STATE(1942), - [sym_wrong_pointer_type] = STATE(1942), - [sym_map_type] = STATE(1942), - [sym_channel_type] = STATE(1942), - [sym_shared_type] = STATE(1942), - [sym_thread_type] = STATE(1942), - [sym_atomic_type] = STATE(1942), - [sym_generic_type] = STATE(1942), - [sym_function_type] = STATE(1942), - [sym_identifier] = ACTIONS(3527), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(551), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(3529), - [anon_sym_EQ] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3531), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3533), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3535), - [anon_sym_COLON] = ACTIONS(551), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(3537), - [anon_sym_BANG] = ACTIONS(3539), - [anon_sym_LBRACK2] = ACTIONS(3541), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3543), - [anon_sym_LT_DASH] = ACTIONS(551), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_STAR_EQ] = ACTIONS(551), - [anon_sym_SLASH_EQ] = ACTIONS(551), - [anon_sym_PERCENT_EQ] = ACTIONS(551), - [anon_sym_LT_LT_EQ] = ACTIONS(551), - [anon_sym_GT_GT_EQ] = ACTIONS(551), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(551), - [anon_sym_AMP_EQ] = ACTIONS(551), - [anon_sym_AMP_CARET_EQ] = ACTIONS(551), - [anon_sym_PLUS_EQ] = ACTIONS(551), - [anon_sym_DASH_EQ] = ACTIONS(551), - [anon_sym_PIPE_EQ] = ACTIONS(551), - [anon_sym_CARET_EQ] = ACTIONS(551), - [anon_sym_shared] = ACTIONS(3545), - [anon_sym_map_LBRACK] = ACTIONS(3547), - [anon_sym_chan] = ACTIONS(3549), - [anon_sym_thread] = ACTIONS(3551), - [anon_sym_atomic] = ACTIONS(3553), - }, - [1157] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_EQ] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3588), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_STAR_EQ] = ACTIONS(591), - [anon_sym_SLASH_EQ] = ACTIONS(591), - [anon_sym_PERCENT_EQ] = ACTIONS(591), - [anon_sym_LT_LT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_EQ] = ACTIONS(591), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(591), - [anon_sym_AMP_EQ] = ACTIONS(591), - [anon_sym_AMP_CARET_EQ] = ACTIONS(591), - [anon_sym_PLUS_EQ] = ACTIONS(591), - [anon_sym_DASH_EQ] = ACTIONS(591), - [anon_sym_PIPE_EQ] = ACTIONS(591), - [anon_sym_CARET_EQ] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1158] = { - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [1159] = { - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), - }, - [1160] = { - [sym_identifier] = ACTIONS(2740), - [anon_sym_LF] = ACTIONS(2740), - [anon_sym_CR] = ACTIONS(2740), - [anon_sym_CR_LF] = ACTIONS(2740), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2740), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2740), - [anon_sym_COMMA] = ACTIONS(2740), - [anon_sym_RBRACE] = ACTIONS(2740), - [anon_sym_LPAREN] = ACTIONS(2740), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2740), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2740), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2740), - [anon_sym_BANG_EQ] = ACTIONS(2740), - [anon_sym_LT_EQ] = ACTIONS(2740), - [anon_sym_GT_EQ] = ACTIONS(2740), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2740), - [anon_sym_DASH_DASH] = ACTIONS(2740), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2740), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2740), - [anon_sym_CARET] = ACTIONS(2740), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2740), - [anon_sym_LT_LT] = ACTIONS(2740), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2740), - [anon_sym_AMP_CARET] = ACTIONS(2740), - [anon_sym_AMP_AMP] = ACTIONS(2740), - [anon_sym_PIPE_PIPE] = ACTIONS(2740), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2740), - [anon_sym_POUND_LBRACK] = ACTIONS(2740), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_DOLLARelse] = ACTIONS(3590), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2740), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2740), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2740), - [sym_rune_literal] = ACTIONS(2740), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2740), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2740), - [sym___single_quote] = ACTIONS(2740), - [sym___c_double_quote] = ACTIONS(2740), - [sym___c_single_quote] = ACTIONS(2740), - [sym___r_double_quote] = ACTIONS(2740), - [sym___r_single_quote] = ACTIONS(2740), - }, - [1161] = { - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2730), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_COMMA] = ACTIONS(2730), - [anon_sym_RBRACE] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2730), - [anon_sym_BANG_EQ] = ACTIONS(2730), - [anon_sym_LT_EQ] = ACTIONS(2730), - [anon_sym_GT_EQ] = ACTIONS(2730), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2730), - [anon_sym_DASH_DASH] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [anon_sym_LT_LT] = ACTIONS(2730), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2730), - [anon_sym_AMP_CARET] = ACTIONS(2730), - [anon_sym_AMP_AMP] = ACTIONS(2730), - [anon_sym_PIPE_PIPE] = ACTIONS(2730), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2730), - [anon_sym_POUND_LBRACK] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_DOLLARelse] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2730), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), - }, - [1162] = { - [sym_identifier] = ACTIONS(2734), - [anon_sym_LF] = ACTIONS(2734), - [anon_sym_CR] = ACTIONS(2734), - [anon_sym_CR_LF] = ACTIONS(2734), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2734), - [anon_sym_DOT] = ACTIONS(2734), - [anon_sym_as] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_COMMA] = ACTIONS(2734), - [anon_sym_RBRACE] = ACTIONS(2734), - [anon_sym_LPAREN] = ACTIONS(2734), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2734), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2734), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2734), - [anon_sym_BANG_EQ] = ACTIONS(2734), - [anon_sym_LT_EQ] = ACTIONS(2734), - [anon_sym_GT_EQ] = ACTIONS(2734), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_mut] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2734), - [anon_sym_DASH_DASH] = ACTIONS(2734), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_go] = ACTIONS(2734), - [anon_sym_spawn] = ACTIONS(2734), - [anon_sym_json_DOTdecode] = ACTIONS(2734), - [anon_sym_LBRACK2] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2734), - [anon_sym_CARET] = ACTIONS(2734), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_LT_DASH] = ACTIONS(2734), - [anon_sym_LT_LT] = ACTIONS(2734), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2734), - [anon_sym_AMP_CARET] = ACTIONS(2734), - [anon_sym_AMP_AMP] = ACTIONS(2734), - [anon_sym_PIPE_PIPE] = ACTIONS(2734), - [anon_sym_or] = ACTIONS(2734), - [sym_none] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_nil] = ACTIONS(2734), - [anon_sym_QMARK_DOT] = ACTIONS(2734), - [anon_sym_POUND_LBRACK] = ACTIONS(2734), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_DOLLARif] = ACTIONS(2734), - [anon_sym_DOLLARelse] = ACTIONS(3592), - [anon_sym_is] = ACTIONS(2734), - [anon_sym_BANGis] = ACTIONS(2734), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_BANGin] = ACTIONS(2734), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_select] = ACTIONS(2734), - [anon_sym_lock] = ACTIONS(2734), - [anon_sym_rlock] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_sql] = ACTIONS(2734), - [sym_int_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2734), - [sym_rune_literal] = ACTIONS(2734), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_shared] = ACTIONS(2734), - [anon_sym_map_LBRACK] = ACTIONS(2734), - [anon_sym_chan] = ACTIONS(2734), - [anon_sym_thread] = ACTIONS(2734), - [anon_sym_atomic] = ACTIONS(2734), - [sym___double_quote] = ACTIONS(2734), - [sym___single_quote] = ACTIONS(2734), - [sym___c_double_quote] = ACTIONS(2734), - [sym___c_single_quote] = ACTIONS(2734), - [sym___r_double_quote] = ACTIONS(2734), - [sym___r_single_quote] = ACTIONS(2734), - }, - [1163] = { - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_DOLLARelse] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [1164] = { - [sym_type_parameters] = STATE(1201), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [1165] = { - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2915), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_COMMA] = ACTIONS(2915), - [anon_sym_RBRACE] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2915), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2915), - [anon_sym_BANG_EQ] = ACTIONS(2915), - [anon_sym_LT_EQ] = ACTIONS(2915), - [anon_sym_GT_EQ] = ACTIONS(2915), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2915), - [anon_sym_DASH_DASH] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [anon_sym_LT_LT] = ACTIONS(2915), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_GT_GT_GT] = ACTIONS(2915), - [anon_sym_AMP_CARET] = ACTIONS(2915), - [anon_sym_AMP_AMP] = ACTIONS(2915), - [anon_sym_PIPE_PIPE] = ACTIONS(2915), - [anon_sym_or] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2915), - [anon_sym_POUND_LBRACK] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2915), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), - }, - [1166] = { - [sym_identifier] = ACTIONS(2997), - [anon_sym_LF] = ACTIONS(2997), - [anon_sym_CR] = ACTIONS(2997), - [anon_sym_CR_LF] = ACTIONS(2997), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2997), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2997), - [anon_sym_COMMA] = ACTIONS(2997), - [anon_sym_RBRACE] = ACTIONS(2997), - [anon_sym_LPAREN] = ACTIONS(2997), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2997), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2997), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2997), - [anon_sym_BANG_EQ] = ACTIONS(2997), - [anon_sym_LT_EQ] = ACTIONS(2997), - [anon_sym_GT_EQ] = ACTIONS(2997), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2997), - [anon_sym_DASH_DASH] = ACTIONS(2997), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2997), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2997), - [anon_sym_CARET] = ACTIONS(2997), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2997), - [anon_sym_LT_LT] = ACTIONS(2997), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2997), - [anon_sym_AMP_CARET] = ACTIONS(2997), - [anon_sym_AMP_AMP] = ACTIONS(2997), - [anon_sym_PIPE_PIPE] = ACTIONS(2997), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2997), - [anon_sym_POUND_LBRACK] = ACTIONS(2997), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2997), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2997), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2997), - [sym_rune_literal] = ACTIONS(2997), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2997), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [sym___double_quote] = ACTIONS(2997), - [sym___single_quote] = ACTIONS(2997), - [sym___c_double_quote] = ACTIONS(2997), - [sym___c_single_quote] = ACTIONS(2997), - [sym___r_double_quote] = ACTIONS(2997), - [sym___r_single_quote] = ACTIONS(2997), - }, - [1167] = { - [sym_identifier] = ACTIONS(2772), - [anon_sym_LF] = ACTIONS(2772), - [anon_sym_CR] = ACTIONS(2772), - [anon_sym_CR_LF] = ACTIONS(2772), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2772), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_COMMA] = ACTIONS(2772), - [anon_sym_RBRACE] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2772), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2772), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2772), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2772), - [anon_sym_BANG_EQ] = ACTIONS(2772), - [anon_sym_LT_EQ] = ACTIONS(2772), - [anon_sym_GT_EQ] = ACTIONS(2772), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2772), - [anon_sym_DASH_DASH] = ACTIONS(2772), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2772), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2772), - [anon_sym_CARET] = ACTIONS(2772), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2772), - [anon_sym_LT_LT] = ACTIONS(2772), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2772), - [anon_sym_AMP_CARET] = ACTIONS(2772), - [anon_sym_AMP_AMP] = ACTIONS(2772), - [anon_sym_PIPE_PIPE] = ACTIONS(2772), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2772), - [anon_sym_POUND_LBRACK] = ACTIONS(2772), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2772), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2772), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2772), - [sym_rune_literal] = ACTIONS(2772), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2772), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2772), - [sym___single_quote] = ACTIONS(2772), - [sym___c_double_quote] = ACTIONS(2772), - [sym___c_single_quote] = ACTIONS(2772), - [sym___r_double_quote] = ACTIONS(2772), - [sym___r_single_quote] = ACTIONS(2772), - }, - [1168] = { - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3137), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), - }, - [1169] = { - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3133), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), - }, - [1170] = { - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3105), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3105), - [anon_sym_RBRACE] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_EQ] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3105), - [anon_sym_AMP_CARET] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3105), - [anon_sym_POUND_LBRACK] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3105), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3105), - [sym_rune_literal] = ACTIONS(3105), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3105), - [sym___single_quote] = ACTIONS(3105), - [sym___c_double_quote] = ACTIONS(3105), - [sym___c_single_quote] = ACTIONS(3105), - [sym___r_double_quote] = ACTIONS(3105), - [sym___r_single_quote] = ACTIONS(3105), - }, - [1171] = { - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3101), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), - }, - [1172] = { - [sym_identifier] = ACTIONS(3001), - [anon_sym_LF] = ACTIONS(3001), - [anon_sym_CR] = ACTIONS(3001), - [anon_sym_CR_LF] = ACTIONS(3001), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3001), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(3001), - [anon_sym_COMMA] = ACTIONS(3001), - [anon_sym_RBRACE] = ACTIONS(3001), - [anon_sym_LPAREN] = ACTIONS(3001), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(3001), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(3001), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(3001), - [anon_sym_BANG_EQ] = ACTIONS(3001), - [anon_sym_LT_EQ] = ACTIONS(3001), - [anon_sym_GT_EQ] = ACTIONS(3001), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(3001), - [anon_sym_DASH_DASH] = ACTIONS(3001), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(3001), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(3001), - [anon_sym_CARET] = ACTIONS(3001), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(3001), - [anon_sym_LT_LT] = ACTIONS(3001), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(3001), - [anon_sym_AMP_CARET] = ACTIONS(3001), - [anon_sym_AMP_AMP] = ACTIONS(3001), - [anon_sym_PIPE_PIPE] = ACTIONS(3001), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(3001), - [anon_sym_POUND_LBRACK] = ACTIONS(3001), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(3001), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(3001), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(3001), - [sym_rune_literal] = ACTIONS(3001), - [anon_sym_AT] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(3001), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [sym___double_quote] = ACTIONS(3001), - [sym___single_quote] = ACTIONS(3001), - [sym___c_double_quote] = ACTIONS(3001), - [sym___c_single_quote] = ACTIONS(3001), - [sym___r_double_quote] = ACTIONS(3001), - [sym___r_single_quote] = ACTIONS(3001), - }, - [1173] = { - [sym_identifier] = ACTIONS(3085), - [anon_sym_LF] = ACTIONS(3085), - [anon_sym_CR] = ACTIONS(3085), - [anon_sym_CR_LF] = ACTIONS(3085), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3085), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_as] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(3085), - [anon_sym_LPAREN] = ACTIONS(3085), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_fn] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3085), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3085), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3085), - [anon_sym_BANG_EQ] = ACTIONS(3085), - [anon_sym_LT_EQ] = ACTIONS(3085), - [anon_sym_GT_EQ] = ACTIONS(3085), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_mut] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3085), - [anon_sym_DASH_DASH] = ACTIONS(3085), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_go] = ACTIONS(3085), - [anon_sym_spawn] = ACTIONS(3085), - [anon_sym_json_DOTdecode] = ACTIONS(3085), - [anon_sym_LBRACK2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3085), - [anon_sym_CARET] = ACTIONS(3085), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LT_DASH] = ACTIONS(3085), - [anon_sym_LT_LT] = ACTIONS(3085), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_GT_GT_GT] = ACTIONS(3085), - [anon_sym_AMP_CARET] = ACTIONS(3085), - [anon_sym_AMP_AMP] = ACTIONS(3085), - [anon_sym_PIPE_PIPE] = ACTIONS(3085), - [anon_sym_or] = ACTIONS(3085), - [sym_none] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_nil] = ACTIONS(3085), - [anon_sym_QMARK_DOT] = ACTIONS(3085), - [anon_sym_POUND_LBRACK] = ACTIONS(3085), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_DOLLARif] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_BANGis] = ACTIONS(3085), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_BANGin] = ACTIONS(3085), - [anon_sym_match] = ACTIONS(3085), - [anon_sym_select] = ACTIONS(3085), - [anon_sym_lock] = ACTIONS(3085), - [anon_sym_rlock] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(3085), - [anon_sym_sql] = ACTIONS(3085), - [sym_int_literal] = ACTIONS(3085), - [sym_float_literal] = ACTIONS(3085), - [sym_rune_literal] = ACTIONS(3085), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_shared] = ACTIONS(3085), - [anon_sym_map_LBRACK] = ACTIONS(3085), - [anon_sym_chan] = ACTIONS(3085), - [anon_sym_thread] = ACTIONS(3085), - [anon_sym_atomic] = ACTIONS(3085), - [sym___double_quote] = ACTIONS(3085), - [sym___single_quote] = ACTIONS(3085), - [sym___c_double_quote] = ACTIONS(3085), - [sym___c_single_quote] = ACTIONS(3085), - [sym___r_double_quote] = ACTIONS(3085), - [sym___r_single_quote] = ACTIONS(3085), - }, - [1174] = { - [sym_identifier] = ACTIONS(2832), - [anon_sym_LF] = ACTIONS(2832), - [anon_sym_CR] = ACTIONS(2832), - [anon_sym_CR_LF] = ACTIONS(2832), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2832), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(2832), - [anon_sym_RBRACE] = ACTIONS(2832), - [anon_sym_LPAREN] = ACTIONS(2832), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2832), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2832), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2832), - [anon_sym_BANG_EQ] = ACTIONS(2832), - [anon_sym_LT_EQ] = ACTIONS(2832), - [anon_sym_GT_EQ] = ACTIONS(2832), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2832), - [anon_sym_DASH_DASH] = ACTIONS(2832), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2832), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2832), - [anon_sym_CARET] = ACTIONS(2832), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2832), - [anon_sym_LT_LT] = ACTIONS(2832), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2832), - [anon_sym_AMP_CARET] = ACTIONS(2832), - [anon_sym_AMP_AMP] = ACTIONS(2832), - [anon_sym_PIPE_PIPE] = ACTIONS(2832), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2832), - [anon_sym_POUND_LBRACK] = ACTIONS(2832), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2832), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2832), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2832), - [sym_rune_literal] = ACTIONS(2832), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2832), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2832), - [sym___single_quote] = ACTIONS(2832), - [sym___c_double_quote] = ACTIONS(2832), - [sym___c_single_quote] = ACTIONS(2832), - [sym___r_double_quote] = ACTIONS(2832), - [sym___r_single_quote] = ACTIONS(2832), - }, - [1175] = { - [sym_identifier] = ACTIONS(2880), - [anon_sym_LF] = ACTIONS(2880), - [anon_sym_CR] = ACTIONS(2880), - [anon_sym_CR_LF] = ACTIONS(2880), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2880), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2880), - [anon_sym_COMMA] = ACTIONS(2880), - [anon_sym_RBRACE] = ACTIONS(2880), - [anon_sym_LPAREN] = ACTIONS(2880), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2880), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2880), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2880), - [anon_sym_BANG_EQ] = ACTIONS(2880), - [anon_sym_LT_EQ] = ACTIONS(2880), - [anon_sym_GT_EQ] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2880), - [anon_sym_DASH_DASH] = ACTIONS(2880), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2880), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2880), - [anon_sym_CARET] = ACTIONS(2880), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2880), - [anon_sym_LT_LT] = ACTIONS(2880), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2880), - [anon_sym_AMP_CARET] = ACTIONS(2880), - [anon_sym_AMP_AMP] = ACTIONS(2880), - [anon_sym_PIPE_PIPE] = ACTIONS(2880), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2880), - [anon_sym_POUND_LBRACK] = ACTIONS(2880), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2880), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2880), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2880), - [sym_rune_literal] = ACTIONS(2880), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2880), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2880), - [sym___single_quote] = ACTIONS(2880), - [sym___c_double_quote] = ACTIONS(2880), - [sym___c_single_quote] = ACTIONS(2880), - [sym___r_double_quote] = ACTIONS(2880), - [sym___r_single_quote] = ACTIONS(2880), - }, - [1176] = { - [sym_identifier] = ACTIONS(2895), - [anon_sym_LF] = ACTIONS(2895), - [anon_sym_CR] = ACTIONS(2895), - [anon_sym_CR_LF] = ACTIONS(2895), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2895), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2895), - [anon_sym_COMMA] = ACTIONS(2895), - [anon_sym_RBRACE] = ACTIONS(2895), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2895), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2895), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2895), - [anon_sym_BANG_EQ] = ACTIONS(2895), - [anon_sym_LT_EQ] = ACTIONS(2895), - [anon_sym_GT_EQ] = ACTIONS(2895), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2895), - [anon_sym_DASH_DASH] = ACTIONS(2895), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2895), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2895), - [anon_sym_CARET] = ACTIONS(2895), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2895), - [anon_sym_LT_LT] = ACTIONS(2895), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2895), - [anon_sym_AMP_CARET] = ACTIONS(2895), - [anon_sym_AMP_AMP] = ACTIONS(2895), - [anon_sym_PIPE_PIPE] = ACTIONS(2895), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2895), - [anon_sym_POUND_LBRACK] = ACTIONS(2895), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2895), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2895), - [sym_rune_literal] = ACTIONS(2895), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2895), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2895), - [sym___single_quote] = ACTIONS(2895), - [sym___c_double_quote] = ACTIONS(2895), - [sym___c_single_quote] = ACTIONS(2895), - [sym___r_double_quote] = ACTIONS(2895), - [sym___r_single_quote] = ACTIONS(2895), - }, - [1177] = { - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2989), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_COMMA] = ACTIONS(2989), - [anon_sym_RBRACE] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2989), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2989), - [anon_sym_BANG_EQ] = ACTIONS(2989), - [anon_sym_LT_EQ] = ACTIONS(2989), - [anon_sym_GT_EQ] = ACTIONS(2989), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2989), - [anon_sym_DASH_DASH] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [anon_sym_LT_LT] = ACTIONS(2989), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2989), - [anon_sym_AMP_CARET] = ACTIONS(2989), - [anon_sym_AMP_AMP] = ACTIONS(2989), - [anon_sym_PIPE_PIPE] = ACTIONS(2989), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2989), - [anon_sym_POUND_LBRACK] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2989), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), - }, - [1178] = { - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2704), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_COMMA] = ACTIONS(2704), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2704), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2704), - [anon_sym_BANG_EQ] = ACTIONS(2704), - [anon_sym_LT_EQ] = ACTIONS(2704), - [anon_sym_GT_EQ] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2704), - [anon_sym_DASH_DASH] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [anon_sym_LT_LT] = ACTIONS(2704), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2704), - [anon_sym_AMP_CARET] = ACTIONS(2704), - [anon_sym_AMP_AMP] = ACTIONS(2704), - [anon_sym_PIPE_PIPE] = ACTIONS(2704), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2704), - [anon_sym_POUND_LBRACK] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2704), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [1179] = { - [sym_identifier] = ACTIONS(2891), - [anon_sym_LF] = ACTIONS(2891), - [anon_sym_CR] = ACTIONS(2891), - [anon_sym_CR_LF] = ACTIONS(2891), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2891), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2891), - [anon_sym_COMMA] = ACTIONS(2891), - [anon_sym_RBRACE] = ACTIONS(2891), - [anon_sym_LPAREN] = ACTIONS(2891), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2891), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2891), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2891), - [anon_sym_BANG_EQ] = ACTIONS(2891), - [anon_sym_LT_EQ] = ACTIONS(2891), - [anon_sym_GT_EQ] = ACTIONS(2891), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2891), - [anon_sym_DASH_DASH] = ACTIONS(2891), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2891), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2891), - [anon_sym_CARET] = ACTIONS(2891), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2891), - [anon_sym_LT_LT] = ACTIONS(2891), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2891), - [anon_sym_AMP_CARET] = ACTIONS(2891), - [anon_sym_AMP_AMP] = ACTIONS(2891), - [anon_sym_PIPE_PIPE] = ACTIONS(2891), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2891), - [anon_sym_POUND_LBRACK] = ACTIONS(2891), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2891), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2891), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2891), - [sym_rune_literal] = ACTIONS(2891), - [anon_sym_AT] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2891), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2891), - [sym___single_quote] = ACTIONS(2891), - [sym___c_double_quote] = ACTIONS(2891), - [sym___c_single_quote] = ACTIONS(2891), - [sym___r_double_quote] = ACTIONS(2891), - [sym___r_single_quote] = ACTIONS(2891), - }, - [1180] = { - [sym_identifier] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_CR] = ACTIONS(2959), - [anon_sym_CR_LF] = ACTIONS(2959), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2959), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_COMMA] = ACTIONS(2959), - [anon_sym_RBRACE] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2959), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_EQ_EQ] = ACTIONS(2959), - [anon_sym_BANG_EQ] = ACTIONS(2959), - [anon_sym_LT_EQ] = ACTIONS(2959), - [anon_sym_GT_EQ] = ACTIONS(2959), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2959), - [anon_sym_DASH_DASH] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [anon_sym_LT_LT] = ACTIONS(2959), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_GT_GT_GT] = ACTIONS(2959), - [anon_sym_AMP_CARET] = ACTIONS(2959), - [anon_sym_AMP_AMP] = ACTIONS(2959), - [anon_sym_PIPE_PIPE] = ACTIONS(2959), - [anon_sym_or] = ACTIONS(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_QMARK_DOT] = ACTIONS(2959), - [anon_sym_POUND_LBRACK] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_BANGis] = ACTIONS(2959), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_BANGin] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), - }, - [1181] = { - [sym_identifier] = ACTIONS(2927), - [anon_sym_LF] = ACTIONS(2927), - [anon_sym_CR] = ACTIONS(2927), - [anon_sym_CR_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2927), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_as] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_COMMA] = ACTIONS(2927), - [anon_sym_RBRACE] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2927), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_EQ_EQ] = ACTIONS(2927), - [anon_sym_BANG_EQ] = ACTIONS(2927), - [anon_sym_LT_EQ] = ACTIONS(2927), - [anon_sym_GT_EQ] = ACTIONS(2927), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2927), - [anon_sym_DASH_DASH] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2927), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2927), - [anon_sym_LT_LT] = ACTIONS(2927), - [anon_sym_GT_GT] = ACTIONS(2927), - [anon_sym_GT_GT_GT] = ACTIONS(2927), - [anon_sym_AMP_CARET] = ACTIONS(2927), - [anon_sym_AMP_AMP] = ACTIONS(2927), - [anon_sym_PIPE_PIPE] = ACTIONS(2927), - [anon_sym_or] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_QMARK_DOT] = ACTIONS(2927), - [anon_sym_POUND_LBRACK] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_is] = ACTIONS(2927), - [anon_sym_BANGis] = ACTIONS(2927), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_BANGin] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), - [sym_rune_literal] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2927), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2927), - [sym___single_quote] = ACTIONS(2927), - [sym___c_double_quote] = ACTIONS(2927), - [sym___c_single_quote] = ACTIONS(2927), - [sym___r_double_quote] = ACTIONS(2927), - [sym___r_single_quote] = ACTIONS(2927), - }, - [1182] = { - [sym_identifier] = ACTIONS(3049), - [anon_sym_LF] = ACTIONS(3049), - [anon_sym_CR] = ACTIONS(3049), - [anon_sym_CR_LF] = ACTIONS(3049), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3049), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3049), - [anon_sym_COMMA] = ACTIONS(3049), - [anon_sym_RBRACE] = ACTIONS(3049), - [anon_sym_LPAREN] = ACTIONS(3049), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3049), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT_EQ] = ACTIONS(3049), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_DASH_DASH] = ACTIONS(3049), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3049), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3049), - [anon_sym_CARET] = ACTIONS(3049), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3049), - [anon_sym_LT_LT] = ACTIONS(3049), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3049), - [anon_sym_AMP_CARET] = ACTIONS(3049), - [anon_sym_AMP_AMP] = ACTIONS(3049), - [anon_sym_PIPE_PIPE] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3049), - [anon_sym_POUND_LBRACK] = ACTIONS(3049), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3049), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3049), - [sym_rune_literal] = ACTIONS(3049), - [anon_sym_AT] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3049), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3049), - [sym___single_quote] = ACTIONS(3049), - [sym___c_double_quote] = ACTIONS(3049), - [sym___c_single_quote] = ACTIONS(3049), - [sym___r_double_quote] = ACTIONS(3049), - [sym___r_single_quote] = ACTIONS(3049), - }, - [1183] = { - [sym_identifier] = ACTIONS(3057), - [anon_sym_LF] = ACTIONS(3057), - [anon_sym_CR] = ACTIONS(3057), - [anon_sym_CR_LF] = ACTIONS(3057), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3057), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(3057), - [anon_sym_RBRACE] = ACTIONS(3057), - [anon_sym_LPAREN] = ACTIONS(3057), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3057), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3057), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3057), - [anon_sym_BANG_EQ] = ACTIONS(3057), - [anon_sym_LT_EQ] = ACTIONS(3057), - [anon_sym_GT_EQ] = ACTIONS(3057), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3057), - [anon_sym_DASH_DASH] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3057), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3057), - [anon_sym_CARET] = ACTIONS(3057), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3057), - [anon_sym_LT_LT] = ACTIONS(3057), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3057), - [anon_sym_AMP_CARET] = ACTIONS(3057), - [anon_sym_AMP_AMP] = ACTIONS(3057), - [anon_sym_PIPE_PIPE] = ACTIONS(3057), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3057), - [anon_sym_POUND_LBRACK] = ACTIONS(3057), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3057), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3057), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3057), - [sym_rune_literal] = ACTIONS(3057), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3057), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3057), - [sym___single_quote] = ACTIONS(3057), - [sym___c_double_quote] = ACTIONS(3057), - [sym___c_single_quote] = ACTIONS(3057), - [sym___r_double_quote] = ACTIONS(3057), - [sym___r_single_quote] = ACTIONS(3057), - }, - [1184] = { - [sym_identifier] = ACTIONS(3061), - [anon_sym_LF] = ACTIONS(3061), - [anon_sym_CR] = ACTIONS(3061), - [anon_sym_CR_LF] = ACTIONS(3061), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3061), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3061), - [anon_sym_COMMA] = ACTIONS(3061), - [anon_sym_RBRACE] = ACTIONS(3061), - [anon_sym_LPAREN] = ACTIONS(3061), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3061), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3061), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3061), - [anon_sym_BANG_EQ] = ACTIONS(3061), - [anon_sym_LT_EQ] = ACTIONS(3061), - [anon_sym_GT_EQ] = ACTIONS(3061), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3061), - [anon_sym_DASH_DASH] = ACTIONS(3061), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3061), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3061), - [anon_sym_CARET] = ACTIONS(3061), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3061), - [anon_sym_LT_LT] = ACTIONS(3061), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3061), - [anon_sym_AMP_CARET] = ACTIONS(3061), - [anon_sym_AMP_AMP] = ACTIONS(3061), - [anon_sym_PIPE_PIPE] = ACTIONS(3061), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3061), - [anon_sym_POUND_LBRACK] = ACTIONS(3061), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3061), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3061), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3061), - [sym_rune_literal] = ACTIONS(3061), - [anon_sym_AT] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3061), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3061), - [sym___single_quote] = ACTIONS(3061), - [sym___c_double_quote] = ACTIONS(3061), - [sym___c_single_quote] = ACTIONS(3061), - [sym___r_double_quote] = ACTIONS(3061), - [sym___r_single_quote] = ACTIONS(3061), - }, - [1185] = { - [sym_identifier] = ACTIONS(3197), - [anon_sym_LF] = ACTIONS(3197), - [anon_sym_CR] = ACTIONS(3197), - [anon_sym_CR_LF] = ACTIONS(3197), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3197), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_COMMA] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(3197), - [anon_sym_LPAREN] = ACTIONS(3197), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3197), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3197), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3197), - [anon_sym_BANG_EQ] = ACTIONS(3197), - [anon_sym_LT_EQ] = ACTIONS(3197), - [anon_sym_GT_EQ] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3197), - [anon_sym_DASH_DASH] = ACTIONS(3197), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3197), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3197), - [anon_sym_CARET] = ACTIONS(3197), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3197), - [anon_sym_LT_LT] = ACTIONS(3197), - [anon_sym_GT_GT] = ACTIONS(3197), - [anon_sym_GT_GT_GT] = ACTIONS(3197), - [anon_sym_AMP_CARET] = ACTIONS(3197), - [anon_sym_AMP_AMP] = ACTIONS(3197), - [anon_sym_PIPE_PIPE] = ACTIONS(3197), - [anon_sym_or] = ACTIONS(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3197), - [anon_sym_POUND_LBRACK] = ACTIONS(3197), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3197), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3197), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3197), - [sym_rune_literal] = ACTIONS(3197), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3197), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [sym___double_quote] = ACTIONS(3197), - [sym___single_quote] = ACTIONS(3197), - [sym___c_double_quote] = ACTIONS(3197), - [sym___c_single_quote] = ACTIONS(3197), - [sym___r_double_quote] = ACTIONS(3197), - [sym___r_single_quote] = ACTIONS(3197), - }, - [1186] = { - [sym_identifier] = ACTIONS(3157), - [anon_sym_LF] = ACTIONS(3157), - [anon_sym_CR] = ACTIONS(3157), - [anon_sym_CR_LF] = ACTIONS(3157), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3157), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3157), - [anon_sym_COMMA] = ACTIONS(3157), - [anon_sym_RBRACE] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3157), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3157), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3157), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_EQ_EQ] = ACTIONS(3157), - [anon_sym_BANG_EQ] = ACTIONS(3157), - [anon_sym_LT_EQ] = ACTIONS(3157), - [anon_sym_GT_EQ] = ACTIONS(3157), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3157), - [anon_sym_DASH_DASH] = ACTIONS(3157), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3157), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3157), - [anon_sym_CARET] = ACTIONS(3157), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3157), - [anon_sym_LT_LT] = ACTIONS(3157), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3157), - [anon_sym_AMP_CARET] = ACTIONS(3157), - [anon_sym_AMP_AMP] = ACTIONS(3157), - [anon_sym_PIPE_PIPE] = ACTIONS(3157), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3157), - [anon_sym_POUND_LBRACK] = ACTIONS(3157), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3157), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3157), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3157), - [sym_rune_literal] = ACTIONS(3157), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3157), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3157), - [sym___single_quote] = ACTIONS(3157), - [sym___c_double_quote] = ACTIONS(3157), - [sym___c_single_quote] = ACTIONS(3157), - [sym___r_double_quote] = ACTIONS(3157), - [sym___r_single_quote] = ACTIONS(3157), - }, - [1187] = { - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2856), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_COMMA] = ACTIONS(2856), - [anon_sym_RBRACE] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2856), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2856), - [anon_sym_BANG_EQ] = ACTIONS(2856), - [anon_sym_LT_EQ] = ACTIONS(2856), - [anon_sym_GT_EQ] = ACTIONS(2856), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2856), - [anon_sym_DASH_DASH] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [anon_sym_LT_LT] = ACTIONS(2856), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2856), - [anon_sym_AMP_CARET] = ACTIONS(2856), - [anon_sym_AMP_AMP] = ACTIONS(2856), - [anon_sym_PIPE_PIPE] = ACTIONS(2856), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2856), - [anon_sym_POUND_LBRACK] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2856), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), - }, - [1188] = { - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2784), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_COMMA] = ACTIONS(2784), - [anon_sym_RBRACE] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2784), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2784), - [anon_sym_BANG_EQ] = ACTIONS(2784), - [anon_sym_LT_EQ] = ACTIONS(2784), - [anon_sym_GT_EQ] = ACTIONS(2784), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2784), - [anon_sym_DASH_DASH] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [anon_sym_LT_LT] = ACTIONS(2784), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2784), - [anon_sym_AMP_CARET] = ACTIONS(2784), - [anon_sym_AMP_AMP] = ACTIONS(2784), - [anon_sym_PIPE_PIPE] = ACTIONS(2784), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2784), - [anon_sym_POUND_LBRACK] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2784), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), - }, - [1189] = { - [sym_identifier] = ACTIONS(2844), - [anon_sym_LF] = ACTIONS(2844), - [anon_sym_CR] = ACTIONS(2844), - [anon_sym_CR_LF] = ACTIONS(2844), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2844), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_as] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_COMMA] = ACTIONS(2844), - [anon_sym_RBRACE] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2844), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_EQ_EQ] = ACTIONS(2844), - [anon_sym_BANG_EQ] = ACTIONS(2844), - [anon_sym_LT_EQ] = ACTIONS(2844), - [anon_sym_GT_EQ] = ACTIONS(2844), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2844), - [anon_sym_DASH_DASH] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2844), - [anon_sym_LT_LT] = ACTIONS(2844), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2844), - [anon_sym_AMP_CARET] = ACTIONS(2844), - [anon_sym_AMP_AMP] = ACTIONS(2844), - [anon_sym_PIPE_PIPE] = ACTIONS(2844), - [anon_sym_or] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_QMARK_DOT] = ACTIONS(2844), - [anon_sym_POUND_LBRACK] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_is] = ACTIONS(2844), - [anon_sym_BANGis] = ACTIONS(2844), - [anon_sym_in] = ACTIONS(2844), - [anon_sym_BANGin] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), - }, - [1190] = { - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2840), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_COMMA] = ACTIONS(2840), - [anon_sym_RBRACE] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2840), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2840), - [anon_sym_BANG_EQ] = ACTIONS(2840), - [anon_sym_LT_EQ] = ACTIONS(2840), - [anon_sym_GT_EQ] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2840), - [anon_sym_DASH_DASH] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [anon_sym_LT_LT] = ACTIONS(2840), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2840), - [anon_sym_AMP_CARET] = ACTIONS(2840), - [anon_sym_AMP_AMP] = ACTIONS(2840), - [anon_sym_PIPE_PIPE] = ACTIONS(2840), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2840), - [anon_sym_POUND_LBRACK] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2840), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), - }, - [1191] = { - [sym_identifier] = ACTIONS(3033), - [anon_sym_LF] = ACTIONS(3033), - [anon_sym_CR] = ACTIONS(3033), - [anon_sym_CR_LF] = ACTIONS(3033), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3033), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3033), - [anon_sym_COMMA] = ACTIONS(3033), - [anon_sym_RBRACE] = ACTIONS(3033), - [anon_sym_LPAREN] = ACTIONS(3033), - [anon_sym_PIPE] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3033), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3033), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3033), - [anon_sym_BANG_EQ] = ACTIONS(3033), - [anon_sym_LT_EQ] = ACTIONS(3033), - [anon_sym_GT_EQ] = ACTIONS(3033), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_mut] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3033), - [anon_sym_DASH_DASH] = ACTIONS(3033), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3033), - [anon_sym_spawn] = ACTIONS(3033), - [anon_sym_json_DOTdecode] = ACTIONS(3033), - [anon_sym_LBRACK2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3033), - [anon_sym_CARET] = ACTIONS(3033), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3033), - [anon_sym_LT_LT] = ACTIONS(3033), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_GT_GT_GT] = ACTIONS(3033), - [anon_sym_AMP_CARET] = ACTIONS(3033), - [anon_sym_AMP_AMP] = ACTIONS(3033), - [anon_sym_PIPE_PIPE] = ACTIONS(3033), - [anon_sym_or] = ACTIONS(3033), - [sym_none] = ACTIONS(3033), - [sym_true] = ACTIONS(3033), - [sym_false] = ACTIONS(3033), - [sym_nil] = ACTIONS(3033), - [anon_sym_QMARK_DOT] = ACTIONS(3033), - [anon_sym_POUND_LBRACK] = ACTIONS(3033), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_DOLLARif] = ACTIONS(3033), - [anon_sym_is] = ACTIONS(3033), - [anon_sym_BANGis] = ACTIONS(3033), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_BANGin] = ACTIONS(3033), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3033), - [anon_sym_rlock] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_sql] = ACTIONS(3033), - [sym_int_literal] = ACTIONS(3033), - [sym_float_literal] = ACTIONS(3033), - [sym_rune_literal] = ACTIONS(3033), - [anon_sym_AT] = ACTIONS(3033), - [anon_sym_shared] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3033), - [anon_sym_chan] = ACTIONS(3033), - [anon_sym_thread] = ACTIONS(3033), - [anon_sym_atomic] = ACTIONS(3033), - [sym___double_quote] = ACTIONS(3033), - [sym___single_quote] = ACTIONS(3033), - [sym___c_double_quote] = ACTIONS(3033), - [sym___c_single_quote] = ACTIONS(3033), - [sym___r_double_quote] = ACTIONS(3033), - [sym___r_single_quote] = ACTIONS(3033), - }, - [1192] = { - [sym_identifier] = ACTIONS(3037), - [anon_sym_LF] = ACTIONS(3037), - [anon_sym_CR] = ACTIONS(3037), - [anon_sym_CR_LF] = ACTIONS(3037), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3037), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3037), - [anon_sym_COMMA] = ACTIONS(3037), - [anon_sym_RBRACE] = ACTIONS(3037), - [anon_sym_LPAREN] = ACTIONS(3037), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3037), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3037), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3037), - [anon_sym_BANG_EQ] = ACTIONS(3037), - [anon_sym_LT_EQ] = ACTIONS(3037), - [anon_sym_GT_EQ] = ACTIONS(3037), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_mut] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3037), - [anon_sym_DASH_DASH] = ACTIONS(3037), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_go] = ACTIONS(3037), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(3037), - [anon_sym_LBRACK2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3037), - [anon_sym_CARET] = ACTIONS(3037), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3037), - [anon_sym_LT_LT] = ACTIONS(3037), - [anon_sym_GT_GT] = ACTIONS(3037), - [anon_sym_GT_GT_GT] = ACTIONS(3037), - [anon_sym_AMP_CARET] = ACTIONS(3037), - [anon_sym_AMP_AMP] = ACTIONS(3037), - [anon_sym_PIPE_PIPE] = ACTIONS(3037), - [anon_sym_or] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_nil] = ACTIONS(3037), - [anon_sym_QMARK_DOT] = ACTIONS(3037), - [anon_sym_POUND_LBRACK] = ACTIONS(3037), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_DOLLARif] = ACTIONS(3037), - [anon_sym_is] = ACTIONS(3037), - [anon_sym_BANGis] = ACTIONS(3037), - [anon_sym_in] = ACTIONS(3037), - [anon_sym_BANGin] = ACTIONS(3037), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_select] = ACTIONS(3037), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3037), - [sym_int_literal] = ACTIONS(3037), - [sym_float_literal] = ACTIONS(3037), - [sym_rune_literal] = ACTIONS(3037), - [anon_sym_AT] = ACTIONS(3037), - [anon_sym_shared] = ACTIONS(3037), - [anon_sym_map_LBRACK] = ACTIONS(3037), - [anon_sym_chan] = ACTIONS(3037), - [anon_sym_thread] = ACTIONS(3037), - [anon_sym_atomic] = ACTIONS(3037), - [sym___double_quote] = ACTIONS(3037), - [sym___single_quote] = ACTIONS(3037), - [sym___c_double_quote] = ACTIONS(3037), - [sym___c_single_quote] = ACTIONS(3037), - [sym___r_double_quote] = ACTIONS(3037), - [sym___r_single_quote] = ACTIONS(3037), - }, - [1193] = { - [sym_identifier] = ACTIONS(3045), - [anon_sym_LF] = ACTIONS(3045), - [anon_sym_CR] = ACTIONS(3045), - [anon_sym_CR_LF] = ACTIONS(3045), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3045), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3045), - [anon_sym_COMMA] = ACTIONS(3045), - [anon_sym_RBRACE] = ACTIONS(3045), - [anon_sym_LPAREN] = ACTIONS(3045), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3045), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3045), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3045), - [anon_sym_BANG_EQ] = ACTIONS(3045), - [anon_sym_LT_EQ] = ACTIONS(3045), - [anon_sym_GT_EQ] = ACTIONS(3045), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3045), - [anon_sym_DASH_DASH] = ACTIONS(3045), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3045), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3045), - [anon_sym_CARET] = ACTIONS(3045), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3045), - [anon_sym_LT_LT] = ACTIONS(3045), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3045), - [anon_sym_AMP_CARET] = ACTIONS(3045), - [anon_sym_AMP_AMP] = ACTIONS(3045), - [anon_sym_PIPE_PIPE] = ACTIONS(3045), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3045), - [anon_sym_POUND_LBRACK] = ACTIONS(3045), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3045), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3045), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3045), - [sym_rune_literal] = ACTIONS(3045), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3045), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3045), - [sym___single_quote] = ACTIONS(3045), - [sym___c_double_quote] = ACTIONS(3045), - [sym___c_single_quote] = ACTIONS(3045), - [sym___r_double_quote] = ACTIONS(3045), - [sym___r_single_quote] = ACTIONS(3045), - }, - [1194] = { - [sym_identifier] = ACTIONS(3053), - [anon_sym_LF] = ACTIONS(3053), - [anon_sym_CR] = ACTIONS(3053), - [anon_sym_CR_LF] = ACTIONS(3053), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3053), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3053), - [anon_sym_COMMA] = ACTIONS(3053), - [anon_sym_RBRACE] = ACTIONS(3053), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3053), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3053), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_EQ_EQ] = ACTIONS(3053), - [anon_sym_BANG_EQ] = ACTIONS(3053), - [anon_sym_LT_EQ] = ACTIONS(3053), - [anon_sym_GT_EQ] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3053), - [anon_sym_DASH_DASH] = ACTIONS(3053), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3053), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3053), - [anon_sym_CARET] = ACTIONS(3053), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3053), - [anon_sym_LT_LT] = ACTIONS(3053), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_GT_GT_GT] = ACTIONS(3053), - [anon_sym_AMP_CARET] = ACTIONS(3053), - [anon_sym_AMP_AMP] = ACTIONS(3053), - [anon_sym_PIPE_PIPE] = ACTIONS(3053), - [anon_sym_or] = ACTIONS(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3053), - [anon_sym_POUND_LBRACK] = ACTIONS(3053), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3053), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3053), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3053), - [sym_rune_literal] = ACTIONS(3053), - [anon_sym_AT] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3053), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [sym___double_quote] = ACTIONS(3053), - [sym___single_quote] = ACTIONS(3053), - [sym___c_double_quote] = ACTIONS(3053), - [sym___c_single_quote] = ACTIONS(3053), - [sym___r_double_quote] = ACTIONS(3053), - [sym___r_single_quote] = ACTIONS(3053), - }, - [1195] = { - [sym_identifier] = ACTIONS(3065), - [anon_sym_LF] = ACTIONS(3065), - [anon_sym_CR] = ACTIONS(3065), - [anon_sym_CR_LF] = ACTIONS(3065), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3065), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3065), - [anon_sym_COMMA] = ACTIONS(3065), - [anon_sym_RBRACE] = ACTIONS(3065), - [anon_sym_LPAREN] = ACTIONS(3065), - [anon_sym_PIPE] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3065), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT_EQ] = ACTIONS(3065), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_mut] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_DASH_DASH] = ACTIONS(3065), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3065), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(3065), - [anon_sym_LBRACK2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3065), - [anon_sym_CARET] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_LT_DASH] = ACTIONS(3065), - [anon_sym_LT_LT] = ACTIONS(3065), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_GT_GT_GT] = ACTIONS(3065), - [anon_sym_AMP_CARET] = ACTIONS(3065), - [anon_sym_AMP_AMP] = ACTIONS(3065), - [anon_sym_PIPE_PIPE] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_nil] = ACTIONS(3065), - [anon_sym_QMARK_DOT] = ACTIONS(3065), - [anon_sym_POUND_LBRACK] = ACTIONS(3065), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_DOLLARif] = ACTIONS(3065), - [anon_sym_is] = ACTIONS(3065), - [anon_sym_BANGis] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_BANGin] = ACTIONS(3065), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_lock] = ACTIONS(3065), - [anon_sym_rlock] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_sql] = ACTIONS(3065), - [sym_int_literal] = ACTIONS(3065), - [sym_float_literal] = ACTIONS(3065), - [sym_rune_literal] = ACTIONS(3065), - [anon_sym_AT] = ACTIONS(3065), - [anon_sym_shared] = ACTIONS(3065), - [anon_sym_map_LBRACK] = ACTIONS(3065), - [anon_sym_chan] = ACTIONS(3065), - [anon_sym_thread] = ACTIONS(3065), - [anon_sym_atomic] = ACTIONS(3065), - [sym___double_quote] = ACTIONS(3065), - [sym___single_quote] = ACTIONS(3065), - [sym___c_double_quote] = ACTIONS(3065), - [sym___c_single_quote] = ACTIONS(3065), - [sym___r_double_quote] = ACTIONS(3065), - [sym___r_single_quote] = ACTIONS(3065), - }, - [1196] = { - [sym_identifier] = ACTIONS(3149), - [anon_sym_LF] = ACTIONS(3149), - [anon_sym_CR] = ACTIONS(3149), - [anon_sym_CR_LF] = ACTIONS(3149), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3149), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3149), - [anon_sym_COMMA] = ACTIONS(3149), - [anon_sym_RBRACE] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3149), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3149), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3149), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_EQ_EQ] = ACTIONS(3149), - [anon_sym_BANG_EQ] = ACTIONS(3149), - [anon_sym_LT_EQ] = ACTIONS(3149), - [anon_sym_GT_EQ] = ACTIONS(3149), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3149), - [anon_sym_DASH_DASH] = ACTIONS(3149), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3149), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3149), - [anon_sym_CARET] = ACTIONS(3149), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3149), - [anon_sym_LT_LT] = ACTIONS(3149), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3149), - [anon_sym_AMP_CARET] = ACTIONS(3149), - [anon_sym_AMP_AMP] = ACTIONS(3149), - [anon_sym_PIPE_PIPE] = ACTIONS(3149), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3149), - [anon_sym_POUND_LBRACK] = ACTIONS(3149), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3149), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3149), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3149), - [sym_rune_literal] = ACTIONS(3149), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3149), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3149), - [sym___single_quote] = ACTIONS(3149), - [sym___c_double_quote] = ACTIONS(3149), - [sym___c_single_quote] = ACTIONS(3149), - [sym___r_double_quote] = ACTIONS(3149), - [sym___r_single_quote] = ACTIONS(3149), - }, - [1197] = { - [sym_identifier] = ACTIONS(2884), - [anon_sym_LF] = ACTIONS(2884), - [anon_sym_CR] = ACTIONS(2884), - [anon_sym_CR_LF] = ACTIONS(2884), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2884), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(2884), - [anon_sym_RBRACE] = ACTIONS(2884), - [anon_sym_LPAREN] = ACTIONS(2884), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2884), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2884), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2884), - [anon_sym_BANG_EQ] = ACTIONS(2884), - [anon_sym_LT_EQ] = ACTIONS(2884), - [anon_sym_GT_EQ] = ACTIONS(2884), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2884), - [anon_sym_DASH_DASH] = ACTIONS(2884), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2884), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2884), - [anon_sym_CARET] = ACTIONS(2884), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2884), - [anon_sym_LT_LT] = ACTIONS(2884), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2884), - [anon_sym_AMP_CARET] = ACTIONS(2884), - [anon_sym_AMP_AMP] = ACTIONS(2884), - [anon_sym_PIPE_PIPE] = ACTIONS(2884), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2884), - [anon_sym_POUND_LBRACK] = ACTIONS(2884), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2884), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2884), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2884), - [sym_rune_literal] = ACTIONS(2884), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2884), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2884), - [sym___single_quote] = ACTIONS(2884), - [sym___c_double_quote] = ACTIONS(2884), - [sym___c_single_quote] = ACTIONS(2884), - [sym___r_double_quote] = ACTIONS(2884), - [sym___r_single_quote] = ACTIONS(2884), - }, - [1198] = { - [sym_identifier] = ACTIONS(3181), - [anon_sym_LF] = ACTIONS(3181), - [anon_sym_CR] = ACTIONS(3181), - [anon_sym_CR_LF] = ACTIONS(3181), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3181), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3181), - [anon_sym_COMMA] = ACTIONS(3181), - [anon_sym_RBRACE] = ACTIONS(3181), - [anon_sym_LPAREN] = ACTIONS(3181), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3181), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3181), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3181), - [anon_sym_BANG_EQ] = ACTIONS(3181), - [anon_sym_LT_EQ] = ACTIONS(3181), - [anon_sym_GT_EQ] = ACTIONS(3181), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3181), - [anon_sym_DASH_DASH] = ACTIONS(3181), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3181), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3181), - [anon_sym_CARET] = ACTIONS(3181), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3181), - [anon_sym_LT_LT] = ACTIONS(3181), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3181), - [anon_sym_AMP_CARET] = ACTIONS(3181), - [anon_sym_AMP_AMP] = ACTIONS(3181), - [anon_sym_PIPE_PIPE] = ACTIONS(3181), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3181), - [anon_sym_POUND_LBRACK] = ACTIONS(3181), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3181), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3181), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3181), - [sym_rune_literal] = ACTIONS(3181), - [anon_sym_AT] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3181), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [sym___double_quote] = ACTIONS(3181), - [sym___single_quote] = ACTIONS(3181), - [sym___c_double_quote] = ACTIONS(3181), - [sym___c_single_quote] = ACTIONS(3181), - [sym___r_double_quote] = ACTIONS(3181), - [sym___r_single_quote] = ACTIONS(3181), - }, - [1199] = { - [sym_identifier] = ACTIONS(3185), - [anon_sym_LF] = ACTIONS(3185), - [anon_sym_CR] = ACTIONS(3185), - [anon_sym_CR_LF] = ACTIONS(3185), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_COMMA] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3185), - [anon_sym_BANG_EQ] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3185), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_CARET] = ACTIONS(3185), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3185), - [anon_sym_LT_LT] = ACTIONS(3185), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3185), - [anon_sym_AMP_CARET] = ACTIONS(3185), - [anon_sym_AMP_AMP] = ACTIONS(3185), - [anon_sym_PIPE_PIPE] = ACTIONS(3185), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3185), - [anon_sym_POUND_LBRACK] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3185), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3185), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3185), - [sym_rune_literal] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3185), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [sym___double_quote] = ACTIONS(3185), - [sym___single_quote] = ACTIONS(3185), - [sym___c_double_quote] = ACTIONS(3185), - [sym___c_single_quote] = ACTIONS(3185), - [sym___r_double_quote] = ACTIONS(3185), - [sym___r_single_quote] = ACTIONS(3185), - }, - [1200] = { - [sym_identifier] = ACTIONS(3189), - [anon_sym_LF] = ACTIONS(3189), - [anon_sym_CR] = ACTIONS(3189), - [anon_sym_CR_LF] = ACTIONS(3189), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3189), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3189), - [anon_sym_COMMA] = ACTIONS(3189), - [anon_sym_RBRACE] = ACTIONS(3189), - [anon_sym_LPAREN] = ACTIONS(3189), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3189), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT_EQ] = ACTIONS(3189), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_DASH_DASH] = ACTIONS(3189), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3189), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3189), - [anon_sym_CARET] = ACTIONS(3189), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3189), - [anon_sym_LT_LT] = ACTIONS(3189), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3189), - [anon_sym_AMP_CARET] = ACTIONS(3189), - [anon_sym_AMP_AMP] = ACTIONS(3189), - [anon_sym_PIPE_PIPE] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3189), - [anon_sym_POUND_LBRACK] = ACTIONS(3189), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3189), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3189), - [sym_rune_literal] = ACTIONS(3189), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3189), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3189), - [sym___single_quote] = ACTIONS(3189), - [sym___c_double_quote] = ACTIONS(3189), - [sym___c_single_quote] = ACTIONS(3189), - [sym___r_double_quote] = ACTIONS(3189), - [sym___r_single_quote] = ACTIONS(3189), - }, - [1201] = { - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3165), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_COMMA] = ACTIONS(3165), - [anon_sym_RBRACE] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3165), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_EQ_EQ] = ACTIONS(3165), - [anon_sym_BANG_EQ] = ACTIONS(3165), - [anon_sym_LT_EQ] = ACTIONS(3165), - [anon_sym_GT_EQ] = ACTIONS(3165), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3165), - [anon_sym_DASH_DASH] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [anon_sym_LT_LT] = ACTIONS(3165), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_GT_GT_GT] = ACTIONS(3165), - [anon_sym_AMP_CARET] = ACTIONS(3165), - [anon_sym_AMP_AMP] = ACTIONS(3165), - [anon_sym_PIPE_PIPE] = ACTIONS(3165), - [anon_sym_or] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_QMARK_DOT] = ACTIONS(3165), - [anon_sym_POUND_LBRACK] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_is] = ACTIONS(3165), - [anon_sym_BANGis] = ACTIONS(3165), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_BANGin] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), - }, - [1202] = { - [sym_identifier] = ACTIONS(3161), - [anon_sym_LF] = ACTIONS(3161), - [anon_sym_CR] = ACTIONS(3161), - [anon_sym_CR_LF] = ACTIONS(3161), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3161), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3161), - [anon_sym_COMMA] = ACTIONS(3161), - [anon_sym_RBRACE] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3161), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3161), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3161), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3161), - [anon_sym_BANG_EQ] = ACTIONS(3161), - [anon_sym_LT_EQ] = ACTIONS(3161), - [anon_sym_GT_EQ] = ACTIONS(3161), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_mut] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3161), - [anon_sym_DASH_DASH] = ACTIONS(3161), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_go] = ACTIONS(3161), - [anon_sym_spawn] = ACTIONS(3161), - [anon_sym_json_DOTdecode] = ACTIONS(3161), - [anon_sym_LBRACK2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3161), - [anon_sym_CARET] = ACTIONS(3161), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3161), - [anon_sym_LT_LT] = ACTIONS(3161), - [anon_sym_GT_GT] = ACTIONS(3161), - [anon_sym_GT_GT_GT] = ACTIONS(3161), - [anon_sym_AMP_CARET] = ACTIONS(3161), - [anon_sym_AMP_AMP] = ACTIONS(3161), - [anon_sym_PIPE_PIPE] = ACTIONS(3161), - [anon_sym_or] = ACTIONS(3161), - [sym_none] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_nil] = ACTIONS(3161), - [anon_sym_QMARK_DOT] = ACTIONS(3161), - [anon_sym_POUND_LBRACK] = ACTIONS(3161), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_DOLLARif] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3161), - [anon_sym_BANGis] = ACTIONS(3161), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3161), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_sql] = ACTIONS(3161), - [sym_int_literal] = ACTIONS(3161), - [sym_float_literal] = ACTIONS(3161), - [sym_rune_literal] = ACTIONS(3161), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_shared] = ACTIONS(3161), - [anon_sym_map_LBRACK] = ACTIONS(3161), - [anon_sym_chan] = ACTIONS(3161), - [anon_sym_thread] = ACTIONS(3161), - [anon_sym_atomic] = ACTIONS(3161), - [sym___double_quote] = ACTIONS(3161), - [sym___single_quote] = ACTIONS(3161), - [sym___c_double_quote] = ACTIONS(3161), - [sym___c_single_quote] = ACTIONS(3161), - [sym___r_double_quote] = ACTIONS(3161), - [sym___r_single_quote] = ACTIONS(3161), - }, - [1203] = { - [sym_identifier] = ACTIONS(3153), - [anon_sym_LF] = ACTIONS(3153), - [anon_sym_CR] = ACTIONS(3153), - [anon_sym_CR_LF] = ACTIONS(3153), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3153), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3153), - [anon_sym_COMMA] = ACTIONS(3153), - [anon_sym_RBRACE] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3153), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3153), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3153), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_EQ_EQ] = ACTIONS(3153), - [anon_sym_BANG_EQ] = ACTIONS(3153), - [anon_sym_LT_EQ] = ACTIONS(3153), - [anon_sym_GT_EQ] = ACTIONS(3153), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3153), - [anon_sym_DASH_DASH] = ACTIONS(3153), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3153), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3153), - [anon_sym_CARET] = ACTIONS(3153), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3153), - [anon_sym_LT_LT] = ACTIONS(3153), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3153), - [anon_sym_AMP_CARET] = ACTIONS(3153), - [anon_sym_AMP_AMP] = ACTIONS(3153), - [anon_sym_PIPE_PIPE] = ACTIONS(3153), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3153), - [anon_sym_POUND_LBRACK] = ACTIONS(3153), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3153), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3153), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3153), - [sym_rune_literal] = ACTIONS(3153), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3153), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3153), - [sym___single_quote] = ACTIONS(3153), - [sym___c_double_quote] = ACTIONS(3153), - [sym___c_single_quote] = ACTIONS(3153), - [sym___r_double_quote] = ACTIONS(3153), - [sym___r_single_quote] = ACTIONS(3153), - }, - [1204] = { - [sym_identifier] = ACTIONS(2766), - [anon_sym_LF] = ACTIONS(2766), - [anon_sym_CR] = ACTIONS(2766), - [anon_sym_CR_LF] = ACTIONS(2766), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2766), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2766), - [anon_sym_COMMA] = ACTIONS(2766), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_LPAREN] = ACTIONS(2766), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2766), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2766), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2766), - [anon_sym_BANG_EQ] = ACTIONS(2766), - [anon_sym_LT_EQ] = ACTIONS(2766), - [anon_sym_GT_EQ] = ACTIONS(2766), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_mut] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2766), - [anon_sym_DASH_DASH] = ACTIONS(2766), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_go] = ACTIONS(2766), - [anon_sym_spawn] = ACTIONS(2766), - [anon_sym_json_DOTdecode] = ACTIONS(2766), - [anon_sym_LBRACK2] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2766), - [anon_sym_CARET] = ACTIONS(2766), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_LT_DASH] = ACTIONS(2766), - [anon_sym_LT_LT] = ACTIONS(2766), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2766), - [anon_sym_AMP_CARET] = ACTIONS(2766), - [anon_sym_AMP_AMP] = ACTIONS(2766), - [anon_sym_PIPE_PIPE] = ACTIONS(2766), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_nil] = ACTIONS(2766), - [anon_sym_QMARK_DOT] = ACTIONS(2766), - [anon_sym_POUND_LBRACK] = ACTIONS(2766), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_DOLLARif] = ACTIONS(2766), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2766), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2766), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_select] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2766), - [anon_sym_rlock] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_sql] = ACTIONS(2766), - [sym_int_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2766), - [sym_rune_literal] = ACTIONS(2766), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_shared] = ACTIONS(2766), - [anon_sym_map_LBRACK] = ACTIONS(2766), - [anon_sym_chan] = ACTIONS(2766), - [anon_sym_thread] = ACTIONS(2766), - [anon_sym_atomic] = ACTIONS(2766), - [sym___double_quote] = ACTIONS(2766), - [sym___single_quote] = ACTIONS(2766), - [sym___c_double_quote] = ACTIONS(2766), - [sym___c_single_quote] = ACTIONS(2766), - [sym___r_double_quote] = ACTIONS(2766), - [sym___r_single_quote] = ACTIONS(2766), - }, - [1205] = { - [sym_identifier] = ACTIONS(2963), - [anon_sym_LF] = ACTIONS(2963), - [anon_sym_CR] = ACTIONS(2963), - [anon_sym_CR_LF] = ACTIONS(2963), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2963), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2963), - [anon_sym_COMMA] = ACTIONS(2963), - [anon_sym_RBRACE] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(2963), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2963), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2963), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_EQ_EQ] = ACTIONS(2963), - [anon_sym_BANG_EQ] = ACTIONS(2963), - [anon_sym_LT_EQ] = ACTIONS(2963), - [anon_sym_GT_EQ] = ACTIONS(2963), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_mut] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2963), - [anon_sym_DASH_DASH] = ACTIONS(2963), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2963), - [anon_sym_json_DOTdecode] = ACTIONS(2963), - [anon_sym_LBRACK2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2963), - [anon_sym_CARET] = ACTIONS(2963), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2963), - [anon_sym_LT_LT] = ACTIONS(2963), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2963), - [anon_sym_AMP_CARET] = ACTIONS(2963), - [anon_sym_AMP_AMP] = ACTIONS(2963), - [anon_sym_PIPE_PIPE] = ACTIONS(2963), - [anon_sym_or] = ACTIONS(2963), - [sym_none] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_nil] = ACTIONS(2963), - [anon_sym_QMARK_DOT] = ACTIONS(2963), - [anon_sym_POUND_LBRACK] = ACTIONS(2963), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_DOLLARif] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_BANGis] = ACTIONS(2963), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_BANGin] = ACTIONS(2963), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_select] = ACTIONS(2963), - [anon_sym_lock] = ACTIONS(2963), - [anon_sym_rlock] = ACTIONS(2963), - [anon_sym_unsafe] = ACTIONS(2963), - [anon_sym_sql] = ACTIONS(2963), - [sym_int_literal] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2963), - [sym_rune_literal] = ACTIONS(2963), - [anon_sym_AT] = ACTIONS(2963), - [anon_sym_shared] = ACTIONS(2963), - [anon_sym_map_LBRACK] = ACTIONS(2963), - [anon_sym_chan] = ACTIONS(2963), - [anon_sym_thread] = ACTIONS(2963), - [anon_sym_atomic] = ACTIONS(2963), - [sym___double_quote] = ACTIONS(2963), - [sym___single_quote] = ACTIONS(2963), - [sym___c_double_quote] = ACTIONS(2963), - [sym___c_single_quote] = ACTIONS(2963), - [sym___r_double_quote] = ACTIONS(2963), - [sym___r_single_quote] = ACTIONS(2963), - }, - [1206] = { - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3081), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(3081), - [anon_sym_RBRACE] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3081), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3081), - [anon_sym_BANG_EQ] = ACTIONS(3081), - [anon_sym_LT_EQ] = ACTIONS(3081), - [anon_sym_GT_EQ] = ACTIONS(3081), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3081), - [anon_sym_DASH_DASH] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [anon_sym_LT_LT] = ACTIONS(3081), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3081), - [anon_sym_AMP_CARET] = ACTIONS(3081), - [anon_sym_AMP_AMP] = ACTIONS(3081), - [anon_sym_PIPE_PIPE] = ACTIONS(3081), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3081), - [anon_sym_POUND_LBRACK] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3081), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), - }, - [1207] = { - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2700), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_COMMA] = ACTIONS(2700), - [anon_sym_RBRACE] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2700), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2700), - [anon_sym_BANG_EQ] = ACTIONS(2700), - [anon_sym_LT_EQ] = ACTIONS(2700), - [anon_sym_GT_EQ] = ACTIONS(2700), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2700), - [anon_sym_DASH_DASH] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [anon_sym_LT_LT] = ACTIONS(2700), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2700), - [anon_sym_AMP_CARET] = ACTIONS(2700), - [anon_sym_AMP_AMP] = ACTIONS(2700), - [anon_sym_PIPE_PIPE] = ACTIONS(2700), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2700), - [anon_sym_POUND_LBRACK] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2700), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [1208] = { - [sym_identifier] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_CR] = ACTIONS(3113), - [anon_sym_CR_LF] = ACTIONS(3113), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3113), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_as] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_COMMA] = ACTIONS(3113), - [anon_sym_RBRACE] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3113), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3113), - [anon_sym_BANG_EQ] = ACTIONS(3113), - [anon_sym_LT_EQ] = ACTIONS(3113), - [anon_sym_GT_EQ] = ACTIONS(3113), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3113), - [anon_sym_DASH_DASH] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3113), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3113), - [anon_sym_LT_LT] = ACTIONS(3113), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_GT_GT_GT] = ACTIONS(3113), - [anon_sym_AMP_CARET] = ACTIONS(3113), - [anon_sym_AMP_AMP] = ACTIONS(3113), - [anon_sym_PIPE_PIPE] = ACTIONS(3113), - [anon_sym_or] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_QMARK_DOT] = ACTIONS(3113), - [anon_sym_POUND_LBRACK] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_is] = ACTIONS(3113), - [anon_sym_BANGis] = ACTIONS(3113), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_BANGin] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3113), - [sym_rune_literal] = ACTIONS(3113), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3113), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3113), - [sym___single_quote] = ACTIONS(3113), - [sym___c_double_quote] = ACTIONS(3113), - [sym___c_single_quote] = ACTIONS(3113), - [sym___r_double_quote] = ACTIONS(3113), - [sym___r_single_quote] = ACTIONS(3113), - }, - [1209] = { - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2828), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_COMMA] = ACTIONS(2828), - [anon_sym_RBRACE] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2828), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2828), - [anon_sym_BANG_EQ] = ACTIONS(2828), - [anon_sym_LT_EQ] = ACTIONS(2828), - [anon_sym_GT_EQ] = ACTIONS(2828), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2828), - [anon_sym_DASH_DASH] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [anon_sym_LT_LT] = ACTIONS(2828), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2828), - [anon_sym_AMP_CARET] = ACTIONS(2828), - [anon_sym_AMP_AMP] = ACTIONS(2828), - [anon_sym_PIPE_PIPE] = ACTIONS(2828), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2828), - [anon_sym_POUND_LBRACK] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2828), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), - }, - [1210] = { - [sym_identifier] = ACTIONS(2800), - [anon_sym_LF] = ACTIONS(2800), - [anon_sym_CR] = ACTIONS(2800), - [anon_sym_CR_LF] = ACTIONS(2800), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2800), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_as] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2800), - [anon_sym_COMMA] = ACTIONS(2800), - [anon_sym_RBRACE] = ACTIONS(2800), - [anon_sym_LPAREN] = ACTIONS(2800), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2800), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2800), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_EQ_EQ] = ACTIONS(2800), - [anon_sym_BANG_EQ] = ACTIONS(2800), - [anon_sym_LT_EQ] = ACTIONS(2800), - [anon_sym_GT_EQ] = ACTIONS(2800), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2800), - [anon_sym_DASH_DASH] = ACTIONS(2800), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_go] = ACTIONS(2800), - [anon_sym_spawn] = ACTIONS(2800), - [anon_sym_json_DOTdecode] = ACTIONS(2800), - [anon_sym_LBRACK2] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2800), - [anon_sym_CARET] = ACTIONS(2800), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_LT_DASH] = ACTIONS(2800), - [anon_sym_LT_LT] = ACTIONS(2800), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2800), - [anon_sym_AMP_CARET] = ACTIONS(2800), - [anon_sym_AMP_AMP] = ACTIONS(2800), - [anon_sym_PIPE_PIPE] = ACTIONS(2800), - [anon_sym_or] = ACTIONS(2800), - [sym_none] = ACTIONS(2800), - [sym_true] = ACTIONS(2800), - [sym_false] = ACTIONS(2800), - [sym_nil] = ACTIONS(2800), - [anon_sym_QMARK_DOT] = ACTIONS(2800), - [anon_sym_POUND_LBRACK] = ACTIONS(2800), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_DOLLARif] = ACTIONS(2800), - [anon_sym_is] = ACTIONS(2800), - [anon_sym_BANGis] = ACTIONS(2800), - [anon_sym_in] = ACTIONS(2800), - [anon_sym_BANGin] = ACTIONS(2800), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_select] = ACTIONS(2800), - [anon_sym_lock] = ACTIONS(2800), - [anon_sym_rlock] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_sql] = ACTIONS(2800), - [sym_int_literal] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2800), - [sym_rune_literal] = ACTIONS(2800), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_shared] = ACTIONS(2800), - [anon_sym_map_LBRACK] = ACTIONS(2800), - [anon_sym_chan] = ACTIONS(2800), - [anon_sym_thread] = ACTIONS(2800), - [anon_sym_atomic] = ACTIONS(2800), - [sym___double_quote] = ACTIONS(2800), - [sym___single_quote] = ACTIONS(2800), - [sym___c_double_quote] = ACTIONS(2800), - [sym___c_single_quote] = ACTIONS(2800), - [sym___r_double_quote] = ACTIONS(2800), - [sym___r_single_quote] = ACTIONS(2800), - }, - [1211] = { - [sym_identifier] = ACTIONS(2804), - [anon_sym_LF] = ACTIONS(2804), - [anon_sym_CR] = ACTIONS(2804), - [anon_sym_CR_LF] = ACTIONS(2804), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2804), - [anon_sym_DOT] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2804), - [anon_sym_COMMA] = ACTIONS(2804), - [anon_sym_RBRACE] = ACTIONS(2804), - [anon_sym_LPAREN] = ACTIONS(2804), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2804), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2804), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_EQ_EQ] = ACTIONS(2804), - [anon_sym_BANG_EQ] = ACTIONS(2804), - [anon_sym_LT_EQ] = ACTIONS(2804), - [anon_sym_GT_EQ] = ACTIONS(2804), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_mut] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2804), - [anon_sym_DASH_DASH] = ACTIONS(2804), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_go] = ACTIONS(2804), - [anon_sym_spawn] = ACTIONS(2804), - [anon_sym_json_DOTdecode] = ACTIONS(2804), - [anon_sym_LBRACK2] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2804), - [anon_sym_CARET] = ACTIONS(2804), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_LT_DASH] = ACTIONS(2804), - [anon_sym_LT_LT] = ACTIONS(2804), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2804), - [anon_sym_AMP_CARET] = ACTIONS(2804), - [anon_sym_AMP_AMP] = ACTIONS(2804), - [anon_sym_PIPE_PIPE] = ACTIONS(2804), - [anon_sym_or] = ACTIONS(2804), - [sym_none] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_nil] = ACTIONS(2804), - [anon_sym_QMARK_DOT] = ACTIONS(2804), - [anon_sym_POUND_LBRACK] = ACTIONS(2804), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_DOLLARif] = ACTIONS(2804), - [anon_sym_is] = ACTIONS(2804), - [anon_sym_BANGis] = ACTIONS(2804), - [anon_sym_in] = ACTIONS(2804), - [anon_sym_BANGin] = ACTIONS(2804), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_select] = ACTIONS(2804), - [anon_sym_lock] = ACTIONS(2804), - [anon_sym_rlock] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_sql] = ACTIONS(2804), - [sym_int_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2804), - [sym_rune_literal] = ACTIONS(2804), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_shared] = ACTIONS(2804), - [anon_sym_map_LBRACK] = ACTIONS(2804), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2804), - [anon_sym_atomic] = ACTIONS(2804), - [sym___double_quote] = ACTIONS(2804), - [sym___single_quote] = ACTIONS(2804), - [sym___c_double_quote] = ACTIONS(2804), - [sym___c_single_quote] = ACTIONS(2804), - [sym___r_double_quote] = ACTIONS(2804), - [sym___r_single_quote] = ACTIONS(2804), - }, - [1212] = { - [sym_identifier] = ACTIONS(2816), - [anon_sym_LF] = ACTIONS(2816), - [anon_sym_CR] = ACTIONS(2816), - [anon_sym_CR_LF] = ACTIONS(2816), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2816), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2816), - [anon_sym_COMMA] = ACTIONS(2816), - [anon_sym_RBRACE] = ACTIONS(2816), - [anon_sym_LPAREN] = ACTIONS(2816), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2816), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2816), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2816), - [anon_sym_BANG_EQ] = ACTIONS(2816), - [anon_sym_LT_EQ] = ACTIONS(2816), - [anon_sym_GT_EQ] = ACTIONS(2816), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2816), - [anon_sym_DASH_DASH] = ACTIONS(2816), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2816), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2816), - [anon_sym_CARET] = ACTIONS(2816), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2816), - [anon_sym_LT_LT] = ACTIONS(2816), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2816), - [anon_sym_AMP_CARET] = ACTIONS(2816), - [anon_sym_AMP_AMP] = ACTIONS(2816), - [anon_sym_PIPE_PIPE] = ACTIONS(2816), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2816), - [anon_sym_POUND_LBRACK] = ACTIONS(2816), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2816), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2816), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2816), - [sym_rune_literal] = ACTIONS(2816), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2816), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2816), - [sym___single_quote] = ACTIONS(2816), - [sym___c_double_quote] = ACTIONS(2816), - [sym___c_single_quote] = ACTIONS(2816), - [sym___r_double_quote] = ACTIONS(2816), - [sym___r_single_quote] = ACTIONS(2816), - }, - [1213] = { - [sym_identifier] = ACTIONS(3021), - [anon_sym_LF] = ACTIONS(3021), - [anon_sym_CR] = ACTIONS(3021), - [anon_sym_CR_LF] = ACTIONS(3021), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3021), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(3021), - [anon_sym_RBRACE] = ACTIONS(3021), - [anon_sym_LPAREN] = ACTIONS(3021), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3021), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3021), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_EQ_EQ] = ACTIONS(3021), - [anon_sym_BANG_EQ] = ACTIONS(3021), - [anon_sym_LT_EQ] = ACTIONS(3021), - [anon_sym_GT_EQ] = ACTIONS(3021), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_mut] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3021), - [anon_sym_DASH_DASH] = ACTIONS(3021), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(3021), - [anon_sym_spawn] = ACTIONS(3021), - [anon_sym_json_DOTdecode] = ACTIONS(3021), - [anon_sym_LBRACK2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3021), - [anon_sym_CARET] = ACTIONS(3021), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3021), - [anon_sym_LT_LT] = ACTIONS(3021), - [anon_sym_GT_GT] = ACTIONS(3021), - [anon_sym_GT_GT_GT] = ACTIONS(3021), - [anon_sym_AMP_CARET] = ACTIONS(3021), - [anon_sym_AMP_AMP] = ACTIONS(3021), - [anon_sym_PIPE_PIPE] = ACTIONS(3021), - [anon_sym_or] = ACTIONS(3021), - [sym_none] = ACTIONS(3021), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_nil] = ACTIONS(3021), - [anon_sym_QMARK_DOT] = ACTIONS(3021), - [anon_sym_POUND_LBRACK] = ACTIONS(3021), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_DOLLARif] = ACTIONS(3021), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_BANGis] = ACTIONS(3021), - [anon_sym_in] = ACTIONS(3021), - [anon_sym_BANGin] = ACTIONS(3021), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_select] = ACTIONS(3021), - [anon_sym_lock] = ACTIONS(3021), - [anon_sym_rlock] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_sql] = ACTIONS(3021), - [sym_int_literal] = ACTIONS(3021), - [sym_float_literal] = ACTIONS(3021), - [sym_rune_literal] = ACTIONS(3021), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_shared] = ACTIONS(3021), - [anon_sym_map_LBRACK] = ACTIONS(3021), - [anon_sym_chan] = ACTIONS(3021), - [anon_sym_thread] = ACTIONS(3021), - [anon_sym_atomic] = ACTIONS(3021), - [sym___double_quote] = ACTIONS(3021), - [sym___single_quote] = ACTIONS(3021), - [sym___c_double_quote] = ACTIONS(3021), - [sym___c_single_quote] = ACTIONS(3021), - [sym___r_double_quote] = ACTIONS(3021), - [sym___r_single_quote] = ACTIONS(3021), - }, - [1214] = { - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3109), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_COMMA] = ACTIONS(3109), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3109), - [anon_sym_BANG_EQ] = ACTIONS(3109), - [anon_sym_LT_EQ] = ACTIONS(3109), - [anon_sym_GT_EQ] = ACTIONS(3109), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3109), - [anon_sym_DASH_DASH] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [anon_sym_LT_LT] = ACTIONS(3109), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3109), - [anon_sym_AMP_CARET] = ACTIONS(3109), - [anon_sym_AMP_AMP] = ACTIONS(3109), - [anon_sym_PIPE_PIPE] = ACTIONS(3109), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3109), - [anon_sym_POUND_LBRACK] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3109), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), - }, - [1215] = { - [sym_identifier] = ACTIONS(2911), - [anon_sym_LF] = ACTIONS(2911), - [anon_sym_CR] = ACTIONS(2911), - [anon_sym_CR_LF] = ACTIONS(2911), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2911), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2911), - [anon_sym_COMMA] = ACTIONS(2911), - [anon_sym_RBRACE] = ACTIONS(2911), - [anon_sym_LPAREN] = ACTIONS(2911), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2911), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2911), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2911), - [anon_sym_BANG_EQ] = ACTIONS(2911), - [anon_sym_LT_EQ] = ACTIONS(2911), - [anon_sym_GT_EQ] = ACTIONS(2911), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2911), - [anon_sym_DASH_DASH] = ACTIONS(2911), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2911), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2911), - [anon_sym_CARET] = ACTIONS(2911), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2911), - [anon_sym_LT_LT] = ACTIONS(2911), - [anon_sym_GT_GT] = ACTIONS(2911), - [anon_sym_GT_GT_GT] = ACTIONS(2911), - [anon_sym_AMP_CARET] = ACTIONS(2911), - [anon_sym_AMP_AMP] = ACTIONS(2911), - [anon_sym_PIPE_PIPE] = ACTIONS(2911), - [anon_sym_or] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2911), - [anon_sym_POUND_LBRACK] = ACTIONS(2911), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2911), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2911), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2911), - [sym_rune_literal] = ACTIONS(2911), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2911), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [sym___double_quote] = ACTIONS(2911), - [sym___single_quote] = ACTIONS(2911), - [sym___c_double_quote] = ACTIONS(2911), - [sym___c_single_quote] = ACTIONS(2911), - [sym___r_double_quote] = ACTIONS(2911), - [sym___r_single_quote] = ACTIONS(2911), - }, - [1216] = { - [sym_identifier] = ACTIONS(3121), - [anon_sym_LF] = ACTIONS(3121), - [anon_sym_CR] = ACTIONS(3121), - [anon_sym_CR_LF] = ACTIONS(3121), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3121), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_as] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_COMMA] = ACTIONS(3121), - [anon_sym_RBRACE] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3121), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_EQ_EQ] = ACTIONS(3121), - [anon_sym_BANG_EQ] = ACTIONS(3121), - [anon_sym_LT_EQ] = ACTIONS(3121), - [anon_sym_GT_EQ] = ACTIONS(3121), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3121), - [anon_sym_DASH_DASH] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3121), - [anon_sym_LT_LT] = ACTIONS(3121), - [anon_sym_GT_GT] = ACTIONS(3121), - [anon_sym_GT_GT_GT] = ACTIONS(3121), - [anon_sym_AMP_CARET] = ACTIONS(3121), - [anon_sym_AMP_AMP] = ACTIONS(3121), - [anon_sym_PIPE_PIPE] = ACTIONS(3121), - [anon_sym_or] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_QMARK_DOT] = ACTIONS(3121), - [anon_sym_POUND_LBRACK] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_is] = ACTIONS(3121), - [anon_sym_BANGis] = ACTIONS(3121), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_BANGin] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), - }, - [1217] = { - [sym_identifier] = ACTIONS(2852), - [anon_sym_LF] = ACTIONS(2852), - [anon_sym_CR] = ACTIONS(2852), - [anon_sym_CR_LF] = ACTIONS(2852), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2852), - [anon_sym_DOT] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2852), - [anon_sym_COMMA] = ACTIONS(2852), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_LPAREN] = ACTIONS(2852), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2852), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PERCENT] = ACTIONS(2852), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2852), - [anon_sym_BANG_EQ] = ACTIONS(2852), - [anon_sym_LT_EQ] = ACTIONS(2852), - [anon_sym_GT_EQ] = ACTIONS(2852), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_mut] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2852), - [anon_sym_DASH_DASH] = ACTIONS(2852), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_go] = ACTIONS(2852), - [anon_sym_spawn] = ACTIONS(2852), - [anon_sym_json_DOTdecode] = ACTIONS(2852), - [anon_sym_LBRACK2] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2852), - [anon_sym_CARET] = ACTIONS(2852), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_LT_DASH] = ACTIONS(2852), - [anon_sym_LT_LT] = ACTIONS(2852), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2852), - [anon_sym_AMP_CARET] = ACTIONS(2852), - [anon_sym_AMP_AMP] = ACTIONS(2852), - [anon_sym_PIPE_PIPE] = ACTIONS(2852), - [anon_sym_or] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_nil] = ACTIONS(2852), - [anon_sym_QMARK_DOT] = ACTIONS(2852), - [anon_sym_POUND_LBRACK] = ACTIONS(2852), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_DOLLARif] = ACTIONS(2852), - [anon_sym_is] = ACTIONS(2852), - [anon_sym_BANGis] = ACTIONS(2852), - [anon_sym_in] = ACTIONS(2852), - [anon_sym_BANGin] = ACTIONS(2852), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_select] = ACTIONS(2852), - [anon_sym_lock] = ACTIONS(2852), - [anon_sym_rlock] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_sql] = ACTIONS(2852), - [sym_int_literal] = ACTIONS(2852), - [sym_float_literal] = ACTIONS(2852), - [sym_rune_literal] = ACTIONS(2852), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_shared] = ACTIONS(2852), - [anon_sym_map_LBRACK] = ACTIONS(2852), - [anon_sym_chan] = ACTIONS(2852), - [anon_sym_thread] = ACTIONS(2852), - [anon_sym_atomic] = ACTIONS(2852), - [sym___double_quote] = ACTIONS(2852), - [sym___single_quote] = ACTIONS(2852), - [sym___c_double_quote] = ACTIONS(2852), - [sym___c_single_quote] = ACTIONS(2852), - [sym___r_double_quote] = ACTIONS(2852), - [sym___r_single_quote] = ACTIONS(2852), - }, - [1218] = { - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3009), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_COMMA] = ACTIONS(3009), - [anon_sym_RBRACE] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3009), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3009), - [anon_sym_BANG_EQ] = ACTIONS(3009), - [anon_sym_LT_EQ] = ACTIONS(3009), - [anon_sym_GT_EQ] = ACTIONS(3009), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3009), - [anon_sym_DASH_DASH] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3009), - [anon_sym_LT_LT] = ACTIONS(3009), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_GT_GT_GT] = ACTIONS(3009), - [anon_sym_AMP_CARET] = ACTIONS(3009), - [anon_sym_AMP_AMP] = ACTIONS(3009), - [anon_sym_PIPE_PIPE] = ACTIONS(3009), - [anon_sym_or] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_QMARK_DOT] = ACTIONS(3009), - [anon_sym_POUND_LBRACK] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3009), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), - }, - [1219] = { - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2993), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_COMMA] = ACTIONS(2993), - [anon_sym_RBRACE] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2993), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2993), - [anon_sym_BANG_EQ] = ACTIONS(2993), - [anon_sym_LT_EQ] = ACTIONS(2993), - [anon_sym_GT_EQ] = ACTIONS(2993), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2993), - [anon_sym_DASH_DASH] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [anon_sym_LT_LT] = ACTIONS(2993), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2993), - [anon_sym_AMP_CARET] = ACTIONS(2993), - [anon_sym_AMP_AMP] = ACTIONS(2993), - [anon_sym_PIPE_PIPE] = ACTIONS(2993), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2993), - [anon_sym_POUND_LBRACK] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2993), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2993), - [sym___single_quote] = ACTIONS(2993), - [sym___c_double_quote] = ACTIONS(2993), - [sym___c_single_quote] = ACTIONS(2993), - [sym___r_double_quote] = ACTIONS(2993), - [sym___r_single_quote] = ACTIONS(2993), - }, - [1220] = { - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2939), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_as] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_COMMA] = ACTIONS(2939), - [anon_sym_RBRACE] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_PERCENT] = ACTIONS(2939), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_GT] = ACTIONS(2939), - [anon_sym_EQ_EQ] = ACTIONS(2939), - [anon_sym_BANG_EQ] = ACTIONS(2939), - [anon_sym_LT_EQ] = ACTIONS(2939), - [anon_sym_GT_EQ] = ACTIONS(2939), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2939), - [anon_sym_DASH_DASH] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2939), - [anon_sym_LT_LT] = ACTIONS(2939), - [anon_sym_GT_GT] = ACTIONS(2939), - [anon_sym_GT_GT_GT] = ACTIONS(2939), - [anon_sym_AMP_CARET] = ACTIONS(2939), - [anon_sym_AMP_AMP] = ACTIONS(2939), - [anon_sym_PIPE_PIPE] = ACTIONS(2939), - [anon_sym_or] = ACTIONS(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_QMARK_DOT] = ACTIONS(2939), - [anon_sym_POUND_LBRACK] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_is] = ACTIONS(2939), - [anon_sym_BANGis] = ACTIONS(2939), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_BANGin] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), - [sym_rune_literal] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2939), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2939), - [sym___single_quote] = ACTIONS(2939), - [sym___c_double_quote] = ACTIONS(2939), - [sym___c_single_quote] = ACTIONS(2939), - [sym___r_double_quote] = ACTIONS(2939), - [sym___r_single_quote] = ACTIONS(2939), - }, - [1221] = { - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2935), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_COMMA] = ACTIONS(2935), - [anon_sym_RBRACE] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2935), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2935), - [anon_sym_BANG_EQ] = ACTIONS(2935), - [anon_sym_LT_EQ] = ACTIONS(2935), - [anon_sym_GT_EQ] = ACTIONS(2935), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2935), - [anon_sym_DASH_DASH] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [anon_sym_LT_LT] = ACTIONS(2935), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2935), - [anon_sym_AMP_CARET] = ACTIONS(2935), - [anon_sym_AMP_AMP] = ACTIONS(2935), - [anon_sym_PIPE_PIPE] = ACTIONS(2935), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2935), - [anon_sym_POUND_LBRACK] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2935), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), - }, - [1222] = { - [sym_identifier] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_CR] = ACTIONS(2919), - [anon_sym_CR_LF] = ACTIONS(2919), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2919), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_COMMA] = ACTIONS(2919), - [anon_sym_RBRACE] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2919), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2919), - [anon_sym_BANG_EQ] = ACTIONS(2919), - [anon_sym_LT_EQ] = ACTIONS(2919), - [anon_sym_GT_EQ] = ACTIONS(2919), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2919), - [anon_sym_DASH_DASH] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2919), - [anon_sym_LT_LT] = ACTIONS(2919), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_GT_GT_GT] = ACTIONS(2919), - [anon_sym_AMP_CARET] = ACTIONS(2919), - [anon_sym_AMP_AMP] = ACTIONS(2919), - [anon_sym_PIPE_PIPE] = ACTIONS(2919), - [anon_sym_or] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_QMARK_DOT] = ACTIONS(2919), - [anon_sym_POUND_LBRACK] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_is] = ACTIONS(2919), - [anon_sym_BANGis] = ACTIONS(2919), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_BANGin] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2919), - [sym___single_quote] = ACTIONS(2919), - [sym___c_double_quote] = ACTIONS(2919), - [sym___c_single_quote] = ACTIONS(2919), - [sym___r_double_quote] = ACTIONS(2919), - [sym___r_single_quote] = ACTIONS(2919), - }, - [1223] = { - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2903), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_COMMA] = ACTIONS(2903), - [anon_sym_RBRACE] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2903), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2903), - [anon_sym_BANG_EQ] = ACTIONS(2903), - [anon_sym_LT_EQ] = ACTIONS(2903), - [anon_sym_GT_EQ] = ACTIONS(2903), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2903), - [anon_sym_DASH_DASH] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [anon_sym_LT_LT] = ACTIONS(2903), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_GT_GT_GT] = ACTIONS(2903), - [anon_sym_AMP_CARET] = ACTIONS(2903), - [anon_sym_AMP_AMP] = ACTIONS(2903), - [anon_sym_PIPE_PIPE] = ACTIONS(2903), - [anon_sym_or] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2903), - [anon_sym_POUND_LBRACK] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2903), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2903), - [sym___single_quote] = ACTIONS(2903), - [sym___c_double_quote] = ACTIONS(2903), - [sym___c_single_quote] = ACTIONS(2903), - [sym___r_double_quote] = ACTIONS(2903), - [sym___r_single_quote] = ACTIONS(2903), - }, - [1224] = { - [sym_identifier] = ACTIONS(2943), - [anon_sym_LF] = ACTIONS(2943), - [anon_sym_CR] = ACTIONS(2943), - [anon_sym_CR_LF] = ACTIONS(2943), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2943), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2943), - [anon_sym_COMMA] = ACTIONS(2943), - [anon_sym_RBRACE] = ACTIONS(2943), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2943), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2943), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2943), - [anon_sym_BANG_EQ] = ACTIONS(2943), - [anon_sym_LT_EQ] = ACTIONS(2943), - [anon_sym_GT_EQ] = ACTIONS(2943), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2943), - [anon_sym_DASH_DASH] = ACTIONS(2943), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(3594), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2943), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2943), - [anon_sym_CARET] = ACTIONS(2943), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2943), - [anon_sym_LT_LT] = ACTIONS(2943), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2943), - [anon_sym_AMP_CARET] = ACTIONS(2943), - [anon_sym_AMP_AMP] = ACTIONS(2943), - [anon_sym_PIPE_PIPE] = ACTIONS(2943), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2943), - [anon_sym_POUND_LBRACK] = ACTIONS(2943), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2943), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2943), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2943), - [sym_rune_literal] = ACTIONS(2943), - [anon_sym_AT] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2943), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2943), - [sym___single_quote] = ACTIONS(2943), - [sym___c_double_quote] = ACTIONS(2943), - [sym___c_single_quote] = ACTIONS(2943), - [sym___r_double_quote] = ACTIONS(2943), - [sym___r_single_quote] = ACTIONS(2943), - }, - [1225] = { - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [1226] = { - [sym_identifier] = ACTIONS(3025), - [anon_sym_LF] = ACTIONS(3025), - [anon_sym_CR] = ACTIONS(3025), - [anon_sym_CR_LF] = ACTIONS(3025), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3025), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(3025), - [anon_sym_RBRACE] = ACTIONS(3025), - [anon_sym_LPAREN] = ACTIONS(3025), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3025), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT_EQ] = ACTIONS(3025), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_mut] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_DASH_DASH] = ACTIONS(3025), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3025), - [anon_sym_spawn] = ACTIONS(3025), - [anon_sym_json_DOTdecode] = ACTIONS(3025), - [anon_sym_LBRACK2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3025), - [anon_sym_CARET] = ACTIONS(3025), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3025), - [anon_sym_LT_LT] = ACTIONS(3025), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_GT_GT_GT] = ACTIONS(3025), - [anon_sym_AMP_CARET] = ACTIONS(3025), - [anon_sym_AMP_AMP] = ACTIONS(3025), - [anon_sym_PIPE_PIPE] = ACTIONS(3025), - [anon_sym_or] = ACTIONS(3025), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_QMARK_DOT] = ACTIONS(3025), - [anon_sym_POUND_LBRACK] = ACTIONS(3025), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_DOLLARif] = ACTIONS(3025), - [anon_sym_is] = ACTIONS(3025), - [anon_sym_BANGis] = ACTIONS(3025), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3025), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_select] = ACTIONS(3025), - [anon_sym_lock] = ACTIONS(3025), - [anon_sym_rlock] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_sql] = ACTIONS(3025), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3025), - [sym_rune_literal] = ACTIONS(3025), - [anon_sym_AT] = ACTIONS(3025), - [anon_sym_shared] = ACTIONS(3025), - [anon_sym_map_LBRACK] = ACTIONS(3025), - [anon_sym_chan] = ACTIONS(3025), - [anon_sym_thread] = ACTIONS(3025), - [anon_sym_atomic] = ACTIONS(3025), - [sym___double_quote] = ACTIONS(3025), - [sym___single_quote] = ACTIONS(3025), - [sym___c_double_quote] = ACTIONS(3025), - [sym___c_single_quote] = ACTIONS(3025), - [sym___r_double_quote] = ACTIONS(3025), - [sym___r_single_quote] = ACTIONS(3025), - }, - [1227] = { - [sym_identifier] = ACTIONS(3005), - [anon_sym_LF] = ACTIONS(3005), - [anon_sym_CR] = ACTIONS(3005), - [anon_sym_CR_LF] = ACTIONS(3005), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3005), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3005), - [anon_sym_COMMA] = ACTIONS(3005), - [anon_sym_RBRACE] = ACTIONS(3005), - [anon_sym_LPAREN] = ACTIONS(3005), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3005), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3005), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3005), - [anon_sym_BANG_EQ] = ACTIONS(3005), - [anon_sym_LT_EQ] = ACTIONS(3005), - [anon_sym_GT_EQ] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3005), - [anon_sym_DASH_DASH] = ACTIONS(3005), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3005), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3005), - [anon_sym_CARET] = ACTIONS(3005), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3005), - [anon_sym_LT_LT] = ACTIONS(3005), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3005), - [anon_sym_AMP_CARET] = ACTIONS(3005), - [anon_sym_AMP_AMP] = ACTIONS(3005), - [anon_sym_PIPE_PIPE] = ACTIONS(3005), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3005), - [anon_sym_POUND_LBRACK] = ACTIONS(3005), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3005), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3005), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3005), - [sym_rune_literal] = ACTIONS(3005), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3005), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [sym___double_quote] = ACTIONS(3005), - [sym___single_quote] = ACTIONS(3005), - [sym___c_double_quote] = ACTIONS(3005), - [sym___c_single_quote] = ACTIONS(3005), - [sym___r_double_quote] = ACTIONS(3005), - [sym___r_single_quote] = ACTIONS(3005), - }, - [1228] = { - [sym_identifier] = ACTIONS(2788), - [anon_sym_LF] = ACTIONS(2788), - [anon_sym_CR] = ACTIONS(2788), - [anon_sym_CR_LF] = ACTIONS(2788), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2788), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2788), - [anon_sym_COMMA] = ACTIONS(2788), - [anon_sym_RBRACE] = ACTIONS(2788), - [anon_sym_LPAREN] = ACTIONS(2788), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2788), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2788), - [anon_sym_BANG_EQ] = ACTIONS(2788), - [anon_sym_LT_EQ] = ACTIONS(2788), - [anon_sym_GT_EQ] = ACTIONS(2788), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2788), - [anon_sym_DASH_DASH] = ACTIONS(2788), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2788), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2788), - [anon_sym_CARET] = ACTIONS(2788), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2788), - [anon_sym_LT_LT] = ACTIONS(2788), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2788), - [anon_sym_AMP_CARET] = ACTIONS(2788), - [anon_sym_AMP_AMP] = ACTIONS(2788), - [anon_sym_PIPE_PIPE] = ACTIONS(2788), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2788), - [anon_sym_POUND_LBRACK] = ACTIONS(2788), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2788), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2788), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2788), - [sym_rune_literal] = ACTIONS(2788), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2788), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2788), - [sym___single_quote] = ACTIONS(2788), - [sym___c_double_quote] = ACTIONS(2788), - [sym___c_single_quote] = ACTIONS(2788), - [sym___r_double_quote] = ACTIONS(2788), - [sym___r_single_quote] = ACTIONS(2788), - }, - [1229] = { - [sym_identifier] = ACTIONS(3089), - [anon_sym_LF] = ACTIONS(3089), - [anon_sym_CR] = ACTIONS(3089), - [anon_sym_CR_LF] = ACTIONS(3089), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3089), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_as] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(3089), - [anon_sym_RBRACE] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3089), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_fn] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3089), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3089), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3089), - [anon_sym_BANG_EQ] = ACTIONS(3089), - [anon_sym_LT_EQ] = ACTIONS(3089), - [anon_sym_GT_EQ] = ACTIONS(3089), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_mut] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3089), - [anon_sym_DASH_DASH] = ACTIONS(3089), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_go] = ACTIONS(3089), - [anon_sym_spawn] = ACTIONS(3089), - [anon_sym_json_DOTdecode] = ACTIONS(3089), - [anon_sym_LBRACK2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3089), - [anon_sym_CARET] = ACTIONS(3089), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT_DASH] = ACTIONS(3089), - [anon_sym_LT_LT] = ACTIONS(3089), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_GT_GT_GT] = ACTIONS(3089), - [anon_sym_AMP_CARET] = ACTIONS(3089), - [anon_sym_AMP_AMP] = ACTIONS(3089), - [anon_sym_PIPE_PIPE] = ACTIONS(3089), - [anon_sym_or] = ACTIONS(3089), - [sym_none] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [sym_nil] = ACTIONS(3089), - [anon_sym_QMARK_DOT] = ACTIONS(3089), - [anon_sym_POUND_LBRACK] = ACTIONS(3089), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_DOLLARif] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3089), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_BANGin] = ACTIONS(3089), - [anon_sym_match] = ACTIONS(3089), - [anon_sym_select] = ACTIONS(3089), - [anon_sym_lock] = ACTIONS(3089), - [anon_sym_rlock] = ACTIONS(3089), - [anon_sym_unsafe] = ACTIONS(3089), - [anon_sym_sql] = ACTIONS(3089), - [sym_int_literal] = ACTIONS(3089), - [sym_float_literal] = ACTIONS(3089), - [sym_rune_literal] = ACTIONS(3089), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_shared] = ACTIONS(3089), - [anon_sym_map_LBRACK] = ACTIONS(3089), - [anon_sym_chan] = ACTIONS(3089), - [anon_sym_thread] = ACTIONS(3089), - [anon_sym_atomic] = ACTIONS(3089), - [sym___double_quote] = ACTIONS(3089), - [sym___single_quote] = ACTIONS(3089), - [sym___c_double_quote] = ACTIONS(3089), - [sym___c_single_quote] = ACTIONS(3089), - [sym___r_double_quote] = ACTIONS(3089), - [sym___r_single_quote] = ACTIONS(3089), - }, - [1230] = { - [sym_identifier] = ACTIONS(3093), - [anon_sym_LF] = ACTIONS(3093), - [anon_sym_CR] = ACTIONS(3093), - [anon_sym_CR_LF] = ACTIONS(3093), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3093), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3093), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3093), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_EQ_EQ] = ACTIONS(3093), - [anon_sym_BANG_EQ] = ACTIONS(3093), - [anon_sym_LT_EQ] = ACTIONS(3093), - [anon_sym_GT_EQ] = ACTIONS(3093), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_mut] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3093), - [anon_sym_DASH_DASH] = ACTIONS(3093), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3093), - [anon_sym_spawn] = ACTIONS(3093), - [anon_sym_json_DOTdecode] = ACTIONS(3093), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3093), - [anon_sym_CARET] = ACTIONS(3093), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3093), - [anon_sym_LT_LT] = ACTIONS(3093), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_GT_GT_GT] = ACTIONS(3093), - [anon_sym_AMP_CARET] = ACTIONS(3093), - [anon_sym_AMP_AMP] = ACTIONS(3093), - [anon_sym_PIPE_PIPE] = ACTIONS(3093), - [anon_sym_or] = ACTIONS(3093), - [sym_none] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_nil] = ACTIONS(3093), - [anon_sym_QMARK_DOT] = ACTIONS(3093), - [anon_sym_POUND_LBRACK] = ACTIONS(3093), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_DOLLARif] = ACTIONS(3093), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3093), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3093), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_select] = ACTIONS(3093), - [anon_sym_lock] = ACTIONS(3093), - [anon_sym_rlock] = ACTIONS(3093), - [anon_sym_unsafe] = ACTIONS(3093), - [anon_sym_sql] = ACTIONS(3093), - [sym_int_literal] = ACTIONS(3093), - [sym_float_literal] = ACTIONS(3093), - [sym_rune_literal] = ACTIONS(3093), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_shared] = ACTIONS(3093), - [anon_sym_map_LBRACK] = ACTIONS(3093), - [anon_sym_chan] = ACTIONS(3093), - [anon_sym_thread] = ACTIONS(3093), - [anon_sym_atomic] = ACTIONS(3093), - [sym___double_quote] = ACTIONS(3093), - [sym___single_quote] = ACTIONS(3093), - [sym___c_double_quote] = ACTIONS(3093), - [sym___c_single_quote] = ACTIONS(3093), - [sym___r_double_quote] = ACTIONS(3093), - [sym___r_single_quote] = ACTIONS(3093), - }, - [1231] = { - [sym_identifier] = ACTIONS(2792), - [anon_sym_LF] = ACTIONS(2792), - [anon_sym_CR] = ACTIONS(2792), - [anon_sym_CR_LF] = ACTIONS(2792), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2792), - [anon_sym_DOT] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2792), - [anon_sym_COMMA] = ACTIONS(2792), - [anon_sym_RBRACE] = ACTIONS(2792), - [anon_sym_LPAREN] = ACTIONS(2792), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2792), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PERCENT] = ACTIONS(2792), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_EQ_EQ] = ACTIONS(2792), - [anon_sym_BANG_EQ] = ACTIONS(2792), - [anon_sym_LT_EQ] = ACTIONS(2792), - [anon_sym_GT_EQ] = ACTIONS(2792), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_mut] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2792), - [anon_sym_DASH_DASH] = ACTIONS(2792), - [anon_sym_QMARK] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_go] = ACTIONS(2792), - [anon_sym_spawn] = ACTIONS(2792), - [anon_sym_json_DOTdecode] = ACTIONS(2792), - [anon_sym_LBRACK2] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2792), - [anon_sym_CARET] = ACTIONS(2792), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_LT_DASH] = ACTIONS(2792), - [anon_sym_LT_LT] = ACTIONS(2792), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2792), - [anon_sym_AMP_CARET] = ACTIONS(2792), - [anon_sym_AMP_AMP] = ACTIONS(2792), - [anon_sym_PIPE_PIPE] = ACTIONS(2792), - [anon_sym_or] = ACTIONS(2792), - [sym_none] = ACTIONS(2792), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_nil] = ACTIONS(2792), - [anon_sym_QMARK_DOT] = ACTIONS(2792), - [anon_sym_POUND_LBRACK] = ACTIONS(2792), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_DOLLARif] = ACTIONS(2792), - [anon_sym_is] = ACTIONS(2792), - [anon_sym_BANGis] = ACTIONS(2792), - [anon_sym_in] = ACTIONS(2792), - [anon_sym_BANGin] = ACTIONS(2792), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_select] = ACTIONS(2792), - [anon_sym_lock] = ACTIONS(2792), - [anon_sym_rlock] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_sql] = ACTIONS(2792), - [sym_int_literal] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2792), - [sym_rune_literal] = ACTIONS(2792), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_shared] = ACTIONS(2792), - [anon_sym_map_LBRACK] = ACTIONS(2792), - [anon_sym_chan] = ACTIONS(2792), - [anon_sym_thread] = ACTIONS(2792), - [anon_sym_atomic] = ACTIONS(2792), - [sym___double_quote] = ACTIONS(2792), - [sym___single_quote] = ACTIONS(2792), - [sym___c_double_quote] = ACTIONS(2792), - [sym___c_single_quote] = ACTIONS(2792), - [sym___r_double_quote] = ACTIONS(2792), - [sym___r_single_quote] = ACTIONS(2792), - }, - [1232] = { - [sym_identifier] = ACTIONS(2836), - [anon_sym_LF] = ACTIONS(2836), - [anon_sym_CR] = ACTIONS(2836), - [anon_sym_CR_LF] = ACTIONS(2836), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2836), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2836), - [anon_sym_COMMA] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(2836), - [anon_sym_LPAREN] = ACTIONS(2836), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2836), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2836), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2836), - [anon_sym_BANG_EQ] = ACTIONS(2836), - [anon_sym_LT_EQ] = ACTIONS(2836), - [anon_sym_GT_EQ] = ACTIONS(2836), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2836), - [anon_sym_DASH_DASH] = ACTIONS(2836), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2836), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2836), - [anon_sym_CARET] = ACTIONS(2836), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2836), - [anon_sym_LT_LT] = ACTIONS(2836), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2836), - [anon_sym_AMP_CARET] = ACTIONS(2836), - [anon_sym_AMP_AMP] = ACTIONS(2836), - [anon_sym_PIPE_PIPE] = ACTIONS(2836), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2836), - [anon_sym_POUND_LBRACK] = ACTIONS(2836), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2836), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2836), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2836), - [sym_rune_literal] = ACTIONS(2836), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2836), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2836), - [sym___single_quote] = ACTIONS(2836), - [sym___c_double_quote] = ACTIONS(2836), - [sym___c_single_quote] = ACTIONS(2836), - [sym___r_double_quote] = ACTIONS(2836), - [sym___r_single_quote] = ACTIONS(2836), - }, - [1233] = { - [sym_identifier] = ACTIONS(2864), - [anon_sym_LF] = ACTIONS(2864), - [anon_sym_CR] = ACTIONS(2864), - [anon_sym_CR_LF] = ACTIONS(2864), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2864), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2864), - [anon_sym_COMMA] = ACTIONS(2864), - [anon_sym_RBRACE] = ACTIONS(2864), - [anon_sym_LPAREN] = ACTIONS(2864), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2864), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2864), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_EQ_EQ] = ACTIONS(2864), - [anon_sym_BANG_EQ] = ACTIONS(2864), - [anon_sym_LT_EQ] = ACTIONS(2864), - [anon_sym_GT_EQ] = ACTIONS(2864), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2864), - [anon_sym_DASH_DASH] = ACTIONS(2864), - [anon_sym_QMARK] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_go] = ACTIONS(2864), - [anon_sym_spawn] = ACTIONS(2864), - [anon_sym_json_DOTdecode] = ACTIONS(2864), - [anon_sym_LBRACK2] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2864), - [anon_sym_CARET] = ACTIONS(2864), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_LT_DASH] = ACTIONS(2864), - [anon_sym_LT_LT] = ACTIONS(2864), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2864), - [anon_sym_AMP_CARET] = ACTIONS(2864), - [anon_sym_AMP_AMP] = ACTIONS(2864), - [anon_sym_PIPE_PIPE] = ACTIONS(2864), - [anon_sym_or] = ACTIONS(2864), - [sym_none] = ACTIONS(2864), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_nil] = ACTIONS(2864), - [anon_sym_QMARK_DOT] = ACTIONS(2864), - [anon_sym_POUND_LBRACK] = ACTIONS(2864), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_DOLLARif] = ACTIONS(2864), - [anon_sym_is] = ACTIONS(2864), - [anon_sym_BANGis] = ACTIONS(2864), - [anon_sym_in] = ACTIONS(2864), - [anon_sym_BANGin] = ACTIONS(2864), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_select] = ACTIONS(2864), - [anon_sym_lock] = ACTIONS(2864), - [anon_sym_rlock] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_sql] = ACTIONS(2864), - [sym_int_literal] = ACTIONS(2864), - [sym_float_literal] = ACTIONS(2864), - [sym_rune_literal] = ACTIONS(2864), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_shared] = ACTIONS(2864), - [anon_sym_map_LBRACK] = ACTIONS(2864), - [anon_sym_chan] = ACTIONS(2864), - [anon_sym_thread] = ACTIONS(2864), - [anon_sym_atomic] = ACTIONS(2864), - [sym___double_quote] = ACTIONS(2864), - [sym___single_quote] = ACTIONS(2864), - [sym___c_double_quote] = ACTIONS(2864), - [sym___c_single_quote] = ACTIONS(2864), - [sym___r_double_quote] = ACTIONS(2864), - [sym___r_single_quote] = ACTIONS(2864), - }, - [1234] = { - [sym_identifier] = ACTIONS(2967), - [anon_sym_LF] = ACTIONS(2967), - [anon_sym_CR] = ACTIONS(2967), - [anon_sym_CR_LF] = ACTIONS(2967), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2967), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2967), - [anon_sym_COMMA] = ACTIONS(2967), - [anon_sym_RBRACE] = ACTIONS(2967), - [anon_sym_LPAREN] = ACTIONS(2967), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2967), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2967), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [anon_sym_EQ_EQ] = ACTIONS(2967), - [anon_sym_BANG_EQ] = ACTIONS(2967), - [anon_sym_LT_EQ] = ACTIONS(2967), - [anon_sym_GT_EQ] = ACTIONS(2967), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2967), - [anon_sym_DASH_DASH] = ACTIONS(2967), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2967), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2967), - [anon_sym_CARET] = ACTIONS(2967), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2967), - [anon_sym_LT_LT] = ACTIONS(2967), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_GT_GT_GT] = ACTIONS(2967), - [anon_sym_AMP_CARET] = ACTIONS(2967), - [anon_sym_AMP_AMP] = ACTIONS(2967), - [anon_sym_PIPE_PIPE] = ACTIONS(2967), - [anon_sym_or] = ACTIONS(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2967), - [anon_sym_POUND_LBRACK] = ACTIONS(2967), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2967), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2967), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2967), - [sym_rune_literal] = ACTIONS(2967), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2967), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2967), - [sym___single_quote] = ACTIONS(2967), - [sym___c_double_quote] = ACTIONS(2967), - [sym___c_single_quote] = ACTIONS(2967), - [sym___r_double_quote] = ACTIONS(2967), - [sym___r_single_quote] = ACTIONS(2967), - }, - [1235] = { - [sym_identifier] = ACTIONS(2872), - [anon_sym_LF] = ACTIONS(2872), - [anon_sym_CR] = ACTIONS(2872), - [anon_sym_CR_LF] = ACTIONS(2872), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2872), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2872), - [anon_sym_COMMA] = ACTIONS(2872), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_LPAREN] = ACTIONS(2872), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2872), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2872), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2872), - [anon_sym_BANG_EQ] = ACTIONS(2872), - [anon_sym_LT_EQ] = ACTIONS(2872), - [anon_sym_GT_EQ] = ACTIONS(2872), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2872), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2872), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2872), - [anon_sym_CARET] = ACTIONS(2872), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2872), - [anon_sym_LT_LT] = ACTIONS(2872), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2872), - [anon_sym_AMP_CARET] = ACTIONS(2872), - [anon_sym_AMP_AMP] = ACTIONS(2872), - [anon_sym_PIPE_PIPE] = ACTIONS(2872), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2872), - [anon_sym_POUND_LBRACK] = ACTIONS(2872), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2872), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2872), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2872), - [sym_rune_literal] = ACTIONS(2872), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2872), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2872), - [sym___single_quote] = ACTIONS(2872), - [sym___c_double_quote] = ACTIONS(2872), - [sym___c_single_quote] = ACTIONS(2872), - [sym___r_double_quote] = ACTIONS(2872), - [sym___r_single_quote] = ACTIONS(2872), - }, - [1236] = { - [sym_identifier] = ACTIONS(2876), - [anon_sym_LF] = ACTIONS(2876), - [anon_sym_CR] = ACTIONS(2876), - [anon_sym_CR_LF] = ACTIONS(2876), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2876), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2876), - [anon_sym_COMMA] = ACTIONS(2876), - [anon_sym_RBRACE] = ACTIONS(2876), - [anon_sym_LPAREN] = ACTIONS(2876), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2876), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PERCENT] = ACTIONS(2876), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2876), - [anon_sym_BANG_EQ] = ACTIONS(2876), - [anon_sym_LT_EQ] = ACTIONS(2876), - [anon_sym_GT_EQ] = ACTIONS(2876), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_mut] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2876), - [anon_sym_DASH_DASH] = ACTIONS(2876), - [anon_sym_QMARK] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_go] = ACTIONS(2876), - [anon_sym_spawn] = ACTIONS(2876), - [anon_sym_json_DOTdecode] = ACTIONS(2876), - [anon_sym_LBRACK2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2876), - [anon_sym_CARET] = ACTIONS(2876), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_LT_DASH] = ACTIONS(2876), - [anon_sym_LT_LT] = ACTIONS(2876), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2876), - [anon_sym_AMP_CARET] = ACTIONS(2876), - [anon_sym_AMP_AMP] = ACTIONS(2876), - [anon_sym_PIPE_PIPE] = ACTIONS(2876), - [anon_sym_or] = ACTIONS(2876), - [sym_none] = ACTIONS(2876), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_nil] = ACTIONS(2876), - [anon_sym_QMARK_DOT] = ACTIONS(2876), - [anon_sym_POUND_LBRACK] = ACTIONS(2876), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_DOLLARif] = ACTIONS(2876), - [anon_sym_is] = ACTIONS(2876), - [anon_sym_BANGis] = ACTIONS(2876), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_BANGin] = ACTIONS(2876), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_select] = ACTIONS(2876), - [anon_sym_lock] = ACTIONS(2876), - [anon_sym_rlock] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_sql] = ACTIONS(2876), - [sym_int_literal] = ACTIONS(2876), - [sym_float_literal] = ACTIONS(2876), - [sym_rune_literal] = ACTIONS(2876), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_shared] = ACTIONS(2876), - [anon_sym_map_LBRACK] = ACTIONS(2876), - [anon_sym_chan] = ACTIONS(2876), - [anon_sym_thread] = ACTIONS(2876), - [anon_sym_atomic] = ACTIONS(2876), - [sym___double_quote] = ACTIONS(2876), - [sym___single_quote] = ACTIONS(2876), - [sym___c_double_quote] = ACTIONS(2876), - [sym___c_single_quote] = ACTIONS(2876), - [sym___r_double_quote] = ACTIONS(2876), - [sym___r_single_quote] = ACTIONS(2876), - }, - [1237] = { - [sym_identifier] = ACTIONS(2899), - [anon_sym_LF] = ACTIONS(2899), - [anon_sym_CR] = ACTIONS(2899), - [anon_sym_CR_LF] = ACTIONS(2899), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2899), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2899), - [anon_sym_COMMA] = ACTIONS(2899), - [anon_sym_RBRACE] = ACTIONS(2899), - [anon_sym_LPAREN] = ACTIONS(2899), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2899), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2899), - [anon_sym_BANG_EQ] = ACTIONS(2899), - [anon_sym_LT_EQ] = ACTIONS(2899), - [anon_sym_GT_EQ] = ACTIONS(2899), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2899), - [anon_sym_DASH_DASH] = ACTIONS(2899), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2899), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2899), - [anon_sym_CARET] = ACTIONS(2899), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2899), - [anon_sym_LT_LT] = ACTIONS(2899), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2899), - [anon_sym_AMP_CARET] = ACTIONS(2899), - [anon_sym_AMP_AMP] = ACTIONS(2899), - [anon_sym_PIPE_PIPE] = ACTIONS(2899), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2899), - [anon_sym_POUND_LBRACK] = ACTIONS(2899), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2899), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2899), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2899), - [sym_rune_literal] = ACTIONS(2899), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2899), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2899), - [sym___single_quote] = ACTIONS(2899), - [sym___c_double_quote] = ACTIONS(2899), - [sym___c_single_quote] = ACTIONS(2899), - [sym___r_double_quote] = ACTIONS(2899), - [sym___r_single_quote] = ACTIONS(2899), - }, - [1238] = { - [sym_identifier] = ACTIONS(2868), - [anon_sym_LF] = ACTIONS(2868), - [anon_sym_CR] = ACTIONS(2868), - [anon_sym_CR_LF] = ACTIONS(2868), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2868), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2868), - [anon_sym_COMMA] = ACTIONS(2868), - [anon_sym_RBRACE] = ACTIONS(2868), - [anon_sym_LPAREN] = ACTIONS(2868), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2868), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2868), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2868), - [anon_sym_BANG_EQ] = ACTIONS(2868), - [anon_sym_LT_EQ] = ACTIONS(2868), - [anon_sym_GT_EQ] = ACTIONS(2868), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2868), - [anon_sym_DASH_DASH] = ACTIONS(2868), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2868), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2868), - [anon_sym_CARET] = ACTIONS(2868), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2868), - [anon_sym_LT_LT] = ACTIONS(2868), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2868), - [anon_sym_AMP_CARET] = ACTIONS(2868), - [anon_sym_AMP_AMP] = ACTIONS(2868), - [anon_sym_PIPE_PIPE] = ACTIONS(2868), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2868), - [anon_sym_POUND_LBRACK] = ACTIONS(2868), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2868), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2868), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2868), - [sym_rune_literal] = ACTIONS(2868), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2868), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2868), - [sym___single_quote] = ACTIONS(2868), - [sym___c_double_quote] = ACTIONS(2868), - [sym___c_single_quote] = ACTIONS(2868), - [sym___r_double_quote] = ACTIONS(2868), - [sym___r_single_quote] = ACTIONS(2868), - }, - [1239] = { - [sym_identifier] = ACTIONS(2907), - [anon_sym_LF] = ACTIONS(2907), - [anon_sym_CR] = ACTIONS(2907), - [anon_sym_CR_LF] = ACTIONS(2907), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2907), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2907), - [anon_sym_COMMA] = ACTIONS(2907), - [anon_sym_RBRACE] = ACTIONS(2907), - [anon_sym_LPAREN] = ACTIONS(2907), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2907), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2907), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2907), - [anon_sym_BANG_EQ] = ACTIONS(2907), - [anon_sym_LT_EQ] = ACTIONS(2907), - [anon_sym_GT_EQ] = ACTIONS(2907), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2907), - [anon_sym_DASH_DASH] = ACTIONS(2907), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2907), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2907), - [anon_sym_CARET] = ACTIONS(2907), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2907), - [anon_sym_LT_LT] = ACTIONS(2907), - [anon_sym_GT_GT] = ACTIONS(2907), - [anon_sym_GT_GT_GT] = ACTIONS(2907), - [anon_sym_AMP_CARET] = ACTIONS(2907), - [anon_sym_AMP_AMP] = ACTIONS(2907), - [anon_sym_PIPE_PIPE] = ACTIONS(2907), - [anon_sym_or] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2907), - [anon_sym_POUND_LBRACK] = ACTIONS(2907), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2907), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2907), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2907), - [sym_rune_literal] = ACTIONS(2907), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2907), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [sym___double_quote] = ACTIONS(2907), - [sym___single_quote] = ACTIONS(2907), - [sym___c_double_quote] = ACTIONS(2907), - [sym___c_single_quote] = ACTIONS(2907), - [sym___r_double_quote] = ACTIONS(2907), - [sym___r_single_quote] = ACTIONS(2907), - }, - [1240] = { - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3029), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_COMMA] = ACTIONS(3029), - [anon_sym_RBRACE] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3029), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3029), - [anon_sym_BANG_EQ] = ACTIONS(3029), - [anon_sym_LT_EQ] = ACTIONS(3029), - [anon_sym_GT_EQ] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3029), - [anon_sym_DASH_DASH] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [anon_sym_LT_LT] = ACTIONS(3029), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3029), - [anon_sym_AMP_CARET] = ACTIONS(3029), - [anon_sym_AMP_AMP] = ACTIONS(3029), - [anon_sym_PIPE_PIPE] = ACTIONS(3029), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3029), - [anon_sym_POUND_LBRACK] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3029), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [1241] = { - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3169), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_COMMA] = ACTIONS(3169), - [anon_sym_RBRACE] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3169), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_EQ_EQ] = ACTIONS(3169), - [anon_sym_BANG_EQ] = ACTIONS(3169), - [anon_sym_LT_EQ] = ACTIONS(3169), - [anon_sym_GT_EQ] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3169), - [anon_sym_DASH_DASH] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3169), - [anon_sym_LT_LT] = ACTIONS(3169), - [anon_sym_GT_GT] = ACTIONS(3169), - [anon_sym_GT_GT_GT] = ACTIONS(3169), - [anon_sym_AMP_CARET] = ACTIONS(3169), - [anon_sym_AMP_AMP] = ACTIONS(3169), - [anon_sym_PIPE_PIPE] = ACTIONS(3169), - [anon_sym_or] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3169), - [anon_sym_POUND_LBRACK] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_is] = ACTIONS(3169), - [anon_sym_BANGis] = ACTIONS(3169), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_BANGin] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), - }, - [1242] = { - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3041), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), - }, - [1243] = { - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_COMMA] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3173), - [anon_sym_BANG_EQ] = ACTIONS(3173), - [anon_sym_LT_EQ] = ACTIONS(3173), - [anon_sym_GT_EQ] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [anon_sym_LT_LT] = ACTIONS(3173), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3173), - [anon_sym_AMP_CARET] = ACTIONS(3173), - [anon_sym_AMP_AMP] = ACTIONS(3173), - [anon_sym_PIPE_PIPE] = ACTIONS(3173), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3173), - [anon_sym_POUND_LBRACK] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3173), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), - }, - [1244] = { - [sym_identifier] = ACTIONS(2931), - [anon_sym_LF] = ACTIONS(2931), - [anon_sym_CR] = ACTIONS(2931), - [anon_sym_CR_LF] = ACTIONS(2931), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2931), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2931), - [anon_sym_COMMA] = ACTIONS(2931), - [anon_sym_RBRACE] = ACTIONS(2931), - [anon_sym_LPAREN] = ACTIONS(2931), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2931), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2931), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2931), - [anon_sym_BANG_EQ] = ACTIONS(2931), - [anon_sym_LT_EQ] = ACTIONS(2931), - [anon_sym_GT_EQ] = ACTIONS(2931), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2931), - [anon_sym_DASH_DASH] = ACTIONS(2931), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2931), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2931), - [anon_sym_CARET] = ACTIONS(2931), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2931), - [anon_sym_LT_LT] = ACTIONS(2931), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2931), - [anon_sym_AMP_CARET] = ACTIONS(2931), - [anon_sym_AMP_AMP] = ACTIONS(2931), - [anon_sym_PIPE_PIPE] = ACTIONS(2931), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2931), - [anon_sym_POUND_LBRACK] = ACTIONS(2931), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2931), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2931), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2931), - [sym_rune_literal] = ACTIONS(2931), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2931), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2931), - [sym___single_quote] = ACTIONS(2931), - [sym___c_double_quote] = ACTIONS(2931), - [sym___c_single_quote] = ACTIONS(2931), - [sym___r_double_quote] = ACTIONS(2931), - [sym___r_single_quote] = ACTIONS(2931), - }, - [1245] = { - [sym_identifier] = ACTIONS(2923), - [anon_sym_LF] = ACTIONS(2923), - [anon_sym_CR] = ACTIONS(2923), - [anon_sym_CR_LF] = ACTIONS(2923), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2923), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_as] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2923), - [anon_sym_COMMA] = ACTIONS(2923), - [anon_sym_RBRACE] = ACTIONS(2923), - [anon_sym_LPAREN] = ACTIONS(2923), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2923), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_PERCENT] = ACTIONS(2923), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_EQ_EQ] = ACTIONS(2923), - [anon_sym_BANG_EQ] = ACTIONS(2923), - [anon_sym_LT_EQ] = ACTIONS(2923), - [anon_sym_GT_EQ] = ACTIONS(2923), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2923), - [anon_sym_DASH_DASH] = ACTIONS(2923), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_go] = ACTIONS(2923), - [anon_sym_spawn] = ACTIONS(2923), - [anon_sym_json_DOTdecode] = ACTIONS(2923), - [anon_sym_LBRACK2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2923), - [anon_sym_CARET] = ACTIONS(2923), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2923), - [anon_sym_LT_LT] = ACTIONS(2923), - [anon_sym_GT_GT] = ACTIONS(2923), - [anon_sym_GT_GT_GT] = ACTIONS(2923), - [anon_sym_AMP_CARET] = ACTIONS(2923), - [anon_sym_AMP_AMP] = ACTIONS(2923), - [anon_sym_PIPE_PIPE] = ACTIONS(2923), - [anon_sym_or] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_nil] = ACTIONS(2923), - [anon_sym_QMARK_DOT] = ACTIONS(2923), - [anon_sym_POUND_LBRACK] = ACTIONS(2923), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_DOLLARif] = ACTIONS(2923), - [anon_sym_is] = ACTIONS(2923), - [anon_sym_BANGis] = ACTIONS(2923), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_BANGin] = ACTIONS(2923), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_select] = ACTIONS(2923), - [anon_sym_lock] = ACTIONS(2923), - [anon_sym_rlock] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_sql] = ACTIONS(2923), - [sym_int_literal] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2923), - [sym_rune_literal] = ACTIONS(2923), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_shared] = ACTIONS(2923), - [anon_sym_map_LBRACK] = ACTIONS(2923), - [anon_sym_chan] = ACTIONS(2923), - [anon_sym_thread] = ACTIONS(2923), - [anon_sym_atomic] = ACTIONS(2923), - [sym___double_quote] = ACTIONS(2923), - [sym___single_quote] = ACTIONS(2923), - [sym___c_double_quote] = ACTIONS(2923), - [sym___c_single_quote] = ACTIONS(2923), - [sym___r_double_quote] = ACTIONS(2923), - [sym___r_single_quote] = ACTIONS(2923), - }, - [1246] = { - [sym_identifier] = ACTIONS(2949), - [anon_sym_LF] = ACTIONS(2949), - [anon_sym_CR] = ACTIONS(2949), - [anon_sym_CR_LF] = ACTIONS(2949), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2949), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2949), - [anon_sym_COMMA] = ACTIONS(2949), - [anon_sym_RBRACE] = ACTIONS(2949), - [anon_sym_LPAREN] = ACTIONS(2951), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2951), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2951), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2951), - [anon_sym_BANG_EQ] = ACTIONS(2951), - [anon_sym_LT_EQ] = ACTIONS(2951), - [anon_sym_GT_EQ] = ACTIONS(2951), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_mut] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2951), - [anon_sym_DASH_DASH] = ACTIONS(2951), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2949), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2949), - [anon_sym_CARET] = ACTIONS(2951), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2949), - [anon_sym_LT_LT] = ACTIONS(2951), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2951), - [anon_sym_AMP_CARET] = ACTIONS(2951), - [anon_sym_AMP_AMP] = ACTIONS(2951), - [anon_sym_PIPE_PIPE] = ACTIONS(2951), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2951), - [anon_sym_POUND_LBRACK] = ACTIONS(2951), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2951), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2951), - [anon_sym_match] = ACTIONS(2949), - [anon_sym_select] = ACTIONS(2949), - [anon_sym_lock] = ACTIONS(2949), - [anon_sym_rlock] = ACTIONS(2949), - [anon_sym_unsafe] = ACTIONS(2949), - [anon_sym_sql] = ACTIONS(2949), - [sym_int_literal] = ACTIONS(2949), - [sym_float_literal] = ACTIONS(2949), - [sym_rune_literal] = ACTIONS(2949), - [anon_sym_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2949), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2949), - [sym___single_quote] = ACTIONS(2949), - [sym___c_double_quote] = ACTIONS(2949), - [sym___c_single_quote] = ACTIONS(2949), - [sym___r_double_quote] = ACTIONS(2949), - [sym___r_single_quote] = ACTIONS(2949), - }, - [1247] = { - [sym_identifier] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2971), - [anon_sym_CR] = ACTIONS(2971), - [anon_sym_CR_LF] = ACTIONS(2971), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2971), - [anon_sym_COMMA] = ACTIONS(2971), - [anon_sym_RBRACE] = ACTIONS(2971), - [anon_sym_LPAREN] = ACTIONS(2973), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2973), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2973), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2973), - [anon_sym_BANG_EQ] = ACTIONS(2973), - [anon_sym_LT_EQ] = ACTIONS(2973), - [anon_sym_GT_EQ] = ACTIONS(2973), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2973), - [anon_sym_DASH_DASH] = ACTIONS(2973), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2971), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2971), - [anon_sym_CARET] = ACTIONS(2973), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2973), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2973), - [anon_sym_AMP_CARET] = ACTIONS(2973), - [anon_sym_AMP_AMP] = ACTIONS(2973), - [anon_sym_PIPE_PIPE] = ACTIONS(2973), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2973), - [anon_sym_POUND_LBRACK] = ACTIONS(2973), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2973), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2973), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2971), - [sym_rune_literal] = ACTIONS(2971), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2971), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2971), - [sym___single_quote] = ACTIONS(2971), - [sym___c_double_quote] = ACTIONS(2971), - [sym___c_single_quote] = ACTIONS(2971), - [sym___r_double_quote] = ACTIONS(2971), - [sym___r_single_quote] = ACTIONS(2971), - }, - [1248] = { - [sym_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3097), - [anon_sym_CR] = ACTIONS(3097), - [anon_sym_CR_LF] = ACTIONS(3097), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3097), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_COMMA] = ACTIONS(3097), - [anon_sym_RBRACE] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3097), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3097), - [anon_sym_BANG_EQ] = ACTIONS(3097), - [anon_sym_LT_EQ] = ACTIONS(3097), - [anon_sym_GT_EQ] = ACTIONS(3097), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3097), - [anon_sym_DASH_DASH] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3097), - [anon_sym_LT_LT] = ACTIONS(3097), - [anon_sym_GT_GT] = ACTIONS(3097), - [anon_sym_GT_GT_GT] = ACTIONS(3097), - [anon_sym_AMP_CARET] = ACTIONS(3097), - [anon_sym_AMP_AMP] = ACTIONS(3097), - [anon_sym_PIPE_PIPE] = ACTIONS(3097), - [anon_sym_or] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_QMARK_DOT] = ACTIONS(3097), - [anon_sym_POUND_LBRACK] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_BANGis] = ACTIONS(3097), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_BANGin] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), - }, - [1249] = { - [sym_identifier] = ACTIONS(2981), - [anon_sym_LF] = ACTIONS(2981), - [anon_sym_CR] = ACTIONS(2981), - [anon_sym_CR_LF] = ACTIONS(2981), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2981), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2981), - [anon_sym_COMMA] = ACTIONS(2981), - [anon_sym_RBRACE] = ACTIONS(2981), - [anon_sym_LPAREN] = ACTIONS(2981), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2981), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2981), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2981), - [anon_sym_BANG_EQ] = ACTIONS(2981), - [anon_sym_LT_EQ] = ACTIONS(2981), - [anon_sym_GT_EQ] = ACTIONS(2981), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2981), - [anon_sym_DASH_DASH] = ACTIONS(2981), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2981), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2981), - [anon_sym_CARET] = ACTIONS(2981), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2981), - [anon_sym_LT_LT] = ACTIONS(2981), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2981), - [anon_sym_AMP_CARET] = ACTIONS(2981), - [anon_sym_AMP_AMP] = ACTIONS(2981), - [anon_sym_PIPE_PIPE] = ACTIONS(2981), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2981), - [anon_sym_POUND_LBRACK] = ACTIONS(2981), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2981), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2981), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2981), - [sym_rune_literal] = ACTIONS(2981), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2981), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [sym___double_quote] = ACTIONS(2981), - [sym___single_quote] = ACTIONS(2981), - [sym___c_double_quote] = ACTIONS(2981), - [sym___c_single_quote] = ACTIONS(2981), - [sym___r_double_quote] = ACTIONS(2981), - [sym___r_single_quote] = ACTIONS(2981), - }, - [1250] = { - [sym_identifier] = ACTIONS(3013), - [anon_sym_LF] = ACTIONS(3013), - [anon_sym_CR] = ACTIONS(3013), - [anon_sym_CR_LF] = ACTIONS(3013), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3013), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3013), - [anon_sym_COMMA] = ACTIONS(3013), - [anon_sym_RBRACE] = ACTIONS(3013), - [anon_sym_LPAREN] = ACTIONS(3013), - [anon_sym_PIPE] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3013), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3013), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3013), - [anon_sym_BANG_EQ] = ACTIONS(3013), - [anon_sym_LT_EQ] = ACTIONS(3013), - [anon_sym_GT_EQ] = ACTIONS(3013), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_mut] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3013), - [anon_sym_DASH_DASH] = ACTIONS(3013), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3013), - [anon_sym_json_DOTdecode] = ACTIONS(3013), - [anon_sym_LBRACK2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3013), - [anon_sym_CARET] = ACTIONS(3013), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3013), - [anon_sym_LT_LT] = ACTIONS(3013), - [anon_sym_GT_GT] = ACTIONS(3013), - [anon_sym_GT_GT_GT] = ACTIONS(3013), - [anon_sym_AMP_CARET] = ACTIONS(3013), - [anon_sym_AMP_AMP] = ACTIONS(3013), - [anon_sym_PIPE_PIPE] = ACTIONS(3013), - [anon_sym_or] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_QMARK_DOT] = ACTIONS(3013), - [anon_sym_POUND_LBRACK] = ACTIONS(3013), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3013), - [anon_sym_BANGis] = ACTIONS(3013), - [anon_sym_in] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3013), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_select] = ACTIONS(3013), - [anon_sym_lock] = ACTIONS(3013), - [anon_sym_rlock] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_sql] = ACTIONS(3013), - [sym_int_literal] = ACTIONS(3013), - [sym_float_literal] = ACTIONS(3013), - [sym_rune_literal] = ACTIONS(3013), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_shared] = ACTIONS(3013), - [anon_sym_map_LBRACK] = ACTIONS(3013), - [anon_sym_chan] = ACTIONS(3013), - [anon_sym_thread] = ACTIONS(3013), - [anon_sym_atomic] = ACTIONS(3013), - [sym___double_quote] = ACTIONS(3013), - [sym___single_quote] = ACTIONS(3013), - [sym___c_double_quote] = ACTIONS(3013), - [sym___c_single_quote] = ACTIONS(3013), - [sym___r_double_quote] = ACTIONS(3013), - [sym___r_single_quote] = ACTIONS(3013), - }, - [1251] = { - [sym_identifier] = ACTIONS(2985), - [anon_sym_LF] = ACTIONS(2985), - [anon_sym_CR] = ACTIONS(2985), - [anon_sym_CR_LF] = ACTIONS(2985), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2985), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2985), - [anon_sym_COMMA] = ACTIONS(2985), - [anon_sym_RBRACE] = ACTIONS(2985), - [anon_sym_LPAREN] = ACTIONS(2985), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2985), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2985), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2985), - [anon_sym_BANG_EQ] = ACTIONS(2985), - [anon_sym_LT_EQ] = ACTIONS(2985), - [anon_sym_GT_EQ] = ACTIONS(2985), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2985), - [anon_sym_DASH_DASH] = ACTIONS(2985), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2985), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2985), - [anon_sym_CARET] = ACTIONS(2985), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2985), - [anon_sym_LT_LT] = ACTIONS(2985), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2985), - [anon_sym_AMP_CARET] = ACTIONS(2985), - [anon_sym_AMP_AMP] = ACTIONS(2985), - [anon_sym_PIPE_PIPE] = ACTIONS(2985), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2985), - [anon_sym_POUND_LBRACK] = ACTIONS(2985), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2985), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2985), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2985), - [sym_rune_literal] = ACTIONS(2985), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2985), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [sym___double_quote] = ACTIONS(2985), - [sym___single_quote] = ACTIONS(2985), - [sym___c_double_quote] = ACTIONS(2985), - [sym___c_single_quote] = ACTIONS(2985), - [sym___r_double_quote] = ACTIONS(2985), - [sym___r_single_quote] = ACTIONS(2985), - }, - [1252] = { - [sym_identifier] = ACTIONS(3017), - [anon_sym_LF] = ACTIONS(3017), - [anon_sym_CR] = ACTIONS(3017), - [anon_sym_CR_LF] = ACTIONS(3017), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3017), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3017), - [anon_sym_COMMA] = ACTIONS(3017), - [anon_sym_RBRACE] = ACTIONS(3017), - [anon_sym_LPAREN] = ACTIONS(3017), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3017), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3017), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3017), - [anon_sym_BANG_EQ] = ACTIONS(3017), - [anon_sym_LT_EQ] = ACTIONS(3017), - [anon_sym_GT_EQ] = ACTIONS(3017), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3017), - [anon_sym_DASH_DASH] = ACTIONS(3017), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3017), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3017), - [anon_sym_CARET] = ACTIONS(3017), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3017), - [anon_sym_LT_LT] = ACTIONS(3017), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_GT_GT_GT] = ACTIONS(3017), - [anon_sym_AMP_CARET] = ACTIONS(3017), - [anon_sym_AMP_AMP] = ACTIONS(3017), - [anon_sym_PIPE_PIPE] = ACTIONS(3017), - [anon_sym_or] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3017), - [anon_sym_POUND_LBRACK] = ACTIONS(3017), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3017), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3017), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3017), - [sym_rune_literal] = ACTIONS(3017), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3017), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3017), - [sym___single_quote] = ACTIONS(3017), - [sym___c_double_quote] = ACTIONS(3017), - [sym___c_single_quote] = ACTIONS(3017), - [sym___r_double_quote] = ACTIONS(3017), - [sym___r_single_quote] = ACTIONS(3017), - }, - [1253] = { - [sym_identifier] = ACTIONS(2824), - [anon_sym_LF] = ACTIONS(2824), - [anon_sym_CR] = ACTIONS(2824), - [anon_sym_CR_LF] = ACTIONS(2824), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2824), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2824), - [anon_sym_COMMA] = ACTIONS(2824), - [anon_sym_RBRACE] = ACTIONS(2824), - [anon_sym_LPAREN] = ACTIONS(2824), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2824), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2824), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2824), - [anon_sym_BANG_EQ] = ACTIONS(2824), - [anon_sym_LT_EQ] = ACTIONS(2824), - [anon_sym_GT_EQ] = ACTIONS(2824), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2824), - [anon_sym_DASH_DASH] = ACTIONS(2824), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2824), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2824), - [anon_sym_CARET] = ACTIONS(2824), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2824), - [anon_sym_LT_LT] = ACTIONS(2824), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2824), - [anon_sym_AMP_CARET] = ACTIONS(2824), - [anon_sym_AMP_AMP] = ACTIONS(2824), - [anon_sym_PIPE_PIPE] = ACTIONS(2824), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2824), - [anon_sym_POUND_LBRACK] = ACTIONS(2824), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2824), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2824), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2824), - [sym_rune_literal] = ACTIONS(2824), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2824), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2824), - [sym___single_quote] = ACTIONS(2824), - [sym___c_double_quote] = ACTIONS(2824), - [sym___c_single_quote] = ACTIONS(2824), - [sym___r_double_quote] = ACTIONS(2824), - [sym___r_single_quote] = ACTIONS(2824), - }, - [1254] = { - [sym_identifier] = ACTIONS(2820), - [anon_sym_LF] = ACTIONS(2820), - [anon_sym_CR] = ACTIONS(2820), - [anon_sym_CR_LF] = ACTIONS(2820), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2820), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2820), - [anon_sym_COMMA] = ACTIONS(2820), - [anon_sym_RBRACE] = ACTIONS(2820), - [anon_sym_LPAREN] = ACTIONS(2820), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2820), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2820), - [anon_sym_BANG_EQ] = ACTIONS(2820), - [anon_sym_LT_EQ] = ACTIONS(2820), - [anon_sym_GT_EQ] = ACTIONS(2820), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2820), - [anon_sym_DASH_DASH] = ACTIONS(2820), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2820), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2820), - [anon_sym_CARET] = ACTIONS(2820), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2820), - [anon_sym_LT_LT] = ACTIONS(2820), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2820), - [anon_sym_AMP_CARET] = ACTIONS(2820), - [anon_sym_AMP_AMP] = ACTIONS(2820), - [anon_sym_PIPE_PIPE] = ACTIONS(2820), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2820), - [anon_sym_POUND_LBRACK] = ACTIONS(2820), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2820), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2820), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2820), - [sym_rune_literal] = ACTIONS(2820), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2820), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2820), - [sym___single_quote] = ACTIONS(2820), - [sym___c_double_quote] = ACTIONS(2820), - [sym___c_single_quote] = ACTIONS(2820), - [sym___r_double_quote] = ACTIONS(2820), - [sym___r_single_quote] = ACTIONS(2820), - }, - [1255] = { - [sym_identifier] = ACTIONS(2796), - [anon_sym_LF] = ACTIONS(2796), - [anon_sym_CR] = ACTIONS(2796), - [anon_sym_CR_LF] = ACTIONS(2796), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2796), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_as] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2796), - [anon_sym_COMMA] = ACTIONS(2796), - [anon_sym_RBRACE] = ACTIONS(2796), - [anon_sym_LPAREN] = ACTIONS(2796), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2796), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2796), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2796), - [anon_sym_BANG_EQ] = ACTIONS(2796), - [anon_sym_LT_EQ] = ACTIONS(2796), - [anon_sym_GT_EQ] = ACTIONS(2796), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_mut] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2796), - [anon_sym_DASH_DASH] = ACTIONS(2796), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_go] = ACTIONS(2796), - [anon_sym_spawn] = ACTIONS(2796), - [anon_sym_json_DOTdecode] = ACTIONS(2796), - [anon_sym_LBRACK2] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2796), - [anon_sym_CARET] = ACTIONS(2796), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_LT_DASH] = ACTIONS(2796), - [anon_sym_LT_LT] = ACTIONS(2796), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2796), - [anon_sym_AMP_CARET] = ACTIONS(2796), - [anon_sym_AMP_AMP] = ACTIONS(2796), - [anon_sym_PIPE_PIPE] = ACTIONS(2796), - [anon_sym_or] = ACTIONS(2796), - [sym_none] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_nil] = ACTIONS(2796), - [anon_sym_QMARK_DOT] = ACTIONS(2796), - [anon_sym_POUND_LBRACK] = ACTIONS(2796), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_DOLLARif] = ACTIONS(2796), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_BANGis] = ACTIONS(2796), - [anon_sym_in] = ACTIONS(2796), - [anon_sym_BANGin] = ACTIONS(2796), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_select] = ACTIONS(2796), - [anon_sym_lock] = ACTIONS(2796), - [anon_sym_rlock] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_sql] = ACTIONS(2796), - [sym_int_literal] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2796), - [sym_rune_literal] = ACTIONS(2796), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_shared] = ACTIONS(2796), - [anon_sym_map_LBRACK] = ACTIONS(2796), - [anon_sym_chan] = ACTIONS(2796), - [anon_sym_thread] = ACTIONS(2796), - [anon_sym_atomic] = ACTIONS(2796), - [sym___double_quote] = ACTIONS(2796), - [sym___single_quote] = ACTIONS(2796), - [sym___c_double_quote] = ACTIONS(2796), - [sym___c_single_quote] = ACTIONS(2796), - [sym___r_double_quote] = ACTIONS(2796), - [sym___r_single_quote] = ACTIONS(2796), - }, - [1256] = { - [sym_identifier] = ACTIONS(2812), - [anon_sym_LF] = ACTIONS(2812), - [anon_sym_CR] = ACTIONS(2812), - [anon_sym_CR_LF] = ACTIONS(2812), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2812), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2812), - [anon_sym_COMMA] = ACTIONS(2812), - [anon_sym_RBRACE] = ACTIONS(2812), - [anon_sym_LPAREN] = ACTIONS(2812), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2812), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2812), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2812), - [anon_sym_BANG_EQ] = ACTIONS(2812), - [anon_sym_LT_EQ] = ACTIONS(2812), - [anon_sym_GT_EQ] = ACTIONS(2812), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2812), - [anon_sym_DASH_DASH] = ACTIONS(2812), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2812), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2812), - [anon_sym_CARET] = ACTIONS(2812), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2812), - [anon_sym_LT_LT] = ACTIONS(2812), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2812), - [anon_sym_AMP_CARET] = ACTIONS(2812), - [anon_sym_AMP_AMP] = ACTIONS(2812), - [anon_sym_PIPE_PIPE] = ACTIONS(2812), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2812), - [anon_sym_POUND_LBRACK] = ACTIONS(2812), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2812), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2812), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2812), - [sym_rune_literal] = ACTIONS(2812), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2812), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2812), - [sym___single_quote] = ACTIONS(2812), - [sym___c_double_quote] = ACTIONS(2812), - [sym___c_single_quote] = ACTIONS(2812), - [sym___r_double_quote] = ACTIONS(2812), - [sym___r_single_quote] = ACTIONS(2812), - }, - [1257] = { - [sym_identifier] = ACTIONS(2808), - [anon_sym_LF] = ACTIONS(2808), - [anon_sym_CR] = ACTIONS(2808), - [anon_sym_CR_LF] = ACTIONS(2808), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2808), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2808), - [anon_sym_COMMA] = ACTIONS(2808), - [anon_sym_RBRACE] = ACTIONS(2808), - [anon_sym_LPAREN] = ACTIONS(2808), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2808), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2808), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2808), - [anon_sym_BANG_EQ] = ACTIONS(2808), - [anon_sym_LT_EQ] = ACTIONS(2808), - [anon_sym_GT_EQ] = ACTIONS(2808), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2808), - [anon_sym_DASH_DASH] = ACTIONS(2808), - [anon_sym_QMARK] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_go] = ACTIONS(2808), - [anon_sym_spawn] = ACTIONS(2808), - [anon_sym_json_DOTdecode] = ACTIONS(2808), - [anon_sym_LBRACK2] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2808), - [anon_sym_CARET] = ACTIONS(2808), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_LT_DASH] = ACTIONS(2808), - [anon_sym_LT_LT] = ACTIONS(2808), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2808), - [anon_sym_AMP_CARET] = ACTIONS(2808), - [anon_sym_AMP_AMP] = ACTIONS(2808), - [anon_sym_PIPE_PIPE] = ACTIONS(2808), - [anon_sym_or] = ACTIONS(2808), - [sym_none] = ACTIONS(2808), - [sym_true] = ACTIONS(2808), - [sym_false] = ACTIONS(2808), - [sym_nil] = ACTIONS(2808), - [anon_sym_QMARK_DOT] = ACTIONS(2808), - [anon_sym_POUND_LBRACK] = ACTIONS(2808), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_DOLLARif] = ACTIONS(2808), - [anon_sym_is] = ACTIONS(2808), - [anon_sym_BANGis] = ACTIONS(2808), - [anon_sym_in] = ACTIONS(2808), - [anon_sym_BANGin] = ACTIONS(2808), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_select] = ACTIONS(2808), - [anon_sym_lock] = ACTIONS(2808), - [anon_sym_rlock] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_sql] = ACTIONS(2808), - [sym_int_literal] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2808), - [sym_rune_literal] = ACTIONS(2808), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_shared] = ACTIONS(2808), - [anon_sym_map_LBRACK] = ACTIONS(2808), - [anon_sym_chan] = ACTIONS(2808), - [anon_sym_thread] = ACTIONS(2808), - [anon_sym_atomic] = ACTIONS(2808), - [sym___double_quote] = ACTIONS(2808), - [sym___single_quote] = ACTIONS(2808), - [sym___c_double_quote] = ACTIONS(2808), - [sym___c_single_quote] = ACTIONS(2808), - [sym___r_double_quote] = ACTIONS(2808), - [sym___r_single_quote] = ACTIONS(2808), - }, - [1258] = { - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3177), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_COMMA] = ACTIONS(3177), - [anon_sym_RBRACE] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT_EQ] = ACTIONS(3177), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_DASH_DASH] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [anon_sym_LT_LT] = ACTIONS(3177), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3177), - [anon_sym_AMP_CARET] = ACTIONS(3177), - [anon_sym_AMP_AMP] = ACTIONS(3177), - [anon_sym_PIPE_PIPE] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3177), - [anon_sym_POUND_LBRACK] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), - }, - [1259] = { - [sym_identifier] = ACTIONS(2860), - [anon_sym_LF] = ACTIONS(2860), - [anon_sym_CR] = ACTIONS(2860), - [anon_sym_CR_LF] = ACTIONS(2860), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2860), - [anon_sym_COMMA] = ACTIONS(2860), - [anon_sym_RBRACE] = ACTIONS(2860), - [anon_sym_LPAREN] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2860), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2860), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2860), - [anon_sym_BANG_EQ] = ACTIONS(2860), - [anon_sym_LT_EQ] = ACTIONS(2860), - [anon_sym_GT_EQ] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2860), - [anon_sym_DASH_DASH] = ACTIONS(2860), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2860), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2860), - [anon_sym_CARET] = ACTIONS(2860), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2860), - [anon_sym_LT_LT] = ACTIONS(2860), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2860), - [anon_sym_AMP_CARET] = ACTIONS(2860), - [anon_sym_AMP_AMP] = ACTIONS(2860), - [anon_sym_PIPE_PIPE] = ACTIONS(2860), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2860), - [anon_sym_POUND_LBRACK] = ACTIONS(2860), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2860), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2860), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2860), - [sym_rune_literal] = ACTIONS(2860), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2860), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2860), - [sym___single_quote] = ACTIONS(2860), - [sym___c_double_quote] = ACTIONS(2860), - [sym___c_single_quote] = ACTIONS(2860), - [sym___r_double_quote] = ACTIONS(2860), - [sym___r_single_quote] = ACTIONS(2860), - }, - [1260] = { - [sym_identifier] = ACTIONS(3073), - [anon_sym_LF] = ACTIONS(3073), - [anon_sym_CR] = ACTIONS(3073), - [anon_sym_CR_LF] = ACTIONS(3073), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3073), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(3073), - [anon_sym_RBRACE] = ACTIONS(3073), - [anon_sym_LPAREN] = ACTIONS(3073), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3073), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3073), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3073), - [anon_sym_BANG_EQ] = ACTIONS(3073), - [anon_sym_LT_EQ] = ACTIONS(3073), - [anon_sym_GT_EQ] = ACTIONS(3073), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_mut] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3073), - [anon_sym_DASH_DASH] = ACTIONS(3073), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3073), - [anon_sym_json_DOTdecode] = ACTIONS(3073), - [anon_sym_LBRACK2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3073), - [anon_sym_CARET] = ACTIONS(3073), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3073), - [anon_sym_LT_LT] = ACTIONS(3073), - [anon_sym_GT_GT] = ACTIONS(3073), - [anon_sym_GT_GT_GT] = ACTIONS(3073), - [anon_sym_AMP_CARET] = ACTIONS(3073), - [anon_sym_AMP_AMP] = ACTIONS(3073), - [anon_sym_PIPE_PIPE] = ACTIONS(3073), - [anon_sym_or] = ACTIONS(3073), - [sym_none] = ACTIONS(3073), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [sym_nil] = ACTIONS(3073), - [anon_sym_QMARK_DOT] = ACTIONS(3073), - [anon_sym_POUND_LBRACK] = ACTIONS(3073), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_DOLLARif] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_BANGis] = ACTIONS(3073), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3073), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_select] = ACTIONS(3073), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(3073), - [anon_sym_sql] = ACTIONS(3073), - [sym_int_literal] = ACTIONS(3073), - [sym_float_literal] = ACTIONS(3073), - [sym_rune_literal] = ACTIONS(3073), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_shared] = ACTIONS(3073), - [anon_sym_map_LBRACK] = ACTIONS(3073), - [anon_sym_chan] = ACTIONS(3073), - [anon_sym_thread] = ACTIONS(3073), - [anon_sym_atomic] = ACTIONS(3073), - [sym___double_quote] = ACTIONS(3073), - [sym___single_quote] = ACTIONS(3073), - [sym___c_double_quote] = ACTIONS(3073), - [sym___c_single_quote] = ACTIONS(3073), - [sym___r_double_quote] = ACTIONS(3073), - [sym___r_single_quote] = ACTIONS(3073), - }, - [1261] = { - [sym_identifier] = ACTIONS(3077), - [anon_sym_LF] = ACTIONS(3077), - [anon_sym_CR] = ACTIONS(3077), - [anon_sym_CR_LF] = ACTIONS(3077), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3077), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3077), - [anon_sym_COMMA] = ACTIONS(3077), - [anon_sym_RBRACE] = ACTIONS(3077), - [anon_sym_LPAREN] = ACTIONS(3077), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3077), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3077), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3077), - [anon_sym_BANG_EQ] = ACTIONS(3077), - [anon_sym_LT_EQ] = ACTIONS(3077), - [anon_sym_GT_EQ] = ACTIONS(3077), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3077), - [anon_sym_DASH_DASH] = ACTIONS(3077), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3077), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3077), - [anon_sym_CARET] = ACTIONS(3077), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3077), - [anon_sym_LT_LT] = ACTIONS(3077), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3077), - [anon_sym_AMP_CARET] = ACTIONS(3077), - [anon_sym_AMP_AMP] = ACTIONS(3077), - [anon_sym_PIPE_PIPE] = ACTIONS(3077), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3077), - [anon_sym_POUND_LBRACK] = ACTIONS(3077), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3077), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3077), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3077), - [sym_rune_literal] = ACTIONS(3077), - [anon_sym_AT] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3077), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3077), - [sym___single_quote] = ACTIONS(3077), - [sym___c_double_quote] = ACTIONS(3077), - [sym___c_single_quote] = ACTIONS(3077), - [sym___r_double_quote] = ACTIONS(3077), - [sym___r_single_quote] = ACTIONS(3077), - }, - [1262] = { - [sym_identifier] = ACTIONS(3117), - [anon_sym_LF] = ACTIONS(3117), - [anon_sym_CR] = ACTIONS(3117), - [anon_sym_CR_LF] = ACTIONS(3117), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3117), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_as] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3117), - [anon_sym_COMMA] = ACTIONS(3117), - [anon_sym_RBRACE] = ACTIONS(3117), - [anon_sym_LPAREN] = ACTIONS(3117), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3117), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3117), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_EQ_EQ] = ACTIONS(3117), - [anon_sym_BANG_EQ] = ACTIONS(3117), - [anon_sym_LT_EQ] = ACTIONS(3117), - [anon_sym_GT_EQ] = ACTIONS(3117), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_mut] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3117), - [anon_sym_DASH_DASH] = ACTIONS(3117), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_go] = ACTIONS(3117), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3117), - [anon_sym_LBRACK2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3117), - [anon_sym_CARET] = ACTIONS(3117), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3117), - [anon_sym_LT_LT] = ACTIONS(3117), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_GT_GT_GT] = ACTIONS(3117), - [anon_sym_AMP_CARET] = ACTIONS(3117), - [anon_sym_AMP_AMP] = ACTIONS(3117), - [anon_sym_PIPE_PIPE] = ACTIONS(3117), - [anon_sym_or] = ACTIONS(3117), - [sym_none] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_nil] = ACTIONS(3117), - [anon_sym_QMARK_DOT] = ACTIONS(3117), - [anon_sym_POUND_LBRACK] = ACTIONS(3117), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_DOLLARif] = ACTIONS(3117), - [anon_sym_is] = ACTIONS(3117), - [anon_sym_BANGis] = ACTIONS(3117), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_BANGin] = ACTIONS(3117), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_select] = ACTIONS(3117), - [anon_sym_lock] = ACTIONS(3117), - [anon_sym_rlock] = ACTIONS(3117), - [anon_sym_unsafe] = ACTIONS(3117), - [anon_sym_sql] = ACTIONS(3117), - [sym_int_literal] = ACTIONS(3117), - [sym_float_literal] = ACTIONS(3117), - [sym_rune_literal] = ACTIONS(3117), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_shared] = ACTIONS(3117), - [anon_sym_map_LBRACK] = ACTIONS(3117), - [anon_sym_chan] = ACTIONS(3117), - [anon_sym_thread] = ACTIONS(3117), - [anon_sym_atomic] = ACTIONS(3117), - [sym___double_quote] = ACTIONS(3117), - [sym___single_quote] = ACTIONS(3117), - [sym___c_double_quote] = ACTIONS(3117), - [sym___c_single_quote] = ACTIONS(3117), - [sym___r_double_quote] = ACTIONS(3117), - [sym___r_single_quote] = ACTIONS(3117), - }, - [1263] = { - [sym_identifier] = ACTIONS(3125), - [anon_sym_LF] = ACTIONS(3125), - [anon_sym_CR] = ACTIONS(3125), - [anon_sym_CR_LF] = ACTIONS(3125), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3125), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3125), - [anon_sym_COMMA] = ACTIONS(3125), - [anon_sym_RBRACE] = ACTIONS(3125), - [anon_sym_LPAREN] = ACTIONS(3125), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3125), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3125), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3125), - [anon_sym_BANG_EQ] = ACTIONS(3125), - [anon_sym_LT_EQ] = ACTIONS(3125), - [anon_sym_GT_EQ] = ACTIONS(3125), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3125), - [anon_sym_DASH_DASH] = ACTIONS(3125), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3125), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3125), - [anon_sym_CARET] = ACTIONS(3125), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3125), - [anon_sym_LT_LT] = ACTIONS(3125), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3125), - [anon_sym_AMP_CARET] = ACTIONS(3125), - [anon_sym_AMP_AMP] = ACTIONS(3125), - [anon_sym_PIPE_PIPE] = ACTIONS(3125), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3125), - [anon_sym_POUND_LBRACK] = ACTIONS(3125), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3125), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3125), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3125), - [sym_rune_literal] = ACTIONS(3125), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3125), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3125), - [sym___single_quote] = ACTIONS(3125), - [sym___c_double_quote] = ACTIONS(3125), - [sym___c_single_quote] = ACTIONS(3125), - [sym___r_double_quote] = ACTIONS(3125), - [sym___r_single_quote] = ACTIONS(3125), - }, - [1264] = { - [sym_identifier] = ACTIONS(3141), - [anon_sym_LF] = ACTIONS(3141), - [anon_sym_CR] = ACTIONS(3141), - [anon_sym_CR_LF] = ACTIONS(3141), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3141), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3141), - [anon_sym_COMMA] = ACTIONS(3141), - [anon_sym_RBRACE] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3141), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3141), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3141), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3141), - [anon_sym_BANG_EQ] = ACTIONS(3141), - [anon_sym_LT_EQ] = ACTIONS(3141), - [anon_sym_GT_EQ] = ACTIONS(3141), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3141), - [anon_sym_DASH_DASH] = ACTIONS(3141), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3141), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3141), - [anon_sym_CARET] = ACTIONS(3141), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3141), - [anon_sym_LT_LT] = ACTIONS(3141), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3141), - [anon_sym_AMP_CARET] = ACTIONS(3141), - [anon_sym_AMP_AMP] = ACTIONS(3141), - [anon_sym_PIPE_PIPE] = ACTIONS(3141), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3141), - [anon_sym_POUND_LBRACK] = ACTIONS(3141), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3141), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3141), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3141), - [sym_rune_literal] = ACTIONS(3141), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3141), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3141), - [sym___single_quote] = ACTIONS(3141), - [sym___c_double_quote] = ACTIONS(3141), - [sym___c_single_quote] = ACTIONS(3141), - [sym___r_double_quote] = ACTIONS(3141), - [sym___r_single_quote] = ACTIONS(3141), - }, - [1265] = { - [sym_identifier] = ACTIONS(3145), - [anon_sym_LF] = ACTIONS(3145), - [anon_sym_CR] = ACTIONS(3145), - [anon_sym_CR_LF] = ACTIONS(3145), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3145), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3145), - [anon_sym_COMMA] = ACTIONS(3145), - [anon_sym_RBRACE] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3145), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3145), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3145), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3145), - [anon_sym_BANG_EQ] = ACTIONS(3145), - [anon_sym_LT_EQ] = ACTIONS(3145), - [anon_sym_GT_EQ] = ACTIONS(3145), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3145), - [anon_sym_DASH_DASH] = ACTIONS(3145), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3145), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3145), - [anon_sym_CARET] = ACTIONS(3145), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3145), - [anon_sym_LT_LT] = ACTIONS(3145), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3145), - [anon_sym_AMP_CARET] = ACTIONS(3145), - [anon_sym_AMP_AMP] = ACTIONS(3145), - [anon_sym_PIPE_PIPE] = ACTIONS(3145), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3145), - [anon_sym_POUND_LBRACK] = ACTIONS(3145), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3145), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3145), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3145), - [sym_rune_literal] = ACTIONS(3145), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3145), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3145), - [sym___single_quote] = ACTIONS(3145), - [sym___c_double_quote] = ACTIONS(3145), - [sym___c_single_quote] = ACTIONS(3145), - [sym___r_double_quote] = ACTIONS(3145), - [sym___r_single_quote] = ACTIONS(3145), - }, - [1266] = { - [sym_identifier] = ACTIONS(3069), - [anon_sym_LF] = ACTIONS(3069), - [anon_sym_CR] = ACTIONS(3069), - [anon_sym_CR_LF] = ACTIONS(3069), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3069), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(3069), - [anon_sym_RBRACE] = ACTIONS(3069), - [anon_sym_LPAREN] = ACTIONS(3069), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3069), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3069), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3069), - [anon_sym_BANG_EQ] = ACTIONS(3069), - [anon_sym_LT_EQ] = ACTIONS(3069), - [anon_sym_GT_EQ] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_mut] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3069), - [anon_sym_DASH_DASH] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3069), - [anon_sym_json_DOTdecode] = ACTIONS(3069), - [anon_sym_LBRACK2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3069), - [anon_sym_CARET] = ACTIONS(3069), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_LT_DASH] = ACTIONS(3069), - [anon_sym_LT_LT] = ACTIONS(3069), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_GT_GT_GT] = ACTIONS(3069), - [anon_sym_AMP_CARET] = ACTIONS(3069), - [anon_sym_AMP_AMP] = ACTIONS(3069), - [anon_sym_PIPE_PIPE] = ACTIONS(3069), - [anon_sym_or] = ACTIONS(3069), - [sym_none] = ACTIONS(3069), - [sym_true] = ACTIONS(3069), - [sym_false] = ACTIONS(3069), - [sym_nil] = ACTIONS(3069), - [anon_sym_QMARK_DOT] = ACTIONS(3069), - [anon_sym_POUND_LBRACK] = ACTIONS(3069), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_DOLLARif] = ACTIONS(3069), - [anon_sym_is] = ACTIONS(3069), - [anon_sym_BANGis] = ACTIONS(3069), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_BANGin] = ACTIONS(3069), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_select] = ACTIONS(3069), - [anon_sym_lock] = ACTIONS(3069), - [anon_sym_rlock] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_sql] = ACTIONS(3069), - [sym_int_literal] = ACTIONS(3069), - [sym_float_literal] = ACTIONS(3069), - [sym_rune_literal] = ACTIONS(3069), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_shared] = ACTIONS(3069), - [anon_sym_map_LBRACK] = ACTIONS(3069), - [anon_sym_chan] = ACTIONS(3069), - [anon_sym_thread] = ACTIONS(3069), - [anon_sym_atomic] = ACTIONS(3069), - [sym___double_quote] = ACTIONS(3069), - [sym___single_quote] = ACTIONS(3069), - [sym___c_double_quote] = ACTIONS(3069), - [sym___c_single_quote] = ACTIONS(3069), - [sym___r_double_quote] = ACTIONS(3069), - [sym___r_single_quote] = ACTIONS(3069), - }, - [1267] = { - [sym_identifier] = ACTIONS(2848), - [anon_sym_LF] = ACTIONS(2848), - [anon_sym_CR] = ACTIONS(2848), - [anon_sym_CR_LF] = ACTIONS(2848), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(2848), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2848), - [anon_sym_COMMA] = ACTIONS(2848), - [anon_sym_RBRACE] = ACTIONS(2848), - [anon_sym_LPAREN] = ACTIONS(2848), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2848), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2848), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_EQ_EQ] = ACTIONS(2848), - [anon_sym_BANG_EQ] = ACTIONS(2848), - [anon_sym_LT_EQ] = ACTIONS(2848), - [anon_sym_GT_EQ] = ACTIONS(2848), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_mut] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2848), - [anon_sym_DASH_DASH] = ACTIONS(2848), - [anon_sym_QMARK] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_go] = ACTIONS(2848), - [anon_sym_spawn] = ACTIONS(2848), - [anon_sym_json_DOTdecode] = ACTIONS(2848), - [anon_sym_LBRACK2] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2848), - [anon_sym_CARET] = ACTIONS(2848), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_LT_DASH] = ACTIONS(2848), - [anon_sym_LT_LT] = ACTIONS(2848), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2848), - [anon_sym_AMP_CARET] = ACTIONS(2848), - [anon_sym_AMP_AMP] = ACTIONS(2848), - [anon_sym_PIPE_PIPE] = ACTIONS(2848), - [anon_sym_or] = ACTIONS(2848), - [sym_none] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_nil] = ACTIONS(2848), - [anon_sym_QMARK_DOT] = ACTIONS(2848), - [anon_sym_POUND_LBRACK] = ACTIONS(2848), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_DOLLARif] = ACTIONS(2848), - [anon_sym_is] = ACTIONS(2848), - [anon_sym_BANGis] = ACTIONS(2848), - [anon_sym_in] = ACTIONS(2848), - [anon_sym_BANGin] = ACTIONS(2848), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_select] = ACTIONS(2848), - [anon_sym_lock] = ACTIONS(2848), - [anon_sym_rlock] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_sql] = ACTIONS(2848), - [sym_int_literal] = ACTIONS(2848), - [sym_float_literal] = ACTIONS(2848), - [sym_rune_literal] = ACTIONS(2848), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_shared] = ACTIONS(2848), - [anon_sym_map_LBRACK] = ACTIONS(2848), - [anon_sym_chan] = ACTIONS(2848), - [anon_sym_thread] = ACTIONS(2848), - [anon_sym_atomic] = ACTIONS(2848), - [sym___double_quote] = ACTIONS(2848), - [sym___single_quote] = ACTIONS(2848), - [sym___c_double_quote] = ACTIONS(2848), - [sym___c_single_quote] = ACTIONS(2848), - [sym___r_double_quote] = ACTIONS(2848), - [sym___r_single_quote] = ACTIONS(2848), - }, - [1268] = { - [sym_identifier] = ACTIONS(3193), - [anon_sym_LF] = ACTIONS(3193), - [anon_sym_CR] = ACTIONS(3193), - [anon_sym_CR_LF] = ACTIONS(3193), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_COMMA] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3193), - [anon_sym_BANG_EQ] = ACTIONS(3193), - [anon_sym_LT_EQ] = ACTIONS(3193), - [anon_sym_GT_EQ] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3193), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_CARET] = ACTIONS(3193), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3193), - [anon_sym_LT_LT] = ACTIONS(3193), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3193), - [anon_sym_AMP_CARET] = ACTIONS(3193), - [anon_sym_AMP_AMP] = ACTIONS(3193), - [anon_sym_PIPE_PIPE] = ACTIONS(3193), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3193), - [anon_sym_POUND_LBRACK] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3193), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3193), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3193), - [sym_rune_literal] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3193), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3193), - [sym___single_quote] = ACTIONS(3193), - [sym___c_double_quote] = ACTIONS(3193), - [sym___c_single_quote] = ACTIONS(3193), - [sym___r_double_quote] = ACTIONS(3193), - [sym___r_single_quote] = ACTIONS(3193), - }, - [1269] = { - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(3129), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_COMMA] = ACTIONS(3129), - [anon_sym_RBRACE] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3129), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3129), - [anon_sym_BANG_EQ] = ACTIONS(3129), - [anon_sym_LT_EQ] = ACTIONS(3129), - [anon_sym_GT_EQ] = ACTIONS(3129), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3129), - [anon_sym_DASH_DASH] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [anon_sym_LT_LT] = ACTIONS(3129), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3129), - [anon_sym_AMP_CARET] = ACTIONS(3129), - [anon_sym_AMP_AMP] = ACTIONS(3129), - [anon_sym_PIPE_PIPE] = ACTIONS(3129), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3129), - [anon_sym_POUND_LBRACK] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3129), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), - }, - [1270] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2164), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_COMMA] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_fn] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2162), - [anon_sym_struct] = ACTIONS(2164), - [anon_sym_mut] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2164), - [anon_sym_spawn] = ACTIONS(2164), - [anon_sym_json_DOTdecode] = ACTIONS(2162), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_LT_DASH] = ACTIONS(2162), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2162), - [anon_sym_AMP_CARET] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_or] = ACTIONS(2164), - [sym_none] = ACTIONS(2164), - [sym_true] = ACTIONS(2164), - [sym_false] = ACTIONS(2164), - [sym_nil] = ACTIONS(2164), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_DOLLARif] = ACTIONS(2164), - [anon_sym_is] = ACTIONS(2164), - [anon_sym_BANGis] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2164), - [anon_sym_BANGin] = ACTIONS(2162), - [anon_sym_match] = ACTIONS(2164), - [anon_sym_select] = ACTIONS(2164), - [anon_sym_lock] = ACTIONS(2164), - [anon_sym_rlock] = ACTIONS(2164), - [anon_sym_unsafe] = ACTIONS(2164), - [anon_sym_sql] = ACTIONS(2164), - [sym_int_literal] = ACTIONS(2164), - [sym_float_literal] = ACTIONS(2162), - [sym_rune_literal] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_shared] = ACTIONS(2164), - [anon_sym_map_LBRACK] = ACTIONS(2162), - [anon_sym_chan] = ACTIONS(2164), - [anon_sym_thread] = ACTIONS(2164), - [anon_sym_atomic] = ACTIONS(2164), - [sym___double_quote] = ACTIONS(2162), - [sym___single_quote] = ACTIONS(2162), - [sym___c_double_quote] = ACTIONS(2162), - [sym___c_single_quote] = ACTIONS(2162), - [sym___r_double_quote] = ACTIONS(2162), - [sym___r_single_quote] = ACTIONS(2162), - }, - [1271] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2210), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2208), - [anon_sym_struct] = ACTIONS(2210), - [anon_sym_mut] = ACTIONS(2210), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2210), - [anon_sym_spawn] = ACTIONS(2210), - [anon_sym_json_DOTdecode] = ACTIONS(2208), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_or] = ACTIONS(3634), - [sym_none] = ACTIONS(2210), - [sym_true] = ACTIONS(2210), - [sym_false] = ACTIONS(2210), - [sym_nil] = ACTIONS(2210), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2210), - [anon_sym_DOLLARif] = ACTIONS(2210), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_BANGis] = ACTIONS(3638), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(2210), - [anon_sym_select] = ACTIONS(2210), - [anon_sym_lock] = ACTIONS(2210), - [anon_sym_rlock] = ACTIONS(2210), - [anon_sym_unsafe] = ACTIONS(2210), - [anon_sym_sql] = ACTIONS(2210), - [sym_int_literal] = ACTIONS(2210), - [sym_float_literal] = ACTIONS(2208), - [sym_rune_literal] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2210), - [anon_sym_shared] = ACTIONS(2210), - [anon_sym_map_LBRACK] = ACTIONS(2208), - [anon_sym_chan] = ACTIONS(2210), - [anon_sym_thread] = ACTIONS(2210), - [anon_sym_atomic] = ACTIONS(2210), - [sym___double_quote] = ACTIONS(2208), - [sym___single_quote] = ACTIONS(2208), - [sym___c_double_quote] = ACTIONS(2208), - [sym___c_single_quote] = ACTIONS(2208), - [sym___r_double_quote] = ACTIONS(2208), - [sym___r_single_quote] = ACTIONS(2208), - }, - [1272] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2220), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_COMMA] = ACTIONS(2218), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2218), - [anon_sym_struct] = ACTIONS(2220), - [anon_sym_mut] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2220), - [anon_sym_spawn] = ACTIONS(2220), - [anon_sym_json_DOTdecode] = ACTIONS(2218), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2218), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2218), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_or] = ACTIONS(3634), - [sym_none] = ACTIONS(2220), - [sym_true] = ACTIONS(2220), - [sym_false] = ACTIONS(2220), - [sym_nil] = ACTIONS(2220), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_DOLLARif] = ACTIONS(2220), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_BANGis] = ACTIONS(3638), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(2220), - [anon_sym_select] = ACTIONS(2220), - [anon_sym_lock] = ACTIONS(2220), - [anon_sym_rlock] = ACTIONS(2220), - [anon_sym_unsafe] = ACTIONS(2220), - [anon_sym_sql] = ACTIONS(2220), - [sym_int_literal] = ACTIONS(2220), - [sym_float_literal] = ACTIONS(2218), - [sym_rune_literal] = ACTIONS(2218), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_shared] = ACTIONS(2220), - [anon_sym_map_LBRACK] = ACTIONS(2218), - [anon_sym_chan] = ACTIONS(2220), - [anon_sym_thread] = ACTIONS(2220), - [anon_sym_atomic] = ACTIONS(2220), - [sym___double_quote] = ACTIONS(2218), - [sym___single_quote] = ACTIONS(2218), - [sym___c_double_quote] = ACTIONS(2218), - [sym___c_single_quote] = ACTIONS(2218), - [sym___r_double_quote] = ACTIONS(2218), - [sym___r_single_quote] = ACTIONS(2218), - }, - [1273] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_fn] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2230), - [anon_sym_DASH] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2228), - [anon_sym_BANG_EQ] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2228), - [anon_sym_struct] = ACTIONS(2230), - [anon_sym_mut] = ACTIONS(2230), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2230), - [anon_sym_spawn] = ACTIONS(2230), - [anon_sym_json_DOTdecode] = ACTIONS(2228), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2228), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_LT_DASH] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2228), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2228), - [anon_sym_AMP_CARET] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2228), - [anon_sym_PIPE_PIPE] = ACTIONS(2228), - [anon_sym_or] = ACTIONS(2230), - [sym_none] = ACTIONS(2230), - [sym_true] = ACTIONS(2230), - [sym_false] = ACTIONS(2230), - [sym_nil] = ACTIONS(2230), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2230), - [anon_sym_DOLLARif] = ACTIONS(2230), - [anon_sym_is] = ACTIONS(2230), - [anon_sym_BANGis] = ACTIONS(2228), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_BANGin] = ACTIONS(2228), - [anon_sym_match] = ACTIONS(2230), - [anon_sym_select] = ACTIONS(2230), - [anon_sym_lock] = ACTIONS(2230), - [anon_sym_rlock] = ACTIONS(2230), - [anon_sym_unsafe] = ACTIONS(2230), - [anon_sym_sql] = ACTIONS(2230), - [sym_int_literal] = ACTIONS(2230), - [sym_float_literal] = ACTIONS(2228), - [sym_rune_literal] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2230), - [anon_sym_shared] = ACTIONS(2230), - [anon_sym_map_LBRACK] = ACTIONS(2228), - [anon_sym_chan] = ACTIONS(2230), - [anon_sym_thread] = ACTIONS(2230), - [anon_sym_atomic] = ACTIONS(2230), - [sym___double_quote] = ACTIONS(2228), - [sym___single_quote] = ACTIONS(2228), - [sym___c_double_quote] = ACTIONS(2228), - [sym___c_single_quote] = ACTIONS(2228), - [sym___r_double_quote] = ACTIONS(2228), - [sym___r_single_quote] = ACTIONS(2228), - }, - [1274] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), - }, - [1275] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PERCENT] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(2074), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2074), - [anon_sym_AMP_CARET] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), - }, - [1276] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(2076), - [anon_sym_BANGin] = ACTIONS(2074), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), - }, - [1277] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), - }, - [1278] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2076), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_COMMA] = ACTIONS(2074), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2074), - [anon_sym_struct] = ACTIONS(2076), - [anon_sym_mut] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2076), - [anon_sym_spawn] = ACTIONS(2076), - [anon_sym_json_DOTdecode] = ACTIONS(2074), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2074), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_or] = ACTIONS(2076), - [sym_none] = ACTIONS(2076), - [sym_true] = ACTIONS(2076), - [sym_false] = ACTIONS(2076), - [sym_nil] = ACTIONS(2076), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_DOLLARif] = ACTIONS(2076), - [anon_sym_is] = ACTIONS(2076), - [anon_sym_BANGis] = ACTIONS(2074), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(2076), - [anon_sym_select] = ACTIONS(2076), - [anon_sym_lock] = ACTIONS(2076), - [anon_sym_rlock] = ACTIONS(2076), - [anon_sym_unsafe] = ACTIONS(2076), - [anon_sym_sql] = ACTIONS(2076), - [sym_int_literal] = ACTIONS(2076), - [sym_float_literal] = ACTIONS(2074), - [sym_rune_literal] = ACTIONS(2074), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_shared] = ACTIONS(2076), - [anon_sym_map_LBRACK] = ACTIONS(2074), - [anon_sym_chan] = ACTIONS(2076), - [anon_sym_thread] = ACTIONS(2076), - [anon_sym_atomic] = ACTIONS(2076), - [sym___double_quote] = ACTIONS(2074), - [sym___single_quote] = ACTIONS(2074), - [sym___c_double_quote] = ACTIONS(2074), - [sym___c_single_quote] = ACTIONS(2074), - [sym___r_double_quote] = ACTIONS(2074), - [sym___r_single_quote] = ACTIONS(2074), - }, - [1279] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2108), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_COMMA] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_EQ_EQ] = ACTIONS(2106), - [anon_sym_BANG_EQ] = ACTIONS(2106), - [anon_sym_LT_EQ] = ACTIONS(2106), - [anon_sym_GT_EQ] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2106), - [anon_sym_struct] = ACTIONS(2108), - [anon_sym_mut] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2108), - [anon_sym_spawn] = ACTIONS(2108), - [anon_sym_json_DOTdecode] = ACTIONS(2106), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2106), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2106), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_or] = ACTIONS(2108), - [sym_none] = ACTIONS(2108), - [sym_true] = ACTIONS(2108), - [sym_false] = ACTIONS(2108), - [sym_nil] = ACTIONS(2108), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_DOLLARif] = ACTIONS(2108), - [anon_sym_is] = ACTIONS(2108), - [anon_sym_BANGis] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_BANGin] = ACTIONS(2106), - [anon_sym_match] = ACTIONS(2108), - [anon_sym_select] = ACTIONS(2108), - [anon_sym_lock] = ACTIONS(2108), - [anon_sym_rlock] = ACTIONS(2108), - [anon_sym_unsafe] = ACTIONS(2108), - [anon_sym_sql] = ACTIONS(2108), - [sym_int_literal] = ACTIONS(2108), - [sym_float_literal] = ACTIONS(2106), - [sym_rune_literal] = ACTIONS(2106), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_shared] = ACTIONS(2108), - [anon_sym_map_LBRACK] = ACTIONS(2106), - [anon_sym_chan] = ACTIONS(2108), - [anon_sym_thread] = ACTIONS(2108), - [anon_sym_atomic] = ACTIONS(2108), - [sym___double_quote] = ACTIONS(2106), - [sym___single_quote] = ACTIONS(2106), - [sym___c_double_quote] = ACTIONS(2106), - [sym___c_single_quote] = ACTIONS(2106), - [sym___r_double_quote] = ACTIONS(2106), - [sym___r_single_quote] = ACTIONS(2106), - }, - [1280] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(2112), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_COMMA] = ACTIONS(2110), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_EQ_EQ] = ACTIONS(2110), - [anon_sym_BANG_EQ] = ACTIONS(2110), - [anon_sym_LT_EQ] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2110), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(2110), - [anon_sym_struct] = ACTIONS(2112), - [anon_sym_mut] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2110), - [anon_sym_DASH_DASH] = ACTIONS(2110), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(2112), - [anon_sym_spawn] = ACTIONS(2112), - [anon_sym_json_DOTdecode] = ACTIONS(2110), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(2110), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_or] = ACTIONS(2112), - [sym_none] = ACTIONS(2112), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [sym_nil] = ACTIONS(2112), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_DOLLARif] = ACTIONS(2112), - [anon_sym_is] = ACTIONS(2112), - [anon_sym_BANGis] = ACTIONS(2110), - [anon_sym_in] = ACTIONS(2112), - [anon_sym_BANGin] = ACTIONS(2110), - [anon_sym_match] = ACTIONS(2112), - [anon_sym_select] = ACTIONS(2112), - [anon_sym_lock] = ACTIONS(2112), - [anon_sym_rlock] = ACTIONS(2112), - [anon_sym_unsafe] = ACTIONS(2112), - [anon_sym_sql] = ACTIONS(2112), - [sym_int_literal] = ACTIONS(2112), - [sym_float_literal] = ACTIONS(2110), - [sym_rune_literal] = ACTIONS(2110), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_shared] = ACTIONS(2112), - [anon_sym_map_LBRACK] = ACTIONS(2110), - [anon_sym_chan] = ACTIONS(2112), - [anon_sym_thread] = ACTIONS(2112), - [anon_sym_atomic] = ACTIONS(2112), - [sym___double_quote] = ACTIONS(2110), - [sym___single_quote] = ACTIONS(2110), - [sym___c_double_quote] = ACTIONS(2110), - [sym___c_single_quote] = ACTIONS(2110), - [sym___r_double_quote] = ACTIONS(2110), - [sym___r_single_quote] = ACTIONS(2110), - }, - [1281] = { - [sym_type_parameters] = STATE(4295), - [sym_argument_list] = STATE(1342), - [sym_or_block] = STATE(1343), - [sym_identifier] = ACTIONS(3644), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3596), - [anon_sym_as] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3646), - [anon_sym_COMMA] = ACTIONS(3648), - [anon_sym_LPAREN] = ACTIONS(3598), - [anon_sym_PIPE] = ACTIONS(3614), - [anon_sym_fn] = ACTIONS(3644), - [anon_sym_PLUS] = ACTIONS(3614), - [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_STAR] = ACTIONS(3616), - [anon_sym_SLASH] = ACTIONS(3618), - [anon_sym_PERCENT] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(3620), - [anon_sym_GT] = ACTIONS(3620), - [anon_sym_EQ_EQ] = ACTIONS(3622), - [anon_sym_BANG_EQ] = ACTIONS(3622), - [anon_sym_LT_EQ] = ACTIONS(3622), - [anon_sym_GT_EQ] = ACTIONS(3622), - [anon_sym_LBRACK] = ACTIONS(3600), - [anon_sym_RBRACK] = ACTIONS(3646), - [anon_sym_struct] = ACTIONS(3644), - [anon_sym_mut] = ACTIONS(3644), - [anon_sym_PLUS_PLUS] = ACTIONS(3624), - [anon_sym_DASH_DASH] = ACTIONS(3626), - [anon_sym_QMARK] = ACTIONS(3602), - [anon_sym_BANG] = ACTIONS(3604), - [anon_sym_go] = ACTIONS(3644), - [anon_sym_spawn] = ACTIONS(3644), - [anon_sym_json_DOTdecode] = ACTIONS(3646), - [anon_sym_LBRACK2] = ACTIONS(3606), - [anon_sym_TILDE] = ACTIONS(3646), - [anon_sym_CARET] = ACTIONS(3628), - [anon_sym_AMP] = ACTIONS(3618), - [anon_sym_LT_DASH] = ACTIONS(3646), - [anon_sym_LT_LT] = ACTIONS(3616), - [anon_sym_GT_GT] = ACTIONS(3618), - [anon_sym_GT_GT_GT] = ACTIONS(3616), - [anon_sym_AMP_CARET] = ACTIONS(3616), - [anon_sym_AMP_AMP] = ACTIONS(3630), - [anon_sym_PIPE_PIPE] = ACTIONS(3632), - [anon_sym_or] = ACTIONS(3634), - [sym_none] = ACTIONS(3644), - [sym_true] = ACTIONS(3644), - [sym_false] = ACTIONS(3644), - [sym_nil] = ACTIONS(3644), - [anon_sym_QMARK_DOT] = ACTIONS(3608), - [anon_sym_POUND_LBRACK] = ACTIONS(3610), - [anon_sym_if] = ACTIONS(3644), - [anon_sym_DOLLARif] = ACTIONS(3644), - [anon_sym_is] = ACTIONS(3636), - [anon_sym_BANGis] = ACTIONS(3638), - [anon_sym_in] = ACTIONS(3640), - [anon_sym_BANGin] = ACTIONS(3642), - [anon_sym_match] = ACTIONS(3644), - [anon_sym_select] = ACTIONS(3644), - [anon_sym_lock] = ACTIONS(3644), - [anon_sym_rlock] = ACTIONS(3644), - [anon_sym_unsafe] = ACTIONS(3644), - [anon_sym_sql] = ACTIONS(3644), - [sym_int_literal] = ACTIONS(3644), - [sym_float_literal] = ACTIONS(3646), - [sym_rune_literal] = ACTIONS(3646), - [anon_sym_AT] = ACTIONS(3644), - [anon_sym_shared] = ACTIONS(3644), - [anon_sym_map_LBRACK] = ACTIONS(3646), - [anon_sym_chan] = ACTIONS(3644), - [anon_sym_thread] = ACTIONS(3644), - [anon_sym_atomic] = ACTIONS(3644), - [sym___double_quote] = ACTIONS(3646), - [sym___single_quote] = ACTIONS(3646), - [sym___c_double_quote] = ACTIONS(3646), - [sym___c_single_quote] = ACTIONS(3646), - [sym___r_double_quote] = ACTIONS(3646), - [sym___r_single_quote] = ACTIONS(3646), - }, - [1282] = { - [sym_identifier] = ACTIONS(2772), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2777), - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_LT_EQ] = ACTIONS(2770), - [anon_sym_GT_EQ] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2777), - [anon_sym_RBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_COLON] = ACTIONS(2770), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2770), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2770), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_CARET] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2770), - [anon_sym_POUND_LBRACK] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2770), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2770), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2770), - [sym_rune_literal] = ACTIONS(2770), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2770), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2770), - [sym___single_quote] = ACTIONS(2770), - [sym___c_double_quote] = ACTIONS(2770), - [sym___c_single_quote] = ACTIONS(2770), - [sym___r_double_quote] = ACTIONS(2770), - [sym___r_single_quote] = ACTIONS(2770), - }, - [1283] = { - [sym_else_branch] = STATE(1403), - [sym_identifier] = ACTIONS(2400), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2400), - [anon_sym_as] = ACTIONS(2400), - [anon_sym_LBRACE] = ACTIONS(2398), - [anon_sym_COMMA] = ACTIONS(2398), - [anon_sym_LPAREN] = ACTIONS(2398), - [anon_sym_PIPE] = ACTIONS(2400), - [anon_sym_fn] = ACTIONS(2400), - [anon_sym_PLUS] = ACTIONS(2400), - [anon_sym_DASH] = ACTIONS(2400), - [anon_sym_STAR] = ACTIONS(2398), - [anon_sym_SLASH] = ACTIONS(2400), - [anon_sym_PERCENT] = ACTIONS(2398), - [anon_sym_LT] = ACTIONS(2400), - [anon_sym_GT] = ACTIONS(2400), - [anon_sym_EQ_EQ] = ACTIONS(2398), - [anon_sym_BANG_EQ] = ACTIONS(2398), - [anon_sym_LT_EQ] = ACTIONS(2398), - [anon_sym_GT_EQ] = ACTIONS(2398), - [anon_sym_LBRACK] = ACTIONS(2398), - [anon_sym_RBRACK] = ACTIONS(2398), - [anon_sym_struct] = ACTIONS(2400), - [anon_sym_mut] = ACTIONS(2400), - [anon_sym_PLUS_PLUS] = ACTIONS(2398), - [anon_sym_DASH_DASH] = ACTIONS(2398), - [anon_sym_QMARK] = ACTIONS(2400), - [anon_sym_BANG] = ACTIONS(2400), - [anon_sym_go] = ACTIONS(2400), - [anon_sym_spawn] = ACTIONS(2400), - [anon_sym_json_DOTdecode] = ACTIONS(2398), - [anon_sym_LBRACK2] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2398), - [anon_sym_CARET] = ACTIONS(2398), - [anon_sym_AMP] = ACTIONS(2400), - [anon_sym_LT_DASH] = ACTIONS(2398), - [anon_sym_LT_LT] = ACTIONS(2398), - [anon_sym_GT_GT] = ACTIONS(2400), - [anon_sym_GT_GT_GT] = ACTIONS(2398), - [anon_sym_AMP_CARET] = ACTIONS(2398), - [anon_sym_AMP_AMP] = ACTIONS(2398), - [anon_sym_PIPE_PIPE] = ACTIONS(2398), - [anon_sym_or] = ACTIONS(2400), - [sym_none] = ACTIONS(2400), - [sym_true] = ACTIONS(2400), - [sym_false] = ACTIONS(2400), - [sym_nil] = ACTIONS(2400), - [anon_sym_QMARK_DOT] = ACTIONS(2398), - [anon_sym_POUND_LBRACK] = ACTIONS(2398), - [anon_sym_if] = ACTIONS(2400), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(2400), - [anon_sym_is] = ACTIONS(2400), - [anon_sym_BANGis] = ACTIONS(2398), - [anon_sym_in] = ACTIONS(2400), - [anon_sym_BANGin] = ACTIONS(2398), - [anon_sym_match] = ACTIONS(2400), - [anon_sym_select] = ACTIONS(2400), - [anon_sym_lock] = ACTIONS(2400), - [anon_sym_rlock] = ACTIONS(2400), - [anon_sym_unsafe] = ACTIONS(2400), - [anon_sym_sql] = ACTIONS(2400), - [sym_int_literal] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2398), - [sym_rune_literal] = ACTIONS(2398), - [anon_sym_AT] = ACTIONS(2400), - [anon_sym_shared] = ACTIONS(2400), - [anon_sym_map_LBRACK] = ACTIONS(2398), - [anon_sym_chan] = ACTIONS(2400), - [anon_sym_thread] = ACTIONS(2400), - [anon_sym_atomic] = ACTIONS(2400), - [sym___double_quote] = ACTIONS(2398), - [sym___single_quote] = ACTIONS(2398), - [sym___c_double_quote] = ACTIONS(2398), - [sym___c_single_quote] = ACTIONS(2398), - [sym___r_double_quote] = ACTIONS(2398), - [sym___r_single_quote] = ACTIONS(2398), - }, - [1284] = { - [sym_else_branch] = STATE(1404), - [sym_identifier] = ACTIONS(2406), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2406), - [anon_sym_as] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_COMMA] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_PLUS] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2406), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_SLASH] = ACTIONS(2406), - [anon_sym_PERCENT] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2406), - [anon_sym_GT] = ACTIONS(2406), - [anon_sym_EQ_EQ] = ACTIONS(2404), - [anon_sym_BANG_EQ] = ACTIONS(2404), - [anon_sym_LT_EQ] = ACTIONS(2404), - [anon_sym_GT_EQ] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_RBRACK] = ACTIONS(2404), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_mut] = ACTIONS(2406), - [anon_sym_PLUS_PLUS] = ACTIONS(2404), - [anon_sym_DASH_DASH] = ACTIONS(2404), - [anon_sym_QMARK] = ACTIONS(2406), - [anon_sym_BANG] = ACTIONS(2406), - [anon_sym_go] = ACTIONS(2406), - [anon_sym_spawn] = ACTIONS(2406), - [anon_sym_json_DOTdecode] = ACTIONS(2404), - [anon_sym_LBRACK2] = ACTIONS(2406), - [anon_sym_TILDE] = ACTIONS(2404), - [anon_sym_CARET] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2406), - [anon_sym_LT_DASH] = ACTIONS(2404), - [anon_sym_LT_LT] = ACTIONS(2404), - [anon_sym_GT_GT] = ACTIONS(2406), - [anon_sym_GT_GT_GT] = ACTIONS(2404), - [anon_sym_AMP_CARET] = ACTIONS(2404), - [anon_sym_AMP_AMP] = ACTIONS(2404), - [anon_sym_PIPE_PIPE] = ACTIONS(2404), - [anon_sym_or] = ACTIONS(2406), - [sym_none] = ACTIONS(2406), - [sym_true] = ACTIONS(2406), - [sym_false] = ACTIONS(2406), - [sym_nil] = ACTIONS(2406), - [anon_sym_QMARK_DOT] = ACTIONS(2404), - [anon_sym_POUND_LBRACK] = ACTIONS(2404), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_else] = ACTIONS(3650), - [anon_sym_DOLLARif] = ACTIONS(2406), - [anon_sym_is] = ACTIONS(2406), - [anon_sym_BANGis] = ACTIONS(2404), - [anon_sym_in] = ACTIONS(2406), - [anon_sym_BANGin] = ACTIONS(2404), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_select] = ACTIONS(2406), - [anon_sym_lock] = ACTIONS(2406), - [anon_sym_rlock] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_sql] = ACTIONS(2406), - [sym_int_literal] = ACTIONS(2406), - [sym_float_literal] = ACTIONS(2404), - [sym_rune_literal] = ACTIONS(2404), - [anon_sym_AT] = ACTIONS(2406), - [anon_sym_shared] = ACTIONS(2406), - [anon_sym_map_LBRACK] = ACTIONS(2404), - [anon_sym_chan] = ACTIONS(2406), - [anon_sym_thread] = ACTIONS(2406), - [anon_sym_atomic] = ACTIONS(2406), - [sym___double_quote] = ACTIONS(2404), - [sym___single_quote] = ACTIONS(2404), - [sym___c_double_quote] = ACTIONS(2404), - [sym___c_single_quote] = ACTIONS(2404), - [sym___r_double_quote] = ACTIONS(2404), - [sym___r_single_quote] = ACTIONS(2404), - }, - [1285] = { - [sym_identifier] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3652), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(3652), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_COLON] = ACTIONS(3652), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), - }, - [1286] = { - [sym_identifier] = ACTIONS(3089), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3087), - [anon_sym_DOT] = ACTIONS(3089), - [anon_sym_as] = ACTIONS(3089), - [anon_sym_LBRACE] = ACTIONS(3087), - [anon_sym_COMMA] = ACTIONS(3087), - [anon_sym_LPAREN] = ACTIONS(3087), - [anon_sym_PIPE] = ACTIONS(3089), - [anon_sym_fn] = ACTIONS(3089), - [anon_sym_PLUS] = ACTIONS(3089), - [anon_sym_DASH] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(3087), - [anon_sym_SLASH] = ACTIONS(3089), - [anon_sym_PERCENT] = ACTIONS(3087), - [anon_sym_LT] = ACTIONS(3089), - [anon_sym_GT] = ACTIONS(3089), - [anon_sym_EQ_EQ] = ACTIONS(3087), - [anon_sym_BANG_EQ] = ACTIONS(3087), - [anon_sym_LT_EQ] = ACTIONS(3087), - [anon_sym_GT_EQ] = ACTIONS(3087), - [anon_sym_LBRACK] = ACTIONS(3087), - [anon_sym_RBRACK] = ACTIONS(3087), - [anon_sym_struct] = ACTIONS(3089), - [anon_sym_mut] = ACTIONS(3089), - [anon_sym_PLUS_PLUS] = ACTIONS(3087), - [anon_sym_DASH_DASH] = ACTIONS(3087), - [anon_sym_QMARK] = ACTIONS(3089), - [anon_sym_BANG] = ACTIONS(3089), - [anon_sym_go] = ACTIONS(3089), - [anon_sym_spawn] = ACTIONS(3089), - [anon_sym_json_DOTdecode] = ACTIONS(3087), - [anon_sym_LBRACK2] = ACTIONS(3089), - [anon_sym_TILDE] = ACTIONS(3087), - [anon_sym_CARET] = ACTIONS(3087), - [anon_sym_AMP] = ACTIONS(3089), - [anon_sym_LT_DASH] = ACTIONS(3087), - [anon_sym_LT_LT] = ACTIONS(3087), - [anon_sym_GT_GT] = ACTIONS(3089), - [anon_sym_GT_GT_GT] = ACTIONS(3087), - [anon_sym_AMP_CARET] = ACTIONS(3087), - [anon_sym_AMP_AMP] = ACTIONS(3087), - [anon_sym_PIPE_PIPE] = ACTIONS(3087), - [anon_sym_or] = ACTIONS(3089), - [sym_none] = ACTIONS(3089), - [sym_true] = ACTIONS(3089), - [sym_false] = ACTIONS(3089), - [sym_nil] = ACTIONS(3089), - [anon_sym_QMARK_DOT] = ACTIONS(3087), - [anon_sym_POUND_LBRACK] = ACTIONS(3087), - [anon_sym_if] = ACTIONS(3089), - [anon_sym_DOLLARif] = ACTIONS(3089), - [anon_sym_is] = ACTIONS(3089), - [anon_sym_BANGis] = ACTIONS(3087), - [anon_sym_in] = ACTIONS(3089), - [anon_sym_BANGin] = ACTIONS(3087), - [anon_sym_match] = ACTIONS(3089), - [anon_sym_select] = ACTIONS(3089), - [anon_sym_lock] = ACTIONS(3089), - [anon_sym_rlock] = ACTIONS(3089), - [anon_sym_unsafe] = ACTIONS(3089), - [anon_sym_sql] = ACTIONS(3089), - [sym_int_literal] = ACTIONS(3089), - [sym_float_literal] = ACTIONS(3087), - [sym_rune_literal] = ACTIONS(3087), - [anon_sym_AT] = ACTIONS(3089), - [anon_sym_shared] = ACTIONS(3089), - [anon_sym_map_LBRACK] = ACTIONS(3087), - [anon_sym_chan] = ACTIONS(3089), - [anon_sym_thread] = ACTIONS(3089), - [anon_sym_atomic] = ACTIONS(3089), - [sym___double_quote] = ACTIONS(3087), - [sym___single_quote] = ACTIONS(3087), - [sym___c_double_quote] = ACTIONS(3087), - [sym___c_single_quote] = ACTIONS(3087), - [sym___r_double_quote] = ACTIONS(3087), - [sym___r_single_quote] = ACTIONS(3087), - }, - [1287] = { - [sym_identifier] = ACTIONS(3033), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3031), - [anon_sym_DOT] = ACTIONS(3033), - [anon_sym_as] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(3031), - [anon_sym_COMMA] = ACTIONS(3031), - [anon_sym_LPAREN] = ACTIONS(3031), - [anon_sym_PIPE] = ACTIONS(3033), - [anon_sym_fn] = ACTIONS(3033), - [anon_sym_PLUS] = ACTIONS(3033), - [anon_sym_DASH] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(3031), - [anon_sym_SLASH] = ACTIONS(3033), - [anon_sym_PERCENT] = ACTIONS(3031), - [anon_sym_LT] = ACTIONS(3033), - [anon_sym_GT] = ACTIONS(3033), - [anon_sym_EQ_EQ] = ACTIONS(3031), - [anon_sym_BANG_EQ] = ACTIONS(3031), - [anon_sym_LT_EQ] = ACTIONS(3031), - [anon_sym_GT_EQ] = ACTIONS(3031), - [anon_sym_LBRACK] = ACTIONS(3031), - [anon_sym_RBRACK] = ACTIONS(3031), - [anon_sym_struct] = ACTIONS(3033), - [anon_sym_mut] = ACTIONS(3033), - [anon_sym_PLUS_PLUS] = ACTIONS(3031), - [anon_sym_DASH_DASH] = ACTIONS(3031), - [anon_sym_QMARK] = ACTIONS(3033), - [anon_sym_BANG] = ACTIONS(3033), - [anon_sym_go] = ACTIONS(3033), - [anon_sym_spawn] = ACTIONS(3033), - [anon_sym_json_DOTdecode] = ACTIONS(3031), - [anon_sym_LBRACK2] = ACTIONS(3033), - [anon_sym_TILDE] = ACTIONS(3031), - [anon_sym_CARET] = ACTIONS(3031), - [anon_sym_AMP] = ACTIONS(3033), - [anon_sym_LT_DASH] = ACTIONS(3031), - [anon_sym_LT_LT] = ACTIONS(3031), - [anon_sym_GT_GT] = ACTIONS(3033), - [anon_sym_GT_GT_GT] = ACTIONS(3031), - [anon_sym_AMP_CARET] = ACTIONS(3031), - [anon_sym_AMP_AMP] = ACTIONS(3031), - [anon_sym_PIPE_PIPE] = ACTIONS(3031), - [anon_sym_or] = ACTIONS(3033), - [sym_none] = ACTIONS(3033), - [sym_true] = ACTIONS(3033), - [sym_false] = ACTIONS(3033), - [sym_nil] = ACTIONS(3033), - [anon_sym_QMARK_DOT] = ACTIONS(3031), - [anon_sym_POUND_LBRACK] = ACTIONS(3031), - [anon_sym_if] = ACTIONS(3033), - [anon_sym_DOLLARif] = ACTIONS(3033), - [anon_sym_is] = ACTIONS(3033), - [anon_sym_BANGis] = ACTIONS(3031), - [anon_sym_in] = ACTIONS(3033), - [anon_sym_BANGin] = ACTIONS(3031), - [anon_sym_match] = ACTIONS(3033), - [anon_sym_select] = ACTIONS(3033), - [anon_sym_lock] = ACTIONS(3033), - [anon_sym_rlock] = ACTIONS(3033), - [anon_sym_unsafe] = ACTIONS(3033), - [anon_sym_sql] = ACTIONS(3033), - [sym_int_literal] = ACTIONS(3033), - [sym_float_literal] = ACTIONS(3031), - [sym_rune_literal] = ACTIONS(3031), - [anon_sym_AT] = ACTIONS(3033), - [anon_sym_shared] = ACTIONS(3033), - [anon_sym_map_LBRACK] = ACTIONS(3031), - [anon_sym_chan] = ACTIONS(3033), - [anon_sym_thread] = ACTIONS(3033), - [anon_sym_atomic] = ACTIONS(3033), - [sym___double_quote] = ACTIONS(3031), - [sym___single_quote] = ACTIONS(3031), - [sym___c_double_quote] = ACTIONS(3031), - [sym___c_single_quote] = ACTIONS(3031), - [sym___r_double_quote] = ACTIONS(3031), - [sym___r_single_quote] = ACTIONS(3031), - }, - [1288] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(585), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym___global] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_DOT_DOT_DOT] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_pub] = ACTIONS(585), - [anon_sym_mut] = ACTIONS(585), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_AT_LBRACK] = ACTIONS(585), - }, - [1289] = { - [sym_identifier] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_COMMA] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_RBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2728), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2728), - [anon_sym_POUND_LBRACK] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_else] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2728), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2728), - [sym_rune_literal] = ACTIONS(2728), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2728), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2728), - [sym___single_quote] = ACTIONS(2728), - [sym___c_double_quote] = ACTIONS(2728), - [sym___c_single_quote] = ACTIONS(2728), - [sym___r_double_quote] = ACTIONS(2728), - [sym___r_single_quote] = ACTIONS(2728), - }, - [1290] = { - [sym_identifier] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_COMMA] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_RBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2698), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2698), - [anon_sym_POUND_LBRACK] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_else] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2698), - [sym_rune_literal] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2698), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2698), - [sym___single_quote] = ACTIONS(2698), - [sym___c_double_quote] = ACTIONS(2698), - [sym___c_single_quote] = ACTIONS(2698), - [sym___r_double_quote] = ACTIONS(2698), - [sym___r_single_quote] = ACTIONS(2698), - }, - [1291] = { - [sym_identifier] = ACTIONS(2832), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(2830), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), - }, - [1292] = { - [sym_identifier] = ACTIONS(2832), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2830), - [anon_sym_DOT] = ACTIONS(2832), - [anon_sym_as] = ACTIONS(2832), - [anon_sym_LBRACE] = ACTIONS(2830), - [anon_sym_COMMA] = ACTIONS(2830), - [anon_sym_LPAREN] = ACTIONS(2830), - [anon_sym_PIPE] = ACTIONS(2832), - [anon_sym_fn] = ACTIONS(2832), - [anon_sym_PLUS] = ACTIONS(2832), - [anon_sym_DASH] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2830), - [anon_sym_SLASH] = ACTIONS(2832), - [anon_sym_PERCENT] = ACTIONS(2830), - [anon_sym_LT] = ACTIONS(2832), - [anon_sym_GT] = ACTIONS(2832), - [anon_sym_EQ_EQ] = ACTIONS(2830), - [anon_sym_BANG_EQ] = ACTIONS(2830), - [anon_sym_LT_EQ] = ACTIONS(2830), - [anon_sym_GT_EQ] = ACTIONS(2830), - [anon_sym_LBRACK] = ACTIONS(2830), - [anon_sym_RBRACK] = ACTIONS(3654), - [anon_sym_struct] = ACTIONS(2832), - [anon_sym_mut] = ACTIONS(2832), - [anon_sym_PLUS_PLUS] = ACTIONS(2830), - [anon_sym_DASH_DASH] = ACTIONS(2830), - [anon_sym_QMARK] = ACTIONS(2832), - [anon_sym_BANG] = ACTIONS(2832), - [anon_sym_go] = ACTIONS(2832), - [anon_sym_spawn] = ACTIONS(2832), - [anon_sym_json_DOTdecode] = ACTIONS(2830), - [anon_sym_LBRACK2] = ACTIONS(2832), - [anon_sym_TILDE] = ACTIONS(2830), - [anon_sym_CARET] = ACTIONS(2830), - [anon_sym_AMP] = ACTIONS(2832), - [anon_sym_LT_DASH] = ACTIONS(2830), - [anon_sym_LT_LT] = ACTIONS(2830), - [anon_sym_GT_GT] = ACTIONS(2832), - [anon_sym_GT_GT_GT] = ACTIONS(2830), - [anon_sym_AMP_CARET] = ACTIONS(2830), - [anon_sym_AMP_AMP] = ACTIONS(2830), - [anon_sym_PIPE_PIPE] = ACTIONS(2830), - [anon_sym_or] = ACTIONS(2832), - [sym_none] = ACTIONS(2832), - [sym_true] = ACTIONS(2832), - [sym_false] = ACTIONS(2832), - [sym_nil] = ACTIONS(2832), - [anon_sym_QMARK_DOT] = ACTIONS(2830), - [anon_sym_POUND_LBRACK] = ACTIONS(2830), - [anon_sym_if] = ACTIONS(2832), - [anon_sym_DOLLARif] = ACTIONS(2832), - [anon_sym_is] = ACTIONS(2832), - [anon_sym_BANGis] = ACTIONS(2830), - [anon_sym_in] = ACTIONS(2832), - [anon_sym_BANGin] = ACTIONS(2830), - [anon_sym_match] = ACTIONS(2832), - [anon_sym_select] = ACTIONS(2832), - [anon_sym_lock] = ACTIONS(2832), - [anon_sym_rlock] = ACTIONS(2832), - [anon_sym_unsafe] = ACTIONS(2832), - [anon_sym_sql] = ACTIONS(2832), - [sym_int_literal] = ACTIONS(2832), - [sym_float_literal] = ACTIONS(2830), - [sym_rune_literal] = ACTIONS(2830), - [anon_sym_AT] = ACTIONS(2832), - [anon_sym_shared] = ACTIONS(2832), - [anon_sym_map_LBRACK] = ACTIONS(2830), - [anon_sym_chan] = ACTIONS(2832), - [anon_sym_thread] = ACTIONS(2832), - [anon_sym_atomic] = ACTIONS(2832), - [sym___double_quote] = ACTIONS(2830), - [sym___single_quote] = ACTIONS(2830), - [sym___c_double_quote] = ACTIONS(2830), - [sym___c_single_quote] = ACTIONS(2830), - [sym___r_double_quote] = ACTIONS(2830), - [sym___r_single_quote] = ACTIONS(2830), - }, - [1293] = { - [sym_identifier] = ACTIONS(3657), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3659), - [anon_sym_DOT] = ACTIONS(3657), - [anon_sym_as] = ACTIONS(3657), - [anon_sym_LBRACE] = ACTIONS(3661), - [anon_sym_COMMA] = ACTIONS(3661), - [anon_sym_LPAREN] = ACTIONS(3661), - [anon_sym_PIPE] = ACTIONS(3657), - [anon_sym_fn] = ACTIONS(3657), - [anon_sym_PLUS] = ACTIONS(3657), - [anon_sym_DASH] = ACTIONS(3657), - [anon_sym_STAR] = ACTIONS(3661), - [anon_sym_SLASH] = ACTIONS(3657), - [anon_sym_PERCENT] = ACTIONS(3661), - [anon_sym_LT] = ACTIONS(3657), - [anon_sym_GT] = ACTIONS(3657), - [anon_sym_EQ_EQ] = ACTIONS(3661), - [anon_sym_BANG_EQ] = ACTIONS(3661), - [anon_sym_LT_EQ] = ACTIONS(3661), - [anon_sym_GT_EQ] = ACTIONS(3661), - [anon_sym_LBRACK] = ACTIONS(3661), - [anon_sym_RBRACK] = ACTIONS(3659), - [anon_sym_struct] = ACTIONS(3657), - [anon_sym_mut] = ACTIONS(3657), - [anon_sym_PLUS_PLUS] = ACTIONS(3661), - [anon_sym_DASH_DASH] = ACTIONS(3661), - [anon_sym_QMARK] = ACTIONS(3657), - [anon_sym_BANG] = ACTIONS(3657), - [anon_sym_go] = ACTIONS(3657), - [anon_sym_spawn] = ACTIONS(3657), - [anon_sym_json_DOTdecode] = ACTIONS(3661), - [anon_sym_LBRACK2] = ACTIONS(3657), - [anon_sym_TILDE] = ACTIONS(3661), - [anon_sym_CARET] = ACTIONS(3661), - [anon_sym_AMP] = ACTIONS(3657), - [anon_sym_LT_DASH] = ACTIONS(3661), - [anon_sym_LT_LT] = ACTIONS(3661), - [anon_sym_GT_GT] = ACTIONS(3657), - [anon_sym_GT_GT_GT] = ACTIONS(3661), - [anon_sym_AMP_CARET] = ACTIONS(3661), - [anon_sym_AMP_AMP] = ACTIONS(3661), - [anon_sym_PIPE_PIPE] = ACTIONS(3661), - [anon_sym_or] = ACTIONS(3657), - [sym_none] = ACTIONS(3657), - [sym_true] = ACTIONS(3657), - [sym_false] = ACTIONS(3657), - [sym_nil] = ACTIONS(3657), - [anon_sym_QMARK_DOT] = ACTIONS(3661), - [anon_sym_POUND_LBRACK] = ACTIONS(3661), - [anon_sym_if] = ACTIONS(3657), - [anon_sym_DOLLARif] = ACTIONS(3657), - [anon_sym_is] = ACTIONS(3657), - [anon_sym_BANGis] = ACTIONS(3661), - [anon_sym_in] = ACTIONS(3657), - [anon_sym_BANGin] = ACTIONS(3661), - [anon_sym_match] = ACTIONS(3657), - [anon_sym_select] = ACTIONS(3657), - [anon_sym_lock] = ACTIONS(3657), - [anon_sym_rlock] = ACTIONS(3657), - [anon_sym_unsafe] = ACTIONS(3657), - [anon_sym_sql] = ACTIONS(3657), - [sym_int_literal] = ACTIONS(3657), - [sym_float_literal] = ACTIONS(3661), - [sym_rune_literal] = ACTIONS(3661), - [anon_sym_AT] = ACTIONS(3657), - [anon_sym_shared] = ACTIONS(3657), - [anon_sym_map_LBRACK] = ACTIONS(3661), - [anon_sym_chan] = ACTIONS(3657), - [anon_sym_thread] = ACTIONS(3657), - [anon_sym_atomic] = ACTIONS(3657), - [sym___double_quote] = ACTIONS(3661), - [sym___single_quote] = ACTIONS(3661), - [sym___c_double_quote] = ACTIONS(3661), - [sym___c_single_quote] = ACTIONS(3661), - [sym___r_double_quote] = ACTIONS(3661), - [sym___r_single_quote] = ACTIONS(3661), - }, - [1294] = { - [sym_type_parameters] = STATE(1330), - [sym_identifier] = ACTIONS(2704), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_COMMA] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2702), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2702), - [anon_sym_LT_LT] = ACTIONS(2702), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2702), - [anon_sym_AMP_CARET] = ACTIONS(2702), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2702), - [anon_sym_POUND_LBRACK] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2702), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2702), - [sym_rune_literal] = ACTIONS(2702), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2702), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2702), - [sym___single_quote] = ACTIONS(2702), - [sym___c_double_quote] = ACTIONS(2702), - [sym___c_single_quote] = ACTIONS(2702), - [sym___r_double_quote] = ACTIONS(2702), - [sym___r_single_quote] = ACTIONS(2702), - }, - [1295] = { - [sym_identifier] = ACTIONS(2730), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_as] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2728), - [anon_sym_COMMA] = ACTIONS(2728), - [anon_sym_LPAREN] = ACTIONS(2728), - [anon_sym_PIPE] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2728), - [anon_sym_SLASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2728), - [anon_sym_LT] = ACTIONS(2730), - [anon_sym_GT] = ACTIONS(2730), - [anon_sym_EQ_EQ] = ACTIONS(2728), - [anon_sym_BANG_EQ] = ACTIONS(2728), - [anon_sym_LT_EQ] = ACTIONS(2728), - [anon_sym_GT_EQ] = ACTIONS(2728), - [anon_sym_LBRACK] = ACTIONS(2728), - [anon_sym_RBRACK] = ACTIONS(2728), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_PLUS_PLUS] = ACTIONS(2728), - [anon_sym_DASH_DASH] = ACTIONS(2728), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2728), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2728), - [anon_sym_CARET] = ACTIONS(2728), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2728), - [anon_sym_LT_LT] = ACTIONS(2728), - [anon_sym_GT_GT] = ACTIONS(2730), - [anon_sym_GT_GT_GT] = ACTIONS(2728), - [anon_sym_AMP_CARET] = ACTIONS(2728), - [anon_sym_AMP_AMP] = ACTIONS(2728), - [anon_sym_PIPE_PIPE] = ACTIONS(2728), - [anon_sym_or] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_QMARK_DOT] = ACTIONS(2728), - [anon_sym_POUND_LBRACK] = ACTIONS(2728), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_DOLLARelse] = ACTIONS(2730), - [anon_sym_is] = ACTIONS(2730), - [anon_sym_BANGis] = ACTIONS(2728), - [anon_sym_in] = ACTIONS(2730), - [anon_sym_BANGin] = ACTIONS(2728), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2728), - [sym_rune_literal] = ACTIONS(2728), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2728), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2728), - [sym___single_quote] = ACTIONS(2728), - [sym___c_double_quote] = ACTIONS(2728), - [sym___c_single_quote] = ACTIONS(2728), - [sym___r_double_quote] = ACTIONS(2728), - [sym___r_single_quote] = ACTIONS(2728), - }, - [1296] = { - [sym_identifier] = ACTIONS(2740), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2740), - [anon_sym_as] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(2738), - [anon_sym_COMMA] = ACTIONS(2738), - [anon_sym_LPAREN] = ACTIONS(2738), - [anon_sym_PIPE] = ACTIONS(2740), - [anon_sym_fn] = ACTIONS(2740), - [anon_sym_PLUS] = ACTIONS(2740), - [anon_sym_DASH] = ACTIONS(2740), - [anon_sym_STAR] = ACTIONS(2738), - [anon_sym_SLASH] = ACTIONS(2740), - [anon_sym_PERCENT] = ACTIONS(2738), - [anon_sym_LT] = ACTIONS(2740), - [anon_sym_GT] = ACTIONS(2740), - [anon_sym_EQ_EQ] = ACTIONS(2738), - [anon_sym_BANG_EQ] = ACTIONS(2738), - [anon_sym_LT_EQ] = ACTIONS(2738), - [anon_sym_GT_EQ] = ACTIONS(2738), - [anon_sym_LBRACK] = ACTIONS(2738), - [anon_sym_RBRACK] = ACTIONS(2738), - [anon_sym_struct] = ACTIONS(2740), - [anon_sym_mut] = ACTIONS(2740), - [anon_sym_PLUS_PLUS] = ACTIONS(2738), - [anon_sym_DASH_DASH] = ACTIONS(2738), - [anon_sym_QMARK] = ACTIONS(2740), - [anon_sym_BANG] = ACTIONS(2740), - [anon_sym_go] = ACTIONS(2740), - [anon_sym_spawn] = ACTIONS(2740), - [anon_sym_json_DOTdecode] = ACTIONS(2738), - [anon_sym_LBRACK2] = ACTIONS(2740), - [anon_sym_TILDE] = ACTIONS(2738), - [anon_sym_CARET] = ACTIONS(2738), - [anon_sym_AMP] = ACTIONS(2740), - [anon_sym_LT_DASH] = ACTIONS(2738), - [anon_sym_LT_LT] = ACTIONS(2738), - [anon_sym_GT_GT] = ACTIONS(2740), - [anon_sym_GT_GT_GT] = ACTIONS(2738), - [anon_sym_AMP_CARET] = ACTIONS(2738), - [anon_sym_AMP_AMP] = ACTIONS(2738), - [anon_sym_PIPE_PIPE] = ACTIONS(2738), - [anon_sym_or] = ACTIONS(2740), - [sym_none] = ACTIONS(2740), - [sym_true] = ACTIONS(2740), - [sym_false] = ACTIONS(2740), - [sym_nil] = ACTIONS(2740), - [anon_sym_QMARK_DOT] = ACTIONS(2738), - [anon_sym_POUND_LBRACK] = ACTIONS(2738), - [anon_sym_if] = ACTIONS(2740), - [anon_sym_DOLLARif] = ACTIONS(2740), - [anon_sym_DOLLARelse] = ACTIONS(3663), - [anon_sym_is] = ACTIONS(2740), - [anon_sym_BANGis] = ACTIONS(2738), - [anon_sym_in] = ACTIONS(2740), - [anon_sym_BANGin] = ACTIONS(2738), - [anon_sym_match] = ACTIONS(2740), - [anon_sym_select] = ACTIONS(2740), - [anon_sym_lock] = ACTIONS(2740), - [anon_sym_rlock] = ACTIONS(2740), - [anon_sym_unsafe] = ACTIONS(2740), - [anon_sym_sql] = ACTIONS(2740), - [sym_int_literal] = ACTIONS(2740), - [sym_float_literal] = ACTIONS(2738), - [sym_rune_literal] = ACTIONS(2738), - [anon_sym_AT] = ACTIONS(2740), - [anon_sym_shared] = ACTIONS(2740), - [anon_sym_map_LBRACK] = ACTIONS(2738), - [anon_sym_chan] = ACTIONS(2740), - [anon_sym_thread] = ACTIONS(2740), - [anon_sym_atomic] = ACTIONS(2740), - [sym___double_quote] = ACTIONS(2738), - [sym___single_quote] = ACTIONS(2738), - [sym___c_double_quote] = ACTIONS(2738), - [sym___c_single_quote] = ACTIONS(2738), - [sym___r_double_quote] = ACTIONS(2738), - [sym___r_single_quote] = ACTIONS(2738), - }, - [1297] = { - [sym_identifier] = ACTIONS(3037), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3035), - [anon_sym_DOT] = ACTIONS(3037), - [anon_sym_as] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(3035), - [anon_sym_COMMA] = ACTIONS(3035), - [anon_sym_LPAREN] = ACTIONS(3035), - [anon_sym_PIPE] = ACTIONS(3037), - [anon_sym_fn] = ACTIONS(3037), - [anon_sym_PLUS] = ACTIONS(3037), - [anon_sym_DASH] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(3035), - [anon_sym_SLASH] = ACTIONS(3037), - [anon_sym_PERCENT] = ACTIONS(3035), - [anon_sym_LT] = ACTIONS(3037), - [anon_sym_GT] = ACTIONS(3037), - [anon_sym_EQ_EQ] = ACTIONS(3035), - [anon_sym_BANG_EQ] = ACTIONS(3035), - [anon_sym_LT_EQ] = ACTIONS(3035), - [anon_sym_GT_EQ] = ACTIONS(3035), - [anon_sym_LBRACK] = ACTIONS(3035), - [anon_sym_RBRACK] = ACTIONS(3035), - [anon_sym_struct] = ACTIONS(3037), - [anon_sym_mut] = ACTIONS(3037), - [anon_sym_PLUS_PLUS] = ACTIONS(3035), - [anon_sym_DASH_DASH] = ACTIONS(3035), - [anon_sym_QMARK] = ACTIONS(3037), - [anon_sym_BANG] = ACTIONS(3037), - [anon_sym_go] = ACTIONS(3037), - [anon_sym_spawn] = ACTIONS(3037), - [anon_sym_json_DOTdecode] = ACTIONS(3035), - [anon_sym_LBRACK2] = ACTIONS(3037), - [anon_sym_TILDE] = ACTIONS(3035), - [anon_sym_CARET] = ACTIONS(3035), - [anon_sym_AMP] = ACTIONS(3037), - [anon_sym_LT_DASH] = ACTIONS(3035), - [anon_sym_LT_LT] = ACTIONS(3035), - [anon_sym_GT_GT] = ACTIONS(3037), - [anon_sym_GT_GT_GT] = ACTIONS(3035), - [anon_sym_AMP_CARET] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(3035), - [anon_sym_PIPE_PIPE] = ACTIONS(3035), - [anon_sym_or] = ACTIONS(3037), - [sym_none] = ACTIONS(3037), - [sym_true] = ACTIONS(3037), - [sym_false] = ACTIONS(3037), - [sym_nil] = ACTIONS(3037), - [anon_sym_QMARK_DOT] = ACTIONS(3035), - [anon_sym_POUND_LBRACK] = ACTIONS(3035), - [anon_sym_if] = ACTIONS(3037), - [anon_sym_DOLLARif] = ACTIONS(3037), - [anon_sym_is] = ACTIONS(3037), - [anon_sym_BANGis] = ACTIONS(3035), - [anon_sym_in] = ACTIONS(3037), - [anon_sym_BANGin] = ACTIONS(3035), - [anon_sym_match] = ACTIONS(3037), - [anon_sym_select] = ACTIONS(3037), - [anon_sym_lock] = ACTIONS(3037), - [anon_sym_rlock] = ACTIONS(3037), - [anon_sym_unsafe] = ACTIONS(3037), - [anon_sym_sql] = ACTIONS(3037), - [sym_int_literal] = ACTIONS(3037), - [sym_float_literal] = ACTIONS(3035), - [sym_rune_literal] = ACTIONS(3035), - [anon_sym_AT] = ACTIONS(3037), - [anon_sym_shared] = ACTIONS(3037), - [anon_sym_map_LBRACK] = ACTIONS(3035), - [anon_sym_chan] = ACTIONS(3037), - [anon_sym_thread] = ACTIONS(3037), - [anon_sym_atomic] = ACTIONS(3037), - [sym___double_quote] = ACTIONS(3035), - [sym___single_quote] = ACTIONS(3035), - [sym___c_double_quote] = ACTIONS(3035), - [sym___c_single_quote] = ACTIONS(3035), - [sym___r_double_quote] = ACTIONS(3035), - [sym___r_single_quote] = ACTIONS(3035), - }, - [1298] = { - [sym_identifier] = ACTIONS(3045), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3043), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(3045), - [anon_sym_LBRACE] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3043), - [anon_sym_LPAREN] = ACTIONS(3043), - [anon_sym_PIPE] = ACTIONS(3045), - [anon_sym_fn] = ACTIONS(3045), - [anon_sym_PLUS] = ACTIONS(3045), - [anon_sym_DASH] = ACTIONS(3045), - [anon_sym_STAR] = ACTIONS(3043), - [anon_sym_SLASH] = ACTIONS(3045), - [anon_sym_PERCENT] = ACTIONS(3043), - [anon_sym_LT] = ACTIONS(3045), - [anon_sym_GT] = ACTIONS(3045), - [anon_sym_EQ_EQ] = ACTIONS(3043), - [anon_sym_BANG_EQ] = ACTIONS(3043), - [anon_sym_LT_EQ] = ACTIONS(3043), - [anon_sym_GT_EQ] = ACTIONS(3043), - [anon_sym_LBRACK] = ACTIONS(3043), - [anon_sym_RBRACK] = ACTIONS(3043), - [anon_sym_struct] = ACTIONS(3045), - [anon_sym_mut] = ACTIONS(3045), - [anon_sym_PLUS_PLUS] = ACTIONS(3043), - [anon_sym_DASH_DASH] = ACTIONS(3043), - [anon_sym_QMARK] = ACTIONS(3045), - [anon_sym_BANG] = ACTIONS(3045), - [anon_sym_go] = ACTIONS(3045), - [anon_sym_spawn] = ACTIONS(3045), - [anon_sym_json_DOTdecode] = ACTIONS(3043), - [anon_sym_LBRACK2] = ACTIONS(3045), - [anon_sym_TILDE] = ACTIONS(3043), - [anon_sym_CARET] = ACTIONS(3043), - [anon_sym_AMP] = ACTIONS(3045), - [anon_sym_LT_DASH] = ACTIONS(3043), - [anon_sym_LT_LT] = ACTIONS(3043), - [anon_sym_GT_GT] = ACTIONS(3045), - [anon_sym_GT_GT_GT] = ACTIONS(3043), - [anon_sym_AMP_CARET] = ACTIONS(3043), - [anon_sym_AMP_AMP] = ACTIONS(3043), - [anon_sym_PIPE_PIPE] = ACTIONS(3043), - [anon_sym_or] = ACTIONS(3045), - [sym_none] = ACTIONS(3045), - [sym_true] = ACTIONS(3045), - [sym_false] = ACTIONS(3045), - [sym_nil] = ACTIONS(3045), - [anon_sym_QMARK_DOT] = ACTIONS(3043), - [anon_sym_POUND_LBRACK] = ACTIONS(3043), - [anon_sym_if] = ACTIONS(3045), - [anon_sym_DOLLARif] = ACTIONS(3045), - [anon_sym_is] = ACTIONS(3045), - [anon_sym_BANGis] = ACTIONS(3043), - [anon_sym_in] = ACTIONS(3045), - [anon_sym_BANGin] = ACTIONS(3043), - [anon_sym_match] = ACTIONS(3045), - [anon_sym_select] = ACTIONS(3045), - [anon_sym_lock] = ACTIONS(3045), - [anon_sym_rlock] = ACTIONS(3045), - [anon_sym_unsafe] = ACTIONS(3045), - [anon_sym_sql] = ACTIONS(3045), - [sym_int_literal] = ACTIONS(3045), - [sym_float_literal] = ACTIONS(3043), - [sym_rune_literal] = ACTIONS(3043), - [anon_sym_AT] = ACTIONS(3045), - [anon_sym_shared] = ACTIONS(3045), - [anon_sym_map_LBRACK] = ACTIONS(3043), - [anon_sym_chan] = ACTIONS(3045), - [anon_sym_thread] = ACTIONS(3045), - [anon_sym_atomic] = ACTIONS(3045), - [sym___double_quote] = ACTIONS(3043), - [sym___single_quote] = ACTIONS(3043), - [sym___c_double_quote] = ACTIONS(3043), - [sym___c_single_quote] = ACTIONS(3043), - [sym___r_double_quote] = ACTIONS(3043), - [sym___r_single_quote] = ACTIONS(3043), - }, - [1299] = { - [sym_identifier] = ACTIONS(2734), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2734), - [anon_sym_as] = ACTIONS(2734), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_COMMA] = ACTIONS(2732), - [anon_sym_LPAREN] = ACTIONS(2732), - [anon_sym_PIPE] = ACTIONS(2734), - [anon_sym_fn] = ACTIONS(2734), - [anon_sym_PLUS] = ACTIONS(2734), - [anon_sym_DASH] = ACTIONS(2734), - [anon_sym_STAR] = ACTIONS(2732), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_PERCENT] = ACTIONS(2732), - [anon_sym_LT] = ACTIONS(2734), - [anon_sym_GT] = ACTIONS(2734), - [anon_sym_EQ_EQ] = ACTIONS(2732), - [anon_sym_BANG_EQ] = ACTIONS(2732), - [anon_sym_LT_EQ] = ACTIONS(2732), - [anon_sym_GT_EQ] = ACTIONS(2732), - [anon_sym_LBRACK] = ACTIONS(2732), - [anon_sym_RBRACK] = ACTIONS(2732), - [anon_sym_struct] = ACTIONS(2734), - [anon_sym_mut] = ACTIONS(2734), - [anon_sym_PLUS_PLUS] = ACTIONS(2732), - [anon_sym_DASH_DASH] = ACTIONS(2732), - [anon_sym_QMARK] = ACTIONS(2734), - [anon_sym_BANG] = ACTIONS(2734), - [anon_sym_go] = ACTIONS(2734), - [anon_sym_spawn] = ACTIONS(2734), - [anon_sym_json_DOTdecode] = ACTIONS(2732), - [anon_sym_LBRACK2] = ACTIONS(2734), - [anon_sym_TILDE] = ACTIONS(2732), - [anon_sym_CARET] = ACTIONS(2732), - [anon_sym_AMP] = ACTIONS(2734), - [anon_sym_LT_DASH] = ACTIONS(2732), - [anon_sym_LT_LT] = ACTIONS(2732), - [anon_sym_GT_GT] = ACTIONS(2734), - [anon_sym_GT_GT_GT] = ACTIONS(2732), - [anon_sym_AMP_CARET] = ACTIONS(2732), - [anon_sym_AMP_AMP] = ACTIONS(2732), - [anon_sym_PIPE_PIPE] = ACTIONS(2732), - [anon_sym_or] = ACTIONS(2734), - [sym_none] = ACTIONS(2734), - [sym_true] = ACTIONS(2734), - [sym_false] = ACTIONS(2734), - [sym_nil] = ACTIONS(2734), - [anon_sym_QMARK_DOT] = ACTIONS(2732), - [anon_sym_POUND_LBRACK] = ACTIONS(2732), - [anon_sym_if] = ACTIONS(2734), - [anon_sym_DOLLARif] = ACTIONS(2734), - [anon_sym_DOLLARelse] = ACTIONS(3665), - [anon_sym_is] = ACTIONS(2734), - [anon_sym_BANGis] = ACTIONS(2732), - [anon_sym_in] = ACTIONS(2734), - [anon_sym_BANGin] = ACTIONS(2732), - [anon_sym_match] = ACTIONS(2734), - [anon_sym_select] = ACTIONS(2734), - [anon_sym_lock] = ACTIONS(2734), - [anon_sym_rlock] = ACTIONS(2734), - [anon_sym_unsafe] = ACTIONS(2734), - [anon_sym_sql] = ACTIONS(2734), - [sym_int_literal] = ACTIONS(2734), - [sym_float_literal] = ACTIONS(2732), - [sym_rune_literal] = ACTIONS(2732), - [anon_sym_AT] = ACTIONS(2734), - [anon_sym_shared] = ACTIONS(2734), - [anon_sym_map_LBRACK] = ACTIONS(2732), - [anon_sym_chan] = ACTIONS(2734), - [anon_sym_thread] = ACTIONS(2734), - [anon_sym_atomic] = ACTIONS(2734), - [sym___double_quote] = ACTIONS(2732), - [sym___single_quote] = ACTIONS(2732), - [sym___c_double_quote] = ACTIONS(2732), - [sym___c_single_quote] = ACTIONS(2732), - [sym___r_double_quote] = ACTIONS(2732), - [sym___r_single_quote] = ACTIONS(2732), - }, - [1300] = { - [sym_identifier] = ACTIONS(3093), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(3091), - [anon_sym_DOT] = ACTIONS(3093), - [anon_sym_as] = ACTIONS(3093), - [anon_sym_LBRACE] = ACTIONS(3091), - [anon_sym_COMMA] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3091), - [anon_sym_PIPE] = ACTIONS(3093), - [anon_sym_fn] = ACTIONS(3093), - [anon_sym_PLUS] = ACTIONS(3093), - [anon_sym_DASH] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(3091), - [anon_sym_SLASH] = ACTIONS(3093), - [anon_sym_PERCENT] = ACTIONS(3091), - [anon_sym_LT] = ACTIONS(3093), - [anon_sym_GT] = ACTIONS(3093), - [anon_sym_EQ_EQ] = ACTIONS(3091), - [anon_sym_BANG_EQ] = ACTIONS(3091), - [anon_sym_LT_EQ] = ACTIONS(3091), - [anon_sym_GT_EQ] = ACTIONS(3091), - [anon_sym_LBRACK] = ACTIONS(3091), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_struct] = ACTIONS(3093), - [anon_sym_mut] = ACTIONS(3093), - [anon_sym_PLUS_PLUS] = ACTIONS(3091), - [anon_sym_DASH_DASH] = ACTIONS(3091), - [anon_sym_QMARK] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(3093), - [anon_sym_go] = ACTIONS(3093), - [anon_sym_spawn] = ACTIONS(3093), - [anon_sym_json_DOTdecode] = ACTIONS(3091), - [anon_sym_LBRACK2] = ACTIONS(3093), - [anon_sym_TILDE] = ACTIONS(3091), - [anon_sym_CARET] = ACTIONS(3091), - [anon_sym_AMP] = ACTIONS(3093), - [anon_sym_LT_DASH] = ACTIONS(3091), - [anon_sym_LT_LT] = ACTIONS(3091), - [anon_sym_GT_GT] = ACTIONS(3093), - [anon_sym_GT_GT_GT] = ACTIONS(3091), - [anon_sym_AMP_CARET] = ACTIONS(3091), - [anon_sym_AMP_AMP] = ACTIONS(3091), - [anon_sym_PIPE_PIPE] = ACTIONS(3091), - [anon_sym_or] = ACTIONS(3093), - [sym_none] = ACTIONS(3093), - [sym_true] = ACTIONS(3093), - [sym_false] = ACTIONS(3093), - [sym_nil] = ACTIONS(3093), - [anon_sym_QMARK_DOT] = ACTIONS(3091), - [anon_sym_POUND_LBRACK] = ACTIONS(3091), - [anon_sym_if] = ACTIONS(3093), - [anon_sym_DOLLARif] = ACTIONS(3093), - [anon_sym_is] = ACTIONS(3093), - [anon_sym_BANGis] = ACTIONS(3091), - [anon_sym_in] = ACTIONS(3093), - [anon_sym_BANGin] = ACTIONS(3091), - [anon_sym_match] = ACTIONS(3093), - [anon_sym_select] = ACTIONS(3093), - [anon_sym_lock] = ACTIONS(3093), - [anon_sym_rlock] = ACTIONS(3093), - [anon_sym_unsafe] = ACTIONS(3093), - [anon_sym_sql] = ACTIONS(3093), - [sym_int_literal] = ACTIONS(3093), - [sym_float_literal] = ACTIONS(3091), - [sym_rune_literal] = ACTIONS(3091), - [anon_sym_AT] = ACTIONS(3093), - [anon_sym_shared] = ACTIONS(3093), - [anon_sym_map_LBRACK] = ACTIONS(3091), - [anon_sym_chan] = ACTIONS(3093), - [anon_sym_thread] = ACTIONS(3093), - [anon_sym_atomic] = ACTIONS(3093), - [sym___double_quote] = ACTIONS(3091), - [sym___single_quote] = ACTIONS(3091), - [sym___c_double_quote] = ACTIONS(3091), - [sym___c_single_quote] = ACTIONS(3091), - [sym___r_double_quote] = ACTIONS(3091), - [sym___r_single_quote] = ACTIONS(3091), - }, - [1301] = { - [sym_identifier] = ACTIONS(2788), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(2786), - [anon_sym_DOT] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(2786), - [anon_sym_COMMA] = ACTIONS(2786), - [anon_sym_LPAREN] = ACTIONS(2786), - [anon_sym_PIPE] = ACTIONS(2788), - [anon_sym_fn] = ACTIONS(2788), - [anon_sym_PLUS] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_STAR] = ACTIONS(2786), - [anon_sym_SLASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2786), - [anon_sym_LT] = ACTIONS(2788), - [anon_sym_GT] = ACTIONS(2788), - [anon_sym_EQ_EQ] = ACTIONS(2786), - [anon_sym_BANG_EQ] = ACTIONS(2786), - [anon_sym_LT_EQ] = ACTIONS(2786), - [anon_sym_GT_EQ] = ACTIONS(2786), - [anon_sym_LBRACK] = ACTIONS(2786), - [anon_sym_RBRACK] = ACTIONS(2786), - [anon_sym_struct] = ACTIONS(2788), - [anon_sym_mut] = ACTIONS(2788), - [anon_sym_PLUS_PLUS] = ACTIONS(2786), - [anon_sym_DASH_DASH] = ACTIONS(2786), - [anon_sym_QMARK] = ACTIONS(2788), - [anon_sym_BANG] = ACTIONS(2788), - [anon_sym_go] = ACTIONS(2788), - [anon_sym_spawn] = ACTIONS(2788), - [anon_sym_json_DOTdecode] = ACTIONS(2786), - [anon_sym_LBRACK2] = ACTIONS(2788), - [anon_sym_TILDE] = ACTIONS(2786), - [anon_sym_CARET] = ACTIONS(2786), - [anon_sym_AMP] = ACTIONS(2788), - [anon_sym_LT_DASH] = ACTIONS(2786), - [anon_sym_LT_LT] = ACTIONS(2786), - [anon_sym_GT_GT] = ACTIONS(2788), - [anon_sym_GT_GT_GT] = ACTIONS(2786), - [anon_sym_AMP_CARET] = ACTIONS(2786), - [anon_sym_AMP_AMP] = ACTIONS(2786), - [anon_sym_PIPE_PIPE] = ACTIONS(2786), - [anon_sym_or] = ACTIONS(2788), - [sym_none] = ACTIONS(2788), - [sym_true] = ACTIONS(2788), - [sym_false] = ACTIONS(2788), - [sym_nil] = ACTIONS(2788), - [anon_sym_QMARK_DOT] = ACTIONS(2786), - [anon_sym_POUND_LBRACK] = ACTIONS(2786), - [anon_sym_if] = ACTIONS(2788), - [anon_sym_DOLLARif] = ACTIONS(2788), - [anon_sym_is] = ACTIONS(2788), - [anon_sym_BANGis] = ACTIONS(2786), - [anon_sym_in] = ACTIONS(2788), - [anon_sym_BANGin] = ACTIONS(2786), - [anon_sym_match] = ACTIONS(2788), - [anon_sym_select] = ACTIONS(2788), - [anon_sym_lock] = ACTIONS(2788), - [anon_sym_rlock] = ACTIONS(2788), - [anon_sym_unsafe] = ACTIONS(2788), - [anon_sym_sql] = ACTIONS(2788), - [sym_int_literal] = ACTIONS(2788), - [sym_float_literal] = ACTIONS(2786), - [sym_rune_literal] = ACTIONS(2786), - [anon_sym_AT] = ACTIONS(2788), - [anon_sym_shared] = ACTIONS(2788), - [anon_sym_map_LBRACK] = ACTIONS(2786), - [anon_sym_chan] = ACTIONS(2788), - [anon_sym_thread] = ACTIONS(2788), - [anon_sym_atomic] = ACTIONS(2788), - [sym___double_quote] = ACTIONS(2786), - [sym___single_quote] = ACTIONS(2786), - [sym___c_double_quote] = ACTIONS(2786), - [sym___c_single_quote] = ACTIONS(2786), - [sym___r_double_quote] = ACTIONS(2786), - [sym___r_single_quote] = ACTIONS(2786), - }, - [1302] = { - [sym_identifier] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_COMMA] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_RBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2698), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2698), - [anon_sym_POUND_LBRACK] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_DOLLARelse] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2698), - [sym_rune_literal] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2698), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2698), - [sym___single_quote] = ACTIONS(2698), - [sym___c_double_quote] = ACTIONS(2698), - [sym___c_single_quote] = ACTIONS(2698), - [sym___r_double_quote] = ACTIONS(2698), - [sym___r_single_quote] = ACTIONS(2698), - }, - [1303] = { - [sym_identifier] = ACTIONS(2820), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2820), - [anon_sym_as] = ACTIONS(2820), - [anon_sym_LBRACE] = ACTIONS(2818), - [anon_sym_COMMA] = ACTIONS(2818), - [anon_sym_LPAREN] = ACTIONS(2818), - [anon_sym_PIPE] = ACTIONS(2820), - [anon_sym_fn] = ACTIONS(2820), - [anon_sym_PLUS] = ACTIONS(2820), - [anon_sym_DASH] = ACTIONS(2820), - [anon_sym_STAR] = ACTIONS(2818), - [anon_sym_SLASH] = ACTIONS(2820), - [anon_sym_PERCENT] = ACTIONS(2818), - [anon_sym_LT] = ACTIONS(2820), - [anon_sym_GT] = ACTIONS(2820), - [anon_sym_EQ_EQ] = ACTIONS(2818), - [anon_sym_BANG_EQ] = ACTIONS(2818), - [anon_sym_LT_EQ] = ACTIONS(2818), - [anon_sym_GT_EQ] = ACTIONS(2818), - [anon_sym_LBRACK] = ACTIONS(2818), - [anon_sym_RBRACK] = ACTIONS(2818), - [anon_sym_struct] = ACTIONS(2820), - [anon_sym_mut] = ACTIONS(2820), - [anon_sym_PLUS_PLUS] = ACTIONS(2818), - [anon_sym_DASH_DASH] = ACTIONS(2818), - [anon_sym_QMARK] = ACTIONS(2820), - [anon_sym_BANG] = ACTIONS(2820), - [anon_sym_go] = ACTIONS(2820), - [anon_sym_spawn] = ACTIONS(2820), - [anon_sym_json_DOTdecode] = ACTIONS(2818), - [anon_sym_LBRACK2] = ACTIONS(2820), - [anon_sym_TILDE] = ACTIONS(2818), - [anon_sym_CARET] = ACTIONS(2818), - [anon_sym_AMP] = ACTIONS(2820), - [anon_sym_LT_DASH] = ACTIONS(2818), - [anon_sym_LT_LT] = ACTIONS(2818), - [anon_sym_GT_GT] = ACTIONS(2820), - [anon_sym_GT_GT_GT] = ACTIONS(2818), - [anon_sym_AMP_CARET] = ACTIONS(2818), - [anon_sym_AMP_AMP] = ACTIONS(2818), - [anon_sym_PIPE_PIPE] = ACTIONS(2818), - [anon_sym_or] = ACTIONS(2820), - [sym_none] = ACTIONS(2820), - [sym_true] = ACTIONS(2820), - [sym_false] = ACTIONS(2820), - [sym_nil] = ACTIONS(2820), - [anon_sym_QMARK_DOT] = ACTIONS(2818), - [anon_sym_POUND_LBRACK] = ACTIONS(2818), - [anon_sym_if] = ACTIONS(2820), - [anon_sym_DOLLARif] = ACTIONS(2820), - [anon_sym_is] = ACTIONS(2820), - [anon_sym_BANGis] = ACTIONS(2818), - [anon_sym_in] = ACTIONS(2820), - [anon_sym_BANGin] = ACTIONS(2818), - [anon_sym_match] = ACTIONS(2820), - [anon_sym_select] = ACTIONS(2820), - [anon_sym_lock] = ACTIONS(2820), - [anon_sym_rlock] = ACTIONS(2820), - [anon_sym_unsafe] = ACTIONS(2820), - [anon_sym_sql] = ACTIONS(2820), - [sym_int_literal] = ACTIONS(2820), - [sym_float_literal] = ACTIONS(2818), - [sym_rune_literal] = ACTIONS(2818), - [anon_sym_AT] = ACTIONS(2820), - [anon_sym_shared] = ACTIONS(2820), - [anon_sym_map_LBRACK] = ACTIONS(2818), - [anon_sym_chan] = ACTIONS(2820), - [anon_sym_thread] = ACTIONS(2820), - [anon_sym_atomic] = ACTIONS(2820), - [sym___double_quote] = ACTIONS(2818), - [sym___single_quote] = ACTIONS(2818), - [sym___c_double_quote] = ACTIONS(2818), - [sym___c_single_quote] = ACTIONS(2818), - [sym___r_double_quote] = ACTIONS(2818), - [sym___r_single_quote] = ACTIONS(2818), - }, - [1304] = { - [sym_identifier] = ACTIONS(2700), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_as] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_COMMA] = ACTIONS(2698), - [anon_sym_LPAREN] = ACTIONS(2698), - [anon_sym_PIPE] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2698), - [anon_sym_SLASH] = ACTIONS(2700), - [anon_sym_PERCENT] = ACTIONS(2698), - [anon_sym_LT] = ACTIONS(2700), - [anon_sym_GT] = ACTIONS(2700), - [anon_sym_EQ_EQ] = ACTIONS(2698), - [anon_sym_BANG_EQ] = ACTIONS(2698), - [anon_sym_LT_EQ] = ACTIONS(2698), - [anon_sym_GT_EQ] = ACTIONS(2698), - [anon_sym_LBRACK] = ACTIONS(2698), - [anon_sym_RBRACK] = ACTIONS(2698), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_PLUS_PLUS] = ACTIONS(2698), - [anon_sym_DASH_DASH] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2698), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2698), - [anon_sym_CARET] = ACTIONS(2698), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2698), - [anon_sym_LT_LT] = ACTIONS(2698), - [anon_sym_GT_GT] = ACTIONS(2700), - [anon_sym_GT_GT_GT] = ACTIONS(2698), - [anon_sym_AMP_CARET] = ACTIONS(2698), - [anon_sym_AMP_AMP] = ACTIONS(2698), - [anon_sym_PIPE_PIPE] = ACTIONS(2698), - [anon_sym_or] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_QMARK_DOT] = ACTIONS(2698), - [anon_sym_POUND_LBRACK] = ACTIONS(2698), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_is] = ACTIONS(2700), - [anon_sym_BANGis] = ACTIONS(2698), - [anon_sym_in] = ACTIONS(2700), - [anon_sym_BANGin] = ACTIONS(2698), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2698), - [sym_rune_literal] = ACTIONS(2698), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2698), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2698), - [sym___single_quote] = ACTIONS(2698), - [sym___c_double_quote] = ACTIONS(2698), - [sym___c_single_quote] = ACTIONS(2698), - [sym___r_double_quote] = ACTIONS(2698), - [sym___r_single_quote] = ACTIONS(2698), - }, - [1305] = { - [sym_identifier] = ACTIONS(2891), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2891), - [anon_sym_as] = ACTIONS(2891), - [anon_sym_LBRACE] = ACTIONS(2889), - [anon_sym_COMMA] = ACTIONS(2889), - [anon_sym_LPAREN] = ACTIONS(2889), - [anon_sym_PIPE] = ACTIONS(2891), - [anon_sym_fn] = ACTIONS(2891), - [anon_sym_PLUS] = ACTIONS(2891), - [anon_sym_DASH] = ACTIONS(2891), - [anon_sym_STAR] = ACTIONS(2889), - [anon_sym_SLASH] = ACTIONS(2891), - [anon_sym_PERCENT] = ACTIONS(2889), - [anon_sym_LT] = ACTIONS(2891), - [anon_sym_GT] = ACTIONS(2891), - [anon_sym_EQ_EQ] = ACTIONS(2889), - [anon_sym_BANG_EQ] = ACTIONS(2889), - [anon_sym_LT_EQ] = ACTIONS(2889), - [anon_sym_GT_EQ] = ACTIONS(2889), - [anon_sym_LBRACK] = ACTIONS(2889), - [anon_sym_RBRACK] = ACTIONS(2889), - [anon_sym_struct] = ACTIONS(2891), - [anon_sym_mut] = ACTIONS(2891), - [anon_sym_PLUS_PLUS] = ACTIONS(2889), - [anon_sym_DASH_DASH] = ACTIONS(2889), - [anon_sym_QMARK] = ACTIONS(2891), - [anon_sym_BANG] = ACTIONS(2891), - [anon_sym_go] = ACTIONS(2891), - [anon_sym_spawn] = ACTIONS(2891), - [anon_sym_json_DOTdecode] = ACTIONS(2889), - [anon_sym_LBRACK2] = ACTIONS(2891), - [anon_sym_TILDE] = ACTIONS(2889), - [anon_sym_CARET] = ACTIONS(2889), - [anon_sym_AMP] = ACTIONS(2891), - [anon_sym_LT_DASH] = ACTIONS(2889), - [anon_sym_LT_LT] = ACTIONS(2889), - [anon_sym_GT_GT] = ACTIONS(2891), - [anon_sym_GT_GT_GT] = ACTIONS(2889), - [anon_sym_AMP_CARET] = ACTIONS(2889), - [anon_sym_AMP_AMP] = ACTIONS(2889), - [anon_sym_PIPE_PIPE] = ACTIONS(2889), - [anon_sym_or] = ACTIONS(2891), - [sym_none] = ACTIONS(2891), - [sym_true] = ACTIONS(2891), - [sym_false] = ACTIONS(2891), - [sym_nil] = ACTIONS(2891), - [anon_sym_QMARK_DOT] = ACTIONS(2889), - [anon_sym_POUND_LBRACK] = ACTIONS(2889), - [anon_sym_if] = ACTIONS(2891), - [anon_sym_DOLLARif] = ACTIONS(2891), - [anon_sym_is] = ACTIONS(2891), - [anon_sym_BANGis] = ACTIONS(2889), - [anon_sym_in] = ACTIONS(2891), - [anon_sym_BANGin] = ACTIONS(2889), - [anon_sym_match] = ACTIONS(2891), - [anon_sym_select] = ACTIONS(2891), - [anon_sym_lock] = ACTIONS(2891), - [anon_sym_rlock] = ACTIONS(2891), - [anon_sym_unsafe] = ACTIONS(2891), - [anon_sym_sql] = ACTIONS(2891), - [sym_int_literal] = ACTIONS(2891), - [sym_float_literal] = ACTIONS(2889), - [sym_rune_literal] = ACTIONS(2889), - [anon_sym_AT] = ACTIONS(2891), - [anon_sym_shared] = ACTIONS(2891), - [anon_sym_map_LBRACK] = ACTIONS(2889), - [anon_sym_chan] = ACTIONS(2891), - [anon_sym_thread] = ACTIONS(2891), - [anon_sym_atomic] = ACTIONS(2891), - [sym___double_quote] = ACTIONS(2889), - [sym___single_quote] = ACTIONS(2889), - [sym___c_double_quote] = ACTIONS(2889), - [sym___c_single_quote] = ACTIONS(2889), - [sym___r_double_quote] = ACTIONS(2889), - [sym___r_single_quote] = ACTIONS(2889), - }, - [1306] = { - [sym_identifier] = ACTIONS(3041), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3039), - [anon_sym_COMMA] = ACTIONS(3039), - [anon_sym_LPAREN] = ACTIONS(3039), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3039), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3039), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3039), - [anon_sym_BANG_EQ] = ACTIONS(3039), - [anon_sym_LT_EQ] = ACTIONS(3039), - [anon_sym_GT_EQ] = ACTIONS(3039), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_RBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3039), - [anon_sym_DASH_DASH] = ACTIONS(3039), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3039), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3039), - [anon_sym_CARET] = ACTIONS(3039), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3039), - [anon_sym_LT_LT] = ACTIONS(3039), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3039), - [anon_sym_AMP_CARET] = ACTIONS(3039), - [anon_sym_AMP_AMP] = ACTIONS(3039), - [anon_sym_PIPE_PIPE] = ACTIONS(3039), - [anon_sym_or] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3039), - [anon_sym_POUND_LBRACK] = ACTIONS(3039), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3039), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3039), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3039), - [sym_rune_literal] = ACTIONS(3039), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3039), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3039), - [sym___single_quote] = ACTIONS(3039), - [sym___c_double_quote] = ACTIONS(3039), - [sym___c_single_quote] = ACTIONS(3039), - [sym___r_double_quote] = ACTIONS(3039), - [sym___r_single_quote] = ACTIONS(3039), - }, - [1307] = { - [sym_identifier] = ACTIONS(3177), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_as] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3175), - [anon_sym_COMMA] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3175), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3175), - [anon_sym_SLASH] = ACTIONS(3177), - [anon_sym_PERCENT] = ACTIONS(3175), - [anon_sym_LT] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3175), - [anon_sym_BANG_EQ] = ACTIONS(3175), - [anon_sym_LT_EQ] = ACTIONS(3175), - [anon_sym_GT_EQ] = ACTIONS(3175), - [anon_sym_LBRACK] = ACTIONS(3175), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3175), - [anon_sym_DASH_DASH] = ACTIONS(3175), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3175), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3175), - [anon_sym_CARET] = ACTIONS(3175), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3175), - [anon_sym_LT_LT] = ACTIONS(3175), - [anon_sym_GT_GT] = ACTIONS(3177), - [anon_sym_GT_GT_GT] = ACTIONS(3175), - [anon_sym_AMP_CARET] = ACTIONS(3175), - [anon_sym_AMP_AMP] = ACTIONS(3175), - [anon_sym_PIPE_PIPE] = ACTIONS(3175), - [anon_sym_or] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_QMARK_DOT] = ACTIONS(3175), - [anon_sym_POUND_LBRACK] = ACTIONS(3175), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_is] = ACTIONS(3177), - [anon_sym_BANGis] = ACTIONS(3175), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_BANGin] = ACTIONS(3175), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3175), - [sym_rune_literal] = ACTIONS(3175), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3175), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3175), - [sym___single_quote] = ACTIONS(3175), - [sym___c_double_quote] = ACTIONS(3175), - [sym___c_single_quote] = ACTIONS(3175), - [sym___r_double_quote] = ACTIONS(3175), - [sym___r_single_quote] = ACTIONS(3175), - }, - [1308] = { - [sym_identifier] = ACTIONS(3101), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3099), - [anon_sym_COMMA] = ACTIONS(3099), - [anon_sym_LPAREN] = ACTIONS(3099), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3099), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3099), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3099), - [anon_sym_BANG_EQ] = ACTIONS(3099), - [anon_sym_LT_EQ] = ACTIONS(3099), - [anon_sym_GT_EQ] = ACTIONS(3099), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_RBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3099), - [anon_sym_DASH_DASH] = ACTIONS(3099), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3099), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3099), - [anon_sym_CARET] = ACTIONS(3099), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3099), - [anon_sym_LT_LT] = ACTIONS(3099), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3099), - [anon_sym_AMP_CARET] = ACTIONS(3099), - [anon_sym_AMP_AMP] = ACTIONS(3099), - [anon_sym_PIPE_PIPE] = ACTIONS(3099), - [anon_sym_or] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3099), - [anon_sym_POUND_LBRACK] = ACTIONS(3099), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3099), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3099), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3099), - [sym_rune_literal] = ACTIONS(3099), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3099), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3099), - [sym___single_quote] = ACTIONS(3099), - [sym___c_double_quote] = ACTIONS(3099), - [sym___c_single_quote] = ACTIONS(3099), - [sym___r_double_quote] = ACTIONS(3099), - [sym___r_single_quote] = ACTIONS(3099), - }, - [1309] = { - [sym_identifier] = ACTIONS(2915), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_as] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2913), - [anon_sym_COMMA] = ACTIONS(2913), - [anon_sym_LPAREN] = ACTIONS(2913), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2913), - [anon_sym_SLASH] = ACTIONS(2915), - [anon_sym_PERCENT] = ACTIONS(2913), - [anon_sym_LT] = ACTIONS(2915), - [anon_sym_GT] = ACTIONS(2915), - [anon_sym_EQ_EQ] = ACTIONS(2913), - [anon_sym_BANG_EQ] = ACTIONS(2913), - [anon_sym_LT_EQ] = ACTIONS(2913), - [anon_sym_GT_EQ] = ACTIONS(2913), - [anon_sym_LBRACK] = ACTIONS(2913), - [anon_sym_RBRACK] = ACTIONS(2913), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_PLUS_PLUS] = ACTIONS(2913), - [anon_sym_DASH_DASH] = ACTIONS(2913), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2913), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2913), - [anon_sym_CARET] = ACTIONS(2913), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2913), - [anon_sym_LT_LT] = ACTIONS(2913), - [anon_sym_GT_GT] = ACTIONS(2915), - [anon_sym_GT_GT_GT] = ACTIONS(2913), - [anon_sym_AMP_CARET] = ACTIONS(2913), - [anon_sym_AMP_AMP] = ACTIONS(2913), - [anon_sym_PIPE_PIPE] = ACTIONS(2913), - [anon_sym_or] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_QMARK_DOT] = ACTIONS(2913), - [anon_sym_POUND_LBRACK] = ACTIONS(2913), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_is] = ACTIONS(2915), - [anon_sym_BANGis] = ACTIONS(2913), - [anon_sym_in] = ACTIONS(2915), - [anon_sym_BANGin] = ACTIONS(2913), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2913), - [sym_rune_literal] = ACTIONS(2913), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2913), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2913), - [sym___single_quote] = ACTIONS(2913), - [sym___c_double_quote] = ACTIONS(2913), - [sym___c_single_quote] = ACTIONS(2913), - [sym___r_double_quote] = ACTIONS(2913), - [sym___r_single_quote] = ACTIONS(2913), - }, - [1310] = { - [sym_identifier] = ACTIONS(3105), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3103), - [anon_sym_COMMA] = ACTIONS(3103), - [anon_sym_LPAREN] = ACTIONS(3103), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3103), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3103), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3103), - [anon_sym_BANG_EQ] = ACTIONS(3103), - [anon_sym_LT_EQ] = ACTIONS(3103), - [anon_sym_GT_EQ] = ACTIONS(3103), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_RBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3103), - [anon_sym_DASH_DASH] = ACTIONS(3103), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3103), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3103), - [anon_sym_CARET] = ACTIONS(3103), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3103), - [anon_sym_LT_LT] = ACTIONS(3103), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3103), - [anon_sym_AMP_CARET] = ACTIONS(3103), - [anon_sym_AMP_AMP] = ACTIONS(3103), - [anon_sym_PIPE_PIPE] = ACTIONS(3103), - [anon_sym_or] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3103), - [anon_sym_POUND_LBRACK] = ACTIONS(3103), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3103), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3103), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3103), - [sym_rune_literal] = ACTIONS(3103), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3103), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3103), - [sym___single_quote] = ACTIONS(3103), - [sym___c_double_quote] = ACTIONS(3103), - [sym___c_single_quote] = ACTIONS(3103), - [sym___r_double_quote] = ACTIONS(3103), - [sym___r_single_quote] = ACTIONS(3103), - }, - [1311] = { - [sym_identifier] = ACTIONS(3129), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_as] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3127), - [anon_sym_COMMA] = ACTIONS(3127), - [anon_sym_LPAREN] = ACTIONS(3127), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3127), - [anon_sym_SLASH] = ACTIONS(3129), - [anon_sym_PERCENT] = ACTIONS(3127), - [anon_sym_LT] = ACTIONS(3129), - [anon_sym_GT] = ACTIONS(3129), - [anon_sym_EQ_EQ] = ACTIONS(3127), - [anon_sym_BANG_EQ] = ACTIONS(3127), - [anon_sym_LT_EQ] = ACTIONS(3127), - [anon_sym_GT_EQ] = ACTIONS(3127), - [anon_sym_LBRACK] = ACTIONS(3127), - [anon_sym_RBRACK] = ACTIONS(3127), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_PLUS_PLUS] = ACTIONS(3127), - [anon_sym_DASH_DASH] = ACTIONS(3127), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3127), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3127), - [anon_sym_CARET] = ACTIONS(3127), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3127), - [anon_sym_LT_LT] = ACTIONS(3127), - [anon_sym_GT_GT] = ACTIONS(3129), - [anon_sym_GT_GT_GT] = ACTIONS(3127), - [anon_sym_AMP_CARET] = ACTIONS(3127), - [anon_sym_AMP_AMP] = ACTIONS(3127), - [anon_sym_PIPE_PIPE] = ACTIONS(3127), - [anon_sym_or] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_QMARK_DOT] = ACTIONS(3127), - [anon_sym_POUND_LBRACK] = ACTIONS(3127), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_is] = ACTIONS(3129), - [anon_sym_BANGis] = ACTIONS(3127), - [anon_sym_in] = ACTIONS(3129), - [anon_sym_BANGin] = ACTIONS(3127), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3127), - [sym_rune_literal] = ACTIONS(3127), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3127), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3127), - [sym___single_quote] = ACTIONS(3127), - [sym___c_double_quote] = ACTIONS(3127), - [sym___c_single_quote] = ACTIONS(3127), - [sym___r_double_quote] = ACTIONS(3127), - [sym___r_single_quote] = ACTIONS(3127), - }, - [1312] = { - [sym_identifier] = ACTIONS(2919), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_as] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2917), - [anon_sym_COMMA] = ACTIONS(2917), - [anon_sym_LPAREN] = ACTIONS(2917), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2917), - [anon_sym_SLASH] = ACTIONS(2919), - [anon_sym_PERCENT] = ACTIONS(2917), - [anon_sym_LT] = ACTIONS(2919), - [anon_sym_GT] = ACTIONS(2919), - [anon_sym_EQ_EQ] = ACTIONS(2917), - [anon_sym_BANG_EQ] = ACTIONS(2917), - [anon_sym_LT_EQ] = ACTIONS(2917), - [anon_sym_GT_EQ] = ACTIONS(2917), - [anon_sym_LBRACK] = ACTIONS(2917), - [anon_sym_RBRACK] = ACTIONS(2917), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_PLUS_PLUS] = ACTIONS(2917), - [anon_sym_DASH_DASH] = ACTIONS(2917), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2917), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2917), - [anon_sym_CARET] = ACTIONS(2917), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2917), - [anon_sym_LT_LT] = ACTIONS(2917), - [anon_sym_GT_GT] = ACTIONS(2919), - [anon_sym_GT_GT_GT] = ACTIONS(2917), - [anon_sym_AMP_CARET] = ACTIONS(2917), - [anon_sym_AMP_AMP] = ACTIONS(2917), - [anon_sym_PIPE_PIPE] = ACTIONS(2917), - [anon_sym_or] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_QMARK_DOT] = ACTIONS(2917), - [anon_sym_POUND_LBRACK] = ACTIONS(2917), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_is] = ACTIONS(2919), - [anon_sym_BANGis] = ACTIONS(2917), - [anon_sym_in] = ACTIONS(2919), - [anon_sym_BANGin] = ACTIONS(2917), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2917), - [sym_rune_literal] = ACTIONS(2917), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2917), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2917), - [sym___single_quote] = ACTIONS(2917), - [sym___c_double_quote] = ACTIONS(2917), - [sym___c_single_quote] = ACTIONS(2917), - [sym___r_double_quote] = ACTIONS(2917), - [sym___r_single_quote] = ACTIONS(2917), - }, - [1313] = { - [sym_identifier] = ACTIONS(2935), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_as] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2933), - [anon_sym_COMMA] = ACTIONS(2933), - [anon_sym_LPAREN] = ACTIONS(2933), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2933), - [anon_sym_SLASH] = ACTIONS(2935), - [anon_sym_PERCENT] = ACTIONS(2933), - [anon_sym_LT] = ACTIONS(2935), - [anon_sym_GT] = ACTIONS(2935), - [anon_sym_EQ_EQ] = ACTIONS(2933), - [anon_sym_BANG_EQ] = ACTIONS(2933), - [anon_sym_LT_EQ] = ACTIONS(2933), - [anon_sym_GT_EQ] = ACTIONS(2933), - [anon_sym_LBRACK] = ACTIONS(2933), - [anon_sym_RBRACK] = ACTIONS(2933), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_PLUS_PLUS] = ACTIONS(2933), - [anon_sym_DASH_DASH] = ACTIONS(2933), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2933), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2933), - [anon_sym_CARET] = ACTIONS(2933), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2933), - [anon_sym_LT_LT] = ACTIONS(2933), - [anon_sym_GT_GT] = ACTIONS(2935), - [anon_sym_GT_GT_GT] = ACTIONS(2933), - [anon_sym_AMP_CARET] = ACTIONS(2933), - [anon_sym_AMP_AMP] = ACTIONS(2933), - [anon_sym_PIPE_PIPE] = ACTIONS(2933), - [anon_sym_or] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_QMARK_DOT] = ACTIONS(2933), - [anon_sym_POUND_LBRACK] = ACTIONS(2933), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_is] = ACTIONS(2935), - [anon_sym_BANGis] = ACTIONS(2933), - [anon_sym_in] = ACTIONS(2935), - [anon_sym_BANGin] = ACTIONS(2933), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2933), - [sym_rune_literal] = ACTIONS(2933), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2933), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2933), - [sym___single_quote] = ACTIONS(2933), - [sym___c_double_quote] = ACTIONS(2933), - [sym___c_single_quote] = ACTIONS(2933), - [sym___r_double_quote] = ACTIONS(2933), - [sym___r_single_quote] = ACTIONS(2933), - }, - [1314] = { - [sym_identifier] = ACTIONS(2939), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_as] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2937), - [anon_sym_COMMA] = ACTIONS(2937), - [anon_sym_LPAREN] = ACTIONS(2937), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2937), - [anon_sym_SLASH] = ACTIONS(2939), - [anon_sym_PERCENT] = ACTIONS(2937), - [anon_sym_LT] = ACTIONS(2939), - [anon_sym_GT] = ACTIONS(2939), - [anon_sym_EQ_EQ] = ACTIONS(2937), - [anon_sym_BANG_EQ] = ACTIONS(2937), - [anon_sym_LT_EQ] = ACTIONS(2937), - [anon_sym_GT_EQ] = ACTIONS(2937), - [anon_sym_LBRACK] = ACTIONS(2937), - [anon_sym_RBRACK] = ACTIONS(2937), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_PLUS_PLUS] = ACTIONS(2937), - [anon_sym_DASH_DASH] = ACTIONS(2937), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2937), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2937), - [anon_sym_CARET] = ACTIONS(2937), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2937), - [anon_sym_LT_LT] = ACTIONS(2937), - [anon_sym_GT_GT] = ACTIONS(2939), - [anon_sym_GT_GT_GT] = ACTIONS(2937), - [anon_sym_AMP_CARET] = ACTIONS(2937), - [anon_sym_AMP_AMP] = ACTIONS(2937), - [anon_sym_PIPE_PIPE] = ACTIONS(2937), - [anon_sym_or] = ACTIONS(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_QMARK_DOT] = ACTIONS(2937), - [anon_sym_POUND_LBRACK] = ACTIONS(2937), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_is] = ACTIONS(2939), - [anon_sym_BANGis] = ACTIONS(2937), - [anon_sym_in] = ACTIONS(2939), - [anon_sym_BANGin] = ACTIONS(2937), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2937), - [sym_rune_literal] = ACTIONS(2937), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2937), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2937), - [sym___single_quote] = ACTIONS(2937), - [sym___c_double_quote] = ACTIONS(2937), - [sym___c_single_quote] = ACTIONS(2937), - [sym___r_double_quote] = ACTIONS(2937), - [sym___r_single_quote] = ACTIONS(2937), - }, - [1315] = { - [sym_identifier] = ACTIONS(2993), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_as] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2991), - [anon_sym_COMMA] = ACTIONS(2991), - [anon_sym_LPAREN] = ACTIONS(2991), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2991), - [anon_sym_SLASH] = ACTIONS(2993), - [anon_sym_PERCENT] = ACTIONS(2991), - [anon_sym_LT] = ACTIONS(2993), - [anon_sym_GT] = ACTIONS(2993), - [anon_sym_EQ_EQ] = ACTIONS(2991), - [anon_sym_BANG_EQ] = ACTIONS(2991), - [anon_sym_LT_EQ] = ACTIONS(2991), - [anon_sym_GT_EQ] = ACTIONS(2991), - [anon_sym_LBRACK] = ACTIONS(2991), - [anon_sym_RBRACK] = ACTIONS(2991), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_PLUS_PLUS] = ACTIONS(2991), - [anon_sym_DASH_DASH] = ACTIONS(2991), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2991), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2991), - [anon_sym_CARET] = ACTIONS(2991), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2991), - [anon_sym_LT_LT] = ACTIONS(2991), - [anon_sym_GT_GT] = ACTIONS(2993), - [anon_sym_GT_GT_GT] = ACTIONS(2991), - [anon_sym_AMP_CARET] = ACTIONS(2991), - [anon_sym_AMP_AMP] = ACTIONS(2991), - [anon_sym_PIPE_PIPE] = ACTIONS(2991), - [anon_sym_or] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_QMARK_DOT] = ACTIONS(2991), - [anon_sym_POUND_LBRACK] = ACTIONS(2991), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_is] = ACTIONS(2993), - [anon_sym_BANGis] = ACTIONS(2991), - [anon_sym_in] = ACTIONS(2993), - [anon_sym_BANGin] = ACTIONS(2991), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2991), - [sym_rune_literal] = ACTIONS(2991), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2991), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2991), - [sym___single_quote] = ACTIONS(2991), - [sym___c_double_quote] = ACTIONS(2991), - [sym___c_single_quote] = ACTIONS(2991), - [sym___r_double_quote] = ACTIONS(2991), - [sym___r_single_quote] = ACTIONS(2991), - }, - [1316] = { - [sym_identifier] = ACTIONS(3009), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_as] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3007), - [anon_sym_COMMA] = ACTIONS(3007), - [anon_sym_LPAREN] = ACTIONS(3007), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3007), - [anon_sym_SLASH] = ACTIONS(3009), - [anon_sym_PERCENT] = ACTIONS(3007), - [anon_sym_LT] = ACTIONS(3009), - [anon_sym_GT] = ACTIONS(3009), - [anon_sym_EQ_EQ] = ACTIONS(3007), - [anon_sym_BANG_EQ] = ACTIONS(3007), - [anon_sym_LT_EQ] = ACTIONS(3007), - [anon_sym_GT_EQ] = ACTIONS(3007), - [anon_sym_LBRACK] = ACTIONS(3007), - [anon_sym_RBRACK] = ACTIONS(3007), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_PLUS_PLUS] = ACTIONS(3007), - [anon_sym_DASH_DASH] = ACTIONS(3007), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3007), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3007), - [anon_sym_CARET] = ACTIONS(3007), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3007), - [anon_sym_LT_LT] = ACTIONS(3007), - [anon_sym_GT_GT] = ACTIONS(3009), - [anon_sym_GT_GT_GT] = ACTIONS(3007), - [anon_sym_AMP_CARET] = ACTIONS(3007), - [anon_sym_AMP_AMP] = ACTIONS(3007), - [anon_sym_PIPE_PIPE] = ACTIONS(3007), - [anon_sym_or] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_QMARK_DOT] = ACTIONS(3007), - [anon_sym_POUND_LBRACK] = ACTIONS(3007), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_is] = ACTIONS(3009), - [anon_sym_BANGis] = ACTIONS(3007), - [anon_sym_in] = ACTIONS(3009), - [anon_sym_BANGin] = ACTIONS(3007), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3007), - [sym_rune_literal] = ACTIONS(3007), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3007), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3007), - [sym___single_quote] = ACTIONS(3007), - [sym___c_double_quote] = ACTIONS(3007), - [sym___c_single_quote] = ACTIONS(3007), - [sym___r_double_quote] = ACTIONS(3007), - [sym___r_single_quote] = ACTIONS(3007), - }, - [1317] = { - [sym_identifier] = ACTIONS(3173), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_as] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3171), - [anon_sym_COMMA] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3171), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3171), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_PERCENT] = ACTIONS(3171), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_GT] = ACTIONS(3173), - [anon_sym_EQ_EQ] = ACTIONS(3171), - [anon_sym_BANG_EQ] = ACTIONS(3171), - [anon_sym_LT_EQ] = ACTIONS(3171), - [anon_sym_GT_EQ] = ACTIONS(3171), - [anon_sym_LBRACK] = ACTIONS(3171), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3171), - [anon_sym_DASH_DASH] = ACTIONS(3171), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3171), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3171), - [anon_sym_CARET] = ACTIONS(3171), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3171), - [anon_sym_LT_LT] = ACTIONS(3171), - [anon_sym_GT_GT] = ACTIONS(3173), - [anon_sym_GT_GT_GT] = ACTIONS(3171), - [anon_sym_AMP_CARET] = ACTIONS(3171), - [anon_sym_AMP_AMP] = ACTIONS(3171), - [anon_sym_PIPE_PIPE] = ACTIONS(3171), - [anon_sym_or] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_QMARK_DOT] = ACTIONS(3171), - [anon_sym_POUND_LBRACK] = ACTIONS(3171), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_is] = ACTIONS(3173), - [anon_sym_BANGis] = ACTIONS(3171), - [anon_sym_in] = ACTIONS(3173), - [anon_sym_BANGin] = ACTIONS(3171), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3171), - [sym_rune_literal] = ACTIONS(3171), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3171), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3171), - [sym___single_quote] = ACTIONS(3171), - [sym___c_double_quote] = ACTIONS(3171), - [sym___c_single_quote] = ACTIONS(3171), - [sym___r_double_quote] = ACTIONS(3171), - [sym___r_single_quote] = ACTIONS(3171), - }, - [1318] = { - [sym_identifier] = ACTIONS(3049), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3049), - [anon_sym_as] = ACTIONS(3049), - [anon_sym_LBRACE] = ACTIONS(3047), - [anon_sym_COMMA] = ACTIONS(3047), - [anon_sym_LPAREN] = ACTIONS(3047), - [anon_sym_PIPE] = ACTIONS(3049), - [anon_sym_fn] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3049), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3047), - [anon_sym_SLASH] = ACTIONS(3049), - [anon_sym_PERCENT] = ACTIONS(3047), - [anon_sym_LT] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3047), - [anon_sym_BANG_EQ] = ACTIONS(3047), - [anon_sym_LT_EQ] = ACTIONS(3047), - [anon_sym_GT_EQ] = ACTIONS(3047), - [anon_sym_LBRACK] = ACTIONS(3047), - [anon_sym_RBRACK] = ACTIONS(3047), - [anon_sym_struct] = ACTIONS(3049), - [anon_sym_mut] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3047), - [anon_sym_DASH_DASH] = ACTIONS(3047), - [anon_sym_QMARK] = ACTIONS(3049), - [anon_sym_BANG] = ACTIONS(3049), - [anon_sym_go] = ACTIONS(3049), - [anon_sym_spawn] = ACTIONS(3049), - [anon_sym_json_DOTdecode] = ACTIONS(3047), - [anon_sym_LBRACK2] = ACTIONS(3049), - [anon_sym_TILDE] = ACTIONS(3047), - [anon_sym_CARET] = ACTIONS(3047), - [anon_sym_AMP] = ACTIONS(3049), - [anon_sym_LT_DASH] = ACTIONS(3047), - [anon_sym_LT_LT] = ACTIONS(3047), - [anon_sym_GT_GT] = ACTIONS(3049), - [anon_sym_GT_GT_GT] = ACTIONS(3047), - [anon_sym_AMP_CARET] = ACTIONS(3047), - [anon_sym_AMP_AMP] = ACTIONS(3047), - [anon_sym_PIPE_PIPE] = ACTIONS(3047), - [anon_sym_or] = ACTIONS(3049), - [sym_none] = ACTIONS(3049), - [sym_true] = ACTIONS(3049), - [sym_false] = ACTIONS(3049), - [sym_nil] = ACTIONS(3049), - [anon_sym_QMARK_DOT] = ACTIONS(3047), - [anon_sym_POUND_LBRACK] = ACTIONS(3047), - [anon_sym_if] = ACTIONS(3049), - [anon_sym_DOLLARif] = ACTIONS(3049), - [anon_sym_is] = ACTIONS(3049), - [anon_sym_BANGis] = ACTIONS(3047), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_BANGin] = ACTIONS(3047), - [anon_sym_match] = ACTIONS(3049), - [anon_sym_select] = ACTIONS(3049), - [anon_sym_lock] = ACTIONS(3049), - [anon_sym_rlock] = ACTIONS(3049), - [anon_sym_unsafe] = ACTIONS(3049), - [anon_sym_sql] = ACTIONS(3049), - [sym_int_literal] = ACTIONS(3049), - [sym_float_literal] = ACTIONS(3047), - [sym_rune_literal] = ACTIONS(3047), - [anon_sym_AT] = ACTIONS(3049), - [anon_sym_shared] = ACTIONS(3049), - [anon_sym_map_LBRACK] = ACTIONS(3047), - [anon_sym_chan] = ACTIONS(3049), - [anon_sym_thread] = ACTIONS(3049), - [anon_sym_atomic] = ACTIONS(3049), - [sym___double_quote] = ACTIONS(3047), - [sym___single_quote] = ACTIONS(3047), - [sym___c_double_quote] = ACTIONS(3047), - [sym___c_single_quote] = ACTIONS(3047), - [sym___r_double_quote] = ACTIONS(3047), - [sym___r_single_quote] = ACTIONS(3047), - }, - [1319] = { - [sym_identifier] = ACTIONS(3017), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_as] = ACTIONS(3017), - [anon_sym_LBRACE] = ACTIONS(3015), - [anon_sym_COMMA] = ACTIONS(3015), - [anon_sym_LPAREN] = ACTIONS(3015), - [anon_sym_PIPE] = ACTIONS(3017), - [anon_sym_fn] = ACTIONS(3017), - [anon_sym_PLUS] = ACTIONS(3017), - [anon_sym_DASH] = ACTIONS(3017), - [anon_sym_STAR] = ACTIONS(3015), - [anon_sym_SLASH] = ACTIONS(3017), - [anon_sym_PERCENT] = ACTIONS(3015), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(3017), - [anon_sym_EQ_EQ] = ACTIONS(3015), - [anon_sym_BANG_EQ] = ACTIONS(3015), - [anon_sym_LT_EQ] = ACTIONS(3015), - [anon_sym_GT_EQ] = ACTIONS(3015), - [anon_sym_LBRACK] = ACTIONS(3015), - [anon_sym_RBRACK] = ACTIONS(3015), - [anon_sym_struct] = ACTIONS(3017), - [anon_sym_mut] = ACTIONS(3017), - [anon_sym_PLUS_PLUS] = ACTIONS(3015), - [anon_sym_DASH_DASH] = ACTIONS(3015), - [anon_sym_QMARK] = ACTIONS(3017), - [anon_sym_BANG] = ACTIONS(3017), - [anon_sym_go] = ACTIONS(3017), - [anon_sym_spawn] = ACTIONS(3017), - [anon_sym_json_DOTdecode] = ACTIONS(3015), - [anon_sym_LBRACK2] = ACTIONS(3017), - [anon_sym_TILDE] = ACTIONS(3015), - [anon_sym_CARET] = ACTIONS(3015), - [anon_sym_AMP] = ACTIONS(3017), - [anon_sym_LT_DASH] = ACTIONS(3015), - [anon_sym_LT_LT] = ACTIONS(3015), - [anon_sym_GT_GT] = ACTIONS(3017), - [anon_sym_GT_GT_GT] = ACTIONS(3015), - [anon_sym_AMP_CARET] = ACTIONS(3015), - [anon_sym_AMP_AMP] = ACTIONS(3015), - [anon_sym_PIPE_PIPE] = ACTIONS(3015), - [anon_sym_or] = ACTIONS(3017), - [sym_none] = ACTIONS(3017), - [sym_true] = ACTIONS(3017), - [sym_false] = ACTIONS(3017), - [sym_nil] = ACTIONS(3017), - [anon_sym_QMARK_DOT] = ACTIONS(3015), - [anon_sym_POUND_LBRACK] = ACTIONS(3015), - [anon_sym_if] = ACTIONS(3017), - [anon_sym_DOLLARif] = ACTIONS(3017), - [anon_sym_is] = ACTIONS(3017), - [anon_sym_BANGis] = ACTIONS(3015), - [anon_sym_in] = ACTIONS(3017), - [anon_sym_BANGin] = ACTIONS(3015), - [anon_sym_match] = ACTIONS(3017), - [anon_sym_select] = ACTIONS(3017), - [anon_sym_lock] = ACTIONS(3017), - [anon_sym_rlock] = ACTIONS(3017), - [anon_sym_unsafe] = ACTIONS(3017), - [anon_sym_sql] = ACTIONS(3017), - [sym_int_literal] = ACTIONS(3017), - [sym_float_literal] = ACTIONS(3015), - [sym_rune_literal] = ACTIONS(3015), - [anon_sym_AT] = ACTIONS(3017), - [anon_sym_shared] = ACTIONS(3017), - [anon_sym_map_LBRACK] = ACTIONS(3015), - [anon_sym_chan] = ACTIONS(3017), - [anon_sym_thread] = ACTIONS(3017), - [anon_sym_atomic] = ACTIONS(3017), - [sym___double_quote] = ACTIONS(3015), - [sym___single_quote] = ACTIONS(3015), - [sym___c_double_quote] = ACTIONS(3015), - [sym___c_single_quote] = ACTIONS(3015), - [sym___r_double_quote] = ACTIONS(3015), - [sym___r_single_quote] = ACTIONS(3015), - }, - [1320] = { - [sym_identifier] = ACTIONS(3081), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_as] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3079), - [anon_sym_COMMA] = ACTIONS(3079), - [anon_sym_LPAREN] = ACTIONS(3079), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3079), - [anon_sym_SLASH] = ACTIONS(3081), - [anon_sym_PERCENT] = ACTIONS(3079), - [anon_sym_LT] = ACTIONS(3081), - [anon_sym_GT] = ACTIONS(3081), - [anon_sym_EQ_EQ] = ACTIONS(3079), - [anon_sym_BANG_EQ] = ACTIONS(3079), - [anon_sym_LT_EQ] = ACTIONS(3079), - [anon_sym_GT_EQ] = ACTIONS(3079), - [anon_sym_LBRACK] = ACTIONS(3079), - [anon_sym_RBRACK] = ACTIONS(3079), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_PLUS_PLUS] = ACTIONS(3079), - [anon_sym_DASH_DASH] = ACTIONS(3079), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3079), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3079), - [anon_sym_CARET] = ACTIONS(3079), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3079), - [anon_sym_LT_LT] = ACTIONS(3079), - [anon_sym_GT_GT] = ACTIONS(3081), - [anon_sym_GT_GT_GT] = ACTIONS(3079), - [anon_sym_AMP_CARET] = ACTIONS(3079), - [anon_sym_AMP_AMP] = ACTIONS(3079), - [anon_sym_PIPE_PIPE] = ACTIONS(3079), - [anon_sym_or] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_QMARK_DOT] = ACTIONS(3079), - [anon_sym_POUND_LBRACK] = ACTIONS(3079), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_is] = ACTIONS(3081), - [anon_sym_BANGis] = ACTIONS(3079), - [anon_sym_in] = ACTIONS(3081), - [anon_sym_BANGin] = ACTIONS(3079), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3079), - [sym_rune_literal] = ACTIONS(3079), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3079), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3079), - [sym___single_quote] = ACTIONS(3079), - [sym___c_double_quote] = ACTIONS(3079), - [sym___c_single_quote] = ACTIONS(3079), - [sym___r_double_quote] = ACTIONS(3079), - [sym___r_single_quote] = ACTIONS(3079), - }, - [1321] = { - [sym_identifier] = ACTIONS(3121), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_as] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3119), - [anon_sym_COMMA] = ACTIONS(3119), - [anon_sym_LPAREN] = ACTIONS(3119), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_SLASH] = ACTIONS(3121), - [anon_sym_PERCENT] = ACTIONS(3119), - [anon_sym_LT] = ACTIONS(3121), - [anon_sym_GT] = ACTIONS(3121), - [anon_sym_EQ_EQ] = ACTIONS(3119), - [anon_sym_BANG_EQ] = ACTIONS(3119), - [anon_sym_LT_EQ] = ACTIONS(3119), - [anon_sym_GT_EQ] = ACTIONS(3119), - [anon_sym_LBRACK] = ACTIONS(3119), - [anon_sym_RBRACK] = ACTIONS(3119), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_PLUS_PLUS] = ACTIONS(3119), - [anon_sym_DASH_DASH] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3119), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3119), - [anon_sym_CARET] = ACTIONS(3119), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3119), - [anon_sym_LT_LT] = ACTIONS(3119), - [anon_sym_GT_GT] = ACTIONS(3121), - [anon_sym_GT_GT_GT] = ACTIONS(3119), - [anon_sym_AMP_CARET] = ACTIONS(3119), - [anon_sym_AMP_AMP] = ACTIONS(3119), - [anon_sym_PIPE_PIPE] = ACTIONS(3119), - [anon_sym_or] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_QMARK_DOT] = ACTIONS(3119), - [anon_sym_POUND_LBRACK] = ACTIONS(3119), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_is] = ACTIONS(3121), - [anon_sym_BANGis] = ACTIONS(3119), - [anon_sym_in] = ACTIONS(3121), - [anon_sym_BANGin] = ACTIONS(3119), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3119), - [sym_rune_literal] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3119), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3119), - [sym___single_quote] = ACTIONS(3119), - [sym___c_double_quote] = ACTIONS(3119), - [sym___c_single_quote] = ACTIONS(3119), - [sym___r_double_quote] = ACTIONS(3119), - [sym___r_single_quote] = ACTIONS(3119), - }, - [1322] = { - [sym_identifier] = ACTIONS(3113), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_as] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3111), - [anon_sym_COMMA] = ACTIONS(3111), - [anon_sym_LPAREN] = ACTIONS(3111), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3111), - [anon_sym_SLASH] = ACTIONS(3113), - [anon_sym_PERCENT] = ACTIONS(3111), - [anon_sym_LT] = ACTIONS(3113), - [anon_sym_GT] = ACTIONS(3113), - [anon_sym_EQ_EQ] = ACTIONS(3111), - [anon_sym_BANG_EQ] = ACTIONS(3111), - [anon_sym_LT_EQ] = ACTIONS(3111), - [anon_sym_GT_EQ] = ACTIONS(3111), - [anon_sym_LBRACK] = ACTIONS(3111), - [anon_sym_RBRACK] = ACTIONS(3111), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_PLUS_PLUS] = ACTIONS(3111), - [anon_sym_DASH_DASH] = ACTIONS(3111), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3111), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3111), - [anon_sym_CARET] = ACTIONS(3111), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3111), - [anon_sym_LT_LT] = ACTIONS(3111), - [anon_sym_GT_GT] = ACTIONS(3113), - [anon_sym_GT_GT_GT] = ACTIONS(3111), - [anon_sym_AMP_CARET] = ACTIONS(3111), - [anon_sym_AMP_AMP] = ACTIONS(3111), - [anon_sym_PIPE_PIPE] = ACTIONS(3111), - [anon_sym_or] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_QMARK_DOT] = ACTIONS(3111), - [anon_sym_POUND_LBRACK] = ACTIONS(3111), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_is] = ACTIONS(3113), - [anon_sym_BANGis] = ACTIONS(3111), - [anon_sym_in] = ACTIONS(3113), - [anon_sym_BANGin] = ACTIONS(3111), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3111), - [sym_rune_literal] = ACTIONS(3111), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3111), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3111), - [sym___single_quote] = ACTIONS(3111), - [sym___c_double_quote] = ACTIONS(3111), - [sym___c_single_quote] = ACTIONS(3111), - [sym___r_double_quote] = ACTIONS(3111), - [sym___r_single_quote] = ACTIONS(3111), - }, - [1323] = { - [sym_identifier] = ACTIONS(3057), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3057), - [anon_sym_as] = ACTIONS(3057), - [anon_sym_LBRACE] = ACTIONS(3055), - [anon_sym_COMMA] = ACTIONS(3055), - [anon_sym_LPAREN] = ACTIONS(3055), - [anon_sym_PIPE] = ACTIONS(3057), - [anon_sym_fn] = ACTIONS(3057), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_DASH] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3055), - [anon_sym_SLASH] = ACTIONS(3057), - [anon_sym_PERCENT] = ACTIONS(3055), - [anon_sym_LT] = ACTIONS(3057), - [anon_sym_GT] = ACTIONS(3057), - [anon_sym_EQ_EQ] = ACTIONS(3055), - [anon_sym_BANG_EQ] = ACTIONS(3055), - [anon_sym_LT_EQ] = ACTIONS(3055), - [anon_sym_GT_EQ] = ACTIONS(3055), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_RBRACK] = ACTIONS(3055), - [anon_sym_struct] = ACTIONS(3057), - [anon_sym_mut] = ACTIONS(3057), - [anon_sym_PLUS_PLUS] = ACTIONS(3055), - [anon_sym_DASH_DASH] = ACTIONS(3055), - [anon_sym_QMARK] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(3057), - [anon_sym_go] = ACTIONS(3057), - [anon_sym_spawn] = ACTIONS(3057), - [anon_sym_json_DOTdecode] = ACTIONS(3055), - [anon_sym_LBRACK2] = ACTIONS(3057), - [anon_sym_TILDE] = ACTIONS(3055), - [anon_sym_CARET] = ACTIONS(3055), - [anon_sym_AMP] = ACTIONS(3057), - [anon_sym_LT_DASH] = ACTIONS(3055), - [anon_sym_LT_LT] = ACTIONS(3055), - [anon_sym_GT_GT] = ACTIONS(3057), - [anon_sym_GT_GT_GT] = ACTIONS(3055), - [anon_sym_AMP_CARET] = ACTIONS(3055), - [anon_sym_AMP_AMP] = ACTIONS(3055), - [anon_sym_PIPE_PIPE] = ACTIONS(3055), - [anon_sym_or] = ACTIONS(3057), - [sym_none] = ACTIONS(3057), - [sym_true] = ACTIONS(3057), - [sym_false] = ACTIONS(3057), - [sym_nil] = ACTIONS(3057), - [anon_sym_QMARK_DOT] = ACTIONS(3055), - [anon_sym_POUND_LBRACK] = ACTIONS(3055), - [anon_sym_if] = ACTIONS(3057), - [anon_sym_DOLLARif] = ACTIONS(3057), - [anon_sym_is] = ACTIONS(3057), - [anon_sym_BANGis] = ACTIONS(3055), - [anon_sym_in] = ACTIONS(3057), - [anon_sym_BANGin] = ACTIONS(3055), - [anon_sym_match] = ACTIONS(3057), - [anon_sym_select] = ACTIONS(3057), - [anon_sym_lock] = ACTIONS(3057), - [anon_sym_rlock] = ACTIONS(3057), - [anon_sym_unsafe] = ACTIONS(3057), - [anon_sym_sql] = ACTIONS(3057), - [sym_int_literal] = ACTIONS(3057), - [sym_float_literal] = ACTIONS(3055), - [sym_rune_literal] = ACTIONS(3055), - [anon_sym_AT] = ACTIONS(3057), - [anon_sym_shared] = ACTIONS(3057), - [anon_sym_map_LBRACK] = ACTIONS(3055), - [anon_sym_chan] = ACTIONS(3057), - [anon_sym_thread] = ACTIONS(3057), - [anon_sym_atomic] = ACTIONS(3057), - [sym___double_quote] = ACTIONS(3055), - [sym___single_quote] = ACTIONS(3055), - [sym___c_double_quote] = ACTIONS(3055), - [sym___c_single_quote] = ACTIONS(3055), - [sym___r_double_quote] = ACTIONS(3055), - [sym___r_single_quote] = ACTIONS(3055), - }, - [1324] = { - [sym_identifier] = ACTIONS(3061), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3061), - [anon_sym_as] = ACTIONS(3061), - [anon_sym_LBRACE] = ACTIONS(3059), - [anon_sym_COMMA] = ACTIONS(3059), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_PIPE] = ACTIONS(3061), - [anon_sym_fn] = ACTIONS(3061), - [anon_sym_PLUS] = ACTIONS(3061), - [anon_sym_DASH] = ACTIONS(3061), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_SLASH] = ACTIONS(3061), - [anon_sym_PERCENT] = ACTIONS(3059), - [anon_sym_LT] = ACTIONS(3061), - [anon_sym_GT] = ACTIONS(3061), - [anon_sym_EQ_EQ] = ACTIONS(3059), - [anon_sym_BANG_EQ] = ACTIONS(3059), - [anon_sym_LT_EQ] = ACTIONS(3059), - [anon_sym_GT_EQ] = ACTIONS(3059), - [anon_sym_LBRACK] = ACTIONS(3059), - [anon_sym_RBRACK] = ACTIONS(3059), - [anon_sym_struct] = ACTIONS(3061), - [anon_sym_mut] = ACTIONS(3061), - [anon_sym_PLUS_PLUS] = ACTIONS(3059), - [anon_sym_DASH_DASH] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_BANG] = ACTIONS(3061), - [anon_sym_go] = ACTIONS(3061), - [anon_sym_spawn] = ACTIONS(3061), - [anon_sym_json_DOTdecode] = ACTIONS(3059), - [anon_sym_LBRACK2] = ACTIONS(3061), - [anon_sym_TILDE] = ACTIONS(3059), - [anon_sym_CARET] = ACTIONS(3059), - [anon_sym_AMP] = ACTIONS(3061), - [anon_sym_LT_DASH] = ACTIONS(3059), - [anon_sym_LT_LT] = ACTIONS(3059), - [anon_sym_GT_GT] = ACTIONS(3061), - [anon_sym_GT_GT_GT] = ACTIONS(3059), - [anon_sym_AMP_CARET] = ACTIONS(3059), - [anon_sym_AMP_AMP] = ACTIONS(3059), - [anon_sym_PIPE_PIPE] = ACTIONS(3059), - [anon_sym_or] = ACTIONS(3061), - [sym_none] = ACTIONS(3061), - [sym_true] = ACTIONS(3061), - [sym_false] = ACTIONS(3061), - [sym_nil] = ACTIONS(3061), - [anon_sym_QMARK_DOT] = ACTIONS(3059), - [anon_sym_POUND_LBRACK] = ACTIONS(3059), - [anon_sym_if] = ACTIONS(3061), - [anon_sym_DOLLARif] = ACTIONS(3061), - [anon_sym_is] = ACTIONS(3061), - [anon_sym_BANGis] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(3061), - [anon_sym_BANGin] = ACTIONS(3059), - [anon_sym_match] = ACTIONS(3061), - [anon_sym_select] = ACTIONS(3061), - [anon_sym_lock] = ACTIONS(3061), - [anon_sym_rlock] = ACTIONS(3061), - [anon_sym_unsafe] = ACTIONS(3061), - [anon_sym_sql] = ACTIONS(3061), - [sym_int_literal] = ACTIONS(3061), - [sym_float_literal] = ACTIONS(3059), - [sym_rune_literal] = ACTIONS(3059), - [anon_sym_AT] = ACTIONS(3061), - [anon_sym_shared] = ACTIONS(3061), - [anon_sym_map_LBRACK] = ACTIONS(3059), - [anon_sym_chan] = ACTIONS(3061), - [anon_sym_thread] = ACTIONS(3061), - [anon_sym_atomic] = ACTIONS(3061), - [sym___double_quote] = ACTIONS(3059), - [sym___single_quote] = ACTIONS(3059), - [sym___c_double_quote] = ACTIONS(3059), - [sym___c_single_quote] = ACTIONS(3059), - [sym___r_double_quote] = ACTIONS(3059), - [sym___r_single_quote] = ACTIONS(3059), - }, - [1325] = { - [sym_identifier] = ACTIONS(3197), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3197), - [anon_sym_as] = ACTIONS(3197), - [anon_sym_LBRACE] = ACTIONS(3195), - [anon_sym_COMMA] = ACTIONS(3195), - [anon_sym_LPAREN] = ACTIONS(3195), - [anon_sym_PIPE] = ACTIONS(3197), - [anon_sym_fn] = ACTIONS(3197), - [anon_sym_PLUS] = ACTIONS(3197), - [anon_sym_DASH] = ACTIONS(3197), - [anon_sym_STAR] = ACTIONS(3195), - [anon_sym_SLASH] = ACTIONS(3197), - [anon_sym_PERCENT] = ACTIONS(3195), - [anon_sym_LT] = ACTIONS(3197), - [anon_sym_GT] = ACTIONS(3197), - [anon_sym_EQ_EQ] = ACTIONS(3195), - [anon_sym_BANG_EQ] = ACTIONS(3195), - [anon_sym_LT_EQ] = ACTIONS(3195), - [anon_sym_GT_EQ] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3195), - [anon_sym_RBRACK] = ACTIONS(3195), - [anon_sym_struct] = ACTIONS(3197), - [anon_sym_mut] = ACTIONS(3197), - [anon_sym_PLUS_PLUS] = ACTIONS(3195), - [anon_sym_DASH_DASH] = ACTIONS(3195), - [anon_sym_QMARK] = ACTIONS(3197), - [anon_sym_BANG] = ACTIONS(3197), - [anon_sym_go] = ACTIONS(3197), - [anon_sym_spawn] = ACTIONS(3197), - [anon_sym_json_DOTdecode] = ACTIONS(3195), - [anon_sym_LBRACK2] = ACTIONS(3197), - [anon_sym_TILDE] = ACTIONS(3195), - [anon_sym_CARET] = ACTIONS(3195), - [anon_sym_AMP] = ACTIONS(3197), - [anon_sym_LT_DASH] = ACTIONS(3195), - [anon_sym_LT_LT] = ACTIONS(3195), - [anon_sym_GT_GT] = ACTIONS(3197), - [anon_sym_GT_GT_GT] = ACTIONS(3195), - [anon_sym_AMP_CARET] = ACTIONS(3195), - [anon_sym_AMP_AMP] = ACTIONS(3195), - [anon_sym_PIPE_PIPE] = ACTIONS(3195), - [anon_sym_or] = ACTIONS(3197), - [sym_none] = ACTIONS(3197), - [sym_true] = ACTIONS(3197), - [sym_false] = ACTIONS(3197), - [sym_nil] = ACTIONS(3197), - [anon_sym_QMARK_DOT] = ACTIONS(3195), - [anon_sym_POUND_LBRACK] = ACTIONS(3195), - [anon_sym_if] = ACTIONS(3197), - [anon_sym_DOLLARif] = ACTIONS(3197), - [anon_sym_is] = ACTIONS(3197), - [anon_sym_BANGis] = ACTIONS(3195), - [anon_sym_in] = ACTIONS(3197), - [anon_sym_BANGin] = ACTIONS(3195), - [anon_sym_match] = ACTIONS(3197), - [anon_sym_select] = ACTIONS(3197), - [anon_sym_lock] = ACTIONS(3197), - [anon_sym_rlock] = ACTIONS(3197), - [anon_sym_unsafe] = ACTIONS(3197), - [anon_sym_sql] = ACTIONS(3197), - [sym_int_literal] = ACTIONS(3197), - [sym_float_literal] = ACTIONS(3195), - [sym_rune_literal] = ACTIONS(3195), - [anon_sym_AT] = ACTIONS(3197), - [anon_sym_shared] = ACTIONS(3197), - [anon_sym_map_LBRACK] = ACTIONS(3195), - [anon_sym_chan] = ACTIONS(3197), - [anon_sym_thread] = ACTIONS(3197), - [anon_sym_atomic] = ACTIONS(3197), - [sym___double_quote] = ACTIONS(3195), - [sym___single_quote] = ACTIONS(3195), - [sym___c_double_quote] = ACTIONS(3195), - [sym___c_single_quote] = ACTIONS(3195), - [sym___r_double_quote] = ACTIONS(3195), - [sym___r_single_quote] = ACTIONS(3195), - }, - [1326] = { - [sym_identifier] = ACTIONS(3157), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3157), - [anon_sym_as] = ACTIONS(3157), - [anon_sym_LBRACE] = ACTIONS(3155), - [anon_sym_COMMA] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3155), - [anon_sym_PIPE] = ACTIONS(3157), - [anon_sym_fn] = ACTIONS(3157), - [anon_sym_PLUS] = ACTIONS(3157), - [anon_sym_DASH] = ACTIONS(3157), - [anon_sym_STAR] = ACTIONS(3155), - [anon_sym_SLASH] = ACTIONS(3157), - [anon_sym_PERCENT] = ACTIONS(3155), - [anon_sym_LT] = ACTIONS(3157), - [anon_sym_GT] = ACTIONS(3157), - [anon_sym_EQ_EQ] = ACTIONS(3155), - [anon_sym_BANG_EQ] = ACTIONS(3155), - [anon_sym_LT_EQ] = ACTIONS(3155), - [anon_sym_GT_EQ] = ACTIONS(3155), - [anon_sym_LBRACK] = ACTIONS(3155), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_struct] = ACTIONS(3157), - [anon_sym_mut] = ACTIONS(3157), - [anon_sym_PLUS_PLUS] = ACTIONS(3155), - [anon_sym_DASH_DASH] = ACTIONS(3155), - [anon_sym_QMARK] = ACTIONS(3157), - [anon_sym_BANG] = ACTIONS(3157), - [anon_sym_go] = ACTIONS(3157), - [anon_sym_spawn] = ACTIONS(3157), - [anon_sym_json_DOTdecode] = ACTIONS(3155), - [anon_sym_LBRACK2] = ACTIONS(3157), - [anon_sym_TILDE] = ACTIONS(3155), - [anon_sym_CARET] = ACTIONS(3155), - [anon_sym_AMP] = ACTIONS(3157), - [anon_sym_LT_DASH] = ACTIONS(3155), - [anon_sym_LT_LT] = ACTIONS(3155), - [anon_sym_GT_GT] = ACTIONS(3157), - [anon_sym_GT_GT_GT] = ACTIONS(3155), - [anon_sym_AMP_CARET] = ACTIONS(3155), - [anon_sym_AMP_AMP] = ACTIONS(3155), - [anon_sym_PIPE_PIPE] = ACTIONS(3155), - [anon_sym_or] = ACTIONS(3157), - [sym_none] = ACTIONS(3157), - [sym_true] = ACTIONS(3157), - [sym_false] = ACTIONS(3157), - [sym_nil] = ACTIONS(3157), - [anon_sym_QMARK_DOT] = ACTIONS(3155), - [anon_sym_POUND_LBRACK] = ACTIONS(3155), - [anon_sym_if] = ACTIONS(3157), - [anon_sym_DOLLARif] = ACTIONS(3157), - [anon_sym_is] = ACTIONS(3157), - [anon_sym_BANGis] = ACTIONS(3155), - [anon_sym_in] = ACTIONS(3157), - [anon_sym_BANGin] = ACTIONS(3155), - [anon_sym_match] = ACTIONS(3157), - [anon_sym_select] = ACTIONS(3157), - [anon_sym_lock] = ACTIONS(3157), - [anon_sym_rlock] = ACTIONS(3157), - [anon_sym_unsafe] = ACTIONS(3157), - [anon_sym_sql] = ACTIONS(3157), - [sym_int_literal] = ACTIONS(3157), - [sym_float_literal] = ACTIONS(3155), - [sym_rune_literal] = ACTIONS(3155), - [anon_sym_AT] = ACTIONS(3157), - [anon_sym_shared] = ACTIONS(3157), - [anon_sym_map_LBRACK] = ACTIONS(3155), - [anon_sym_chan] = ACTIONS(3157), - [anon_sym_thread] = ACTIONS(3157), - [anon_sym_atomic] = ACTIONS(3157), - [sym___double_quote] = ACTIONS(3155), - [sym___single_quote] = ACTIONS(3155), - [sym___c_double_quote] = ACTIONS(3155), - [sym___c_single_quote] = ACTIONS(3155), - [sym___r_double_quote] = ACTIONS(3155), - [sym___r_single_quote] = ACTIONS(3155), - }, - [1327] = { - [sym_identifier] = ACTIONS(3109), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_as] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_COMMA] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3109), - [anon_sym_PERCENT] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3109), - [anon_sym_GT] = ACTIONS(3109), - [anon_sym_EQ_EQ] = ACTIONS(3107), - [anon_sym_BANG_EQ] = ACTIONS(3107), - [anon_sym_LT_EQ] = ACTIONS(3107), - [anon_sym_GT_EQ] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_RBRACK] = ACTIONS(3107), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3107), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_CARET] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3107), - [anon_sym_LT_LT] = ACTIONS(3107), - [anon_sym_GT_GT] = ACTIONS(3109), - [anon_sym_GT_GT_GT] = ACTIONS(3107), - [anon_sym_AMP_CARET] = ACTIONS(3107), - [anon_sym_AMP_AMP] = ACTIONS(3107), - [anon_sym_PIPE_PIPE] = ACTIONS(3107), - [anon_sym_or] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_QMARK_DOT] = ACTIONS(3107), - [anon_sym_POUND_LBRACK] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_is] = ACTIONS(3109), - [anon_sym_BANGis] = ACTIONS(3107), - [anon_sym_in] = ACTIONS(3109), - [anon_sym_BANGin] = ACTIONS(3107), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3107), - [sym_rune_literal] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3107), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3107), - [sym___single_quote] = ACTIONS(3107), - [sym___c_double_quote] = ACTIONS(3107), - [sym___c_single_quote] = ACTIONS(3107), - [sym___r_double_quote] = ACTIONS(3107), - [sym___r_single_quote] = ACTIONS(3107), - }, - [1328] = { - [sym_identifier] = ACTIONS(3133), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3131), - [anon_sym_COMMA] = ACTIONS(3131), - [anon_sym_LPAREN] = ACTIONS(3131), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3131), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3131), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3131), - [anon_sym_BANG_EQ] = ACTIONS(3131), - [anon_sym_LT_EQ] = ACTIONS(3131), - [anon_sym_GT_EQ] = ACTIONS(3131), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_RBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3131), - [anon_sym_DASH_DASH] = ACTIONS(3131), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3131), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3131), - [anon_sym_CARET] = ACTIONS(3131), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3131), - [anon_sym_LT_LT] = ACTIONS(3131), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3131), - [anon_sym_AMP_CARET] = ACTIONS(3131), - [anon_sym_AMP_AMP] = ACTIONS(3131), - [anon_sym_PIPE_PIPE] = ACTIONS(3131), - [anon_sym_or] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3131), - [anon_sym_POUND_LBRACK] = ACTIONS(3131), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3131), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3131), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3131), - [sym_rune_literal] = ACTIONS(3131), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3131), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3131), - [sym___single_quote] = ACTIONS(3131), - [sym___c_double_quote] = ACTIONS(3131), - [sym___c_single_quote] = ACTIONS(3131), - [sym___r_double_quote] = ACTIONS(3131), - [sym___r_single_quote] = ACTIONS(3131), - }, - [1329] = { - [sym_identifier] = ACTIONS(3137), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_COMMA] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3135), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3135), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3135), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3135), - [anon_sym_BANG_EQ] = ACTIONS(3135), - [anon_sym_LT_EQ] = ACTIONS(3135), - [anon_sym_GT_EQ] = ACTIONS(3135), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3135), - [anon_sym_DASH_DASH] = ACTIONS(3135), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3135), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3135), - [anon_sym_CARET] = ACTIONS(3135), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3135), - [anon_sym_LT_LT] = ACTIONS(3135), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3135), - [anon_sym_AMP_CARET] = ACTIONS(3135), - [anon_sym_AMP_AMP] = ACTIONS(3135), - [anon_sym_PIPE_PIPE] = ACTIONS(3135), - [anon_sym_or] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3135), - [anon_sym_POUND_LBRACK] = ACTIONS(3135), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3135), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3135), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3135), - [sym_rune_literal] = ACTIONS(3135), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3135), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3135), - [sym___single_quote] = ACTIONS(3135), - [sym___c_double_quote] = ACTIONS(3135), - [sym___c_single_quote] = ACTIONS(3135), - [sym___r_double_quote] = ACTIONS(3135), - [sym___r_single_quote] = ACTIONS(3135), - }, - [1330] = { - [sym_identifier] = ACTIONS(3165), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_as] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_COMMA] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3165), - [anon_sym_PERCENT] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3165), - [anon_sym_GT] = ACTIONS(3165), - [anon_sym_EQ_EQ] = ACTIONS(3163), - [anon_sym_BANG_EQ] = ACTIONS(3163), - [anon_sym_LT_EQ] = ACTIONS(3163), - [anon_sym_GT_EQ] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3163), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_CARET] = ACTIONS(3163), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3163), - [anon_sym_LT_LT] = ACTIONS(3163), - [anon_sym_GT_GT] = ACTIONS(3165), - [anon_sym_GT_GT_GT] = ACTIONS(3163), - [anon_sym_AMP_CARET] = ACTIONS(3163), - [anon_sym_AMP_AMP] = ACTIONS(3163), - [anon_sym_PIPE_PIPE] = ACTIONS(3163), - [anon_sym_or] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_QMARK_DOT] = ACTIONS(3163), - [anon_sym_POUND_LBRACK] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_is] = ACTIONS(3165), - [anon_sym_BANGis] = ACTIONS(3163), - [anon_sym_in] = ACTIONS(3165), - [anon_sym_BANGin] = ACTIONS(3163), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3163), - [sym_rune_literal] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3163), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3163), - [sym___single_quote] = ACTIONS(3163), - [sym___c_double_quote] = ACTIONS(3163), - [sym___c_single_quote] = ACTIONS(3163), - [sym___r_double_quote] = ACTIONS(3163), - [sym___r_single_quote] = ACTIONS(3163), - }, - [1331] = { - [sym_identifier] = ACTIONS(3097), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_as] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(3095), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3095), - [anon_sym_SLASH] = ACTIONS(3097), - [anon_sym_PERCENT] = ACTIONS(3095), - [anon_sym_LT] = ACTIONS(3097), - [anon_sym_GT] = ACTIONS(3097), - [anon_sym_EQ_EQ] = ACTIONS(3095), - [anon_sym_BANG_EQ] = ACTIONS(3095), - [anon_sym_LT_EQ] = ACTIONS(3095), - [anon_sym_GT_EQ] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3095), - [anon_sym_RBRACK] = ACTIONS(3095), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_PLUS_PLUS] = ACTIONS(3095), - [anon_sym_DASH_DASH] = ACTIONS(3095), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3095), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3095), - [anon_sym_CARET] = ACTIONS(3095), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3095), - [anon_sym_LT_LT] = ACTIONS(3095), - [anon_sym_GT_GT] = ACTIONS(3097), - [anon_sym_GT_GT_GT] = ACTIONS(3095), - [anon_sym_AMP_CARET] = ACTIONS(3095), - [anon_sym_AMP_AMP] = ACTIONS(3095), - [anon_sym_PIPE_PIPE] = ACTIONS(3095), - [anon_sym_or] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_QMARK_DOT] = ACTIONS(3095), - [anon_sym_POUND_LBRACK] = ACTIONS(3095), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_is] = ACTIONS(3097), - [anon_sym_BANGis] = ACTIONS(3095), - [anon_sym_in] = ACTIONS(3097), - [anon_sym_BANGin] = ACTIONS(3095), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3095), - [sym_rune_literal] = ACTIONS(3095), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3095), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3095), - [sym___single_quote] = ACTIONS(3095), - [sym___c_double_quote] = ACTIONS(3095), - [sym___c_single_quote] = ACTIONS(3095), - [sym___r_double_quote] = ACTIONS(3095), - [sym___r_single_quote] = ACTIONS(3095), - }, - [1332] = { - [sym_identifier] = ACTIONS(2971), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2973), - [anon_sym_as] = ACTIONS(2973), - [anon_sym_LBRACE] = ACTIONS(2969), - [anon_sym_COMMA] = ACTIONS(2969), - [anon_sym_LPAREN] = ACTIONS(2976), - [anon_sym_PIPE] = ACTIONS(2973), - [anon_sym_fn] = ACTIONS(2971), - [anon_sym_PLUS] = ACTIONS(2973), - [anon_sym_DASH] = ACTIONS(2973), - [anon_sym_STAR] = ACTIONS(2976), - [anon_sym_SLASH] = ACTIONS(2973), - [anon_sym_PERCENT] = ACTIONS(2976), - [anon_sym_LT] = ACTIONS(2973), - [anon_sym_GT] = ACTIONS(2973), - [anon_sym_EQ_EQ] = ACTIONS(2976), - [anon_sym_BANG_EQ] = ACTIONS(2976), - [anon_sym_LT_EQ] = ACTIONS(2976), - [anon_sym_GT_EQ] = ACTIONS(2976), - [anon_sym_LBRACK] = ACTIONS(2976), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_struct] = ACTIONS(2971), - [anon_sym_mut] = ACTIONS(2971), - [anon_sym_PLUS_PLUS] = ACTIONS(2976), - [anon_sym_DASH_DASH] = ACTIONS(2976), - [anon_sym_QMARK] = ACTIONS(2973), - [anon_sym_BANG] = ACTIONS(2973), - [anon_sym_go] = ACTIONS(2971), - [anon_sym_spawn] = ACTIONS(2971), - [anon_sym_json_DOTdecode] = ACTIONS(2969), - [anon_sym_LBRACK2] = ACTIONS(2973), - [anon_sym_TILDE] = ACTIONS(2969), - [anon_sym_CARET] = ACTIONS(2976), - [anon_sym_AMP] = ACTIONS(2973), - [anon_sym_LT_DASH] = ACTIONS(2969), - [anon_sym_LT_LT] = ACTIONS(2976), - [anon_sym_GT_GT] = ACTIONS(2973), - [anon_sym_GT_GT_GT] = ACTIONS(2976), - [anon_sym_AMP_CARET] = ACTIONS(2976), - [anon_sym_AMP_AMP] = ACTIONS(2976), - [anon_sym_PIPE_PIPE] = ACTIONS(2976), - [anon_sym_or] = ACTIONS(2973), - [sym_none] = ACTIONS(2971), - [sym_true] = ACTIONS(2971), - [sym_false] = ACTIONS(2971), - [sym_nil] = ACTIONS(2971), - [anon_sym_QMARK_DOT] = ACTIONS(2976), - [anon_sym_POUND_LBRACK] = ACTIONS(2976), - [anon_sym_if] = ACTIONS(2971), - [anon_sym_DOLLARif] = ACTIONS(2971), - [anon_sym_is] = ACTIONS(2973), - [anon_sym_BANGis] = ACTIONS(2976), - [anon_sym_in] = ACTIONS(2973), - [anon_sym_BANGin] = ACTIONS(2976), - [anon_sym_match] = ACTIONS(2971), - [anon_sym_select] = ACTIONS(2971), - [anon_sym_lock] = ACTIONS(2971), - [anon_sym_rlock] = ACTIONS(2971), - [anon_sym_unsafe] = ACTIONS(2971), - [anon_sym_sql] = ACTIONS(2971), - [sym_int_literal] = ACTIONS(2971), - [sym_float_literal] = ACTIONS(2969), - [sym_rune_literal] = ACTIONS(2969), - [anon_sym_AT] = ACTIONS(2971), - [anon_sym_shared] = ACTIONS(2971), - [anon_sym_map_LBRACK] = ACTIONS(2969), - [anon_sym_chan] = ACTIONS(2971), - [anon_sym_thread] = ACTIONS(2971), - [anon_sym_atomic] = ACTIONS(2971), - [sym___double_quote] = ACTIONS(2969), - [sym___single_quote] = ACTIONS(2969), - [sym___c_double_quote] = ACTIONS(2969), - [sym___c_single_quote] = ACTIONS(2969), - [sym___r_double_quote] = ACTIONS(2969), - [sym___r_single_quote] = ACTIONS(2969), - }, - [1333] = { - [sym_identifier] = ACTIONS(3169), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_as] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_COMMA] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3169), - [anon_sym_PERCENT] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3169), - [anon_sym_GT] = ACTIONS(3169), - [anon_sym_EQ_EQ] = ACTIONS(3167), - [anon_sym_BANG_EQ] = ACTIONS(3167), - [anon_sym_LT_EQ] = ACTIONS(3167), - [anon_sym_GT_EQ] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_RBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3167), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_CARET] = ACTIONS(3167), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3167), - [anon_sym_LT_LT] = ACTIONS(3167), - [anon_sym_GT_GT] = ACTIONS(3169), - [anon_sym_GT_GT_GT] = ACTIONS(3167), - [anon_sym_AMP_CARET] = ACTIONS(3167), - [anon_sym_AMP_AMP] = ACTIONS(3167), - [anon_sym_PIPE_PIPE] = ACTIONS(3167), - [anon_sym_or] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_QMARK_DOT] = ACTIONS(3167), - [anon_sym_POUND_LBRACK] = ACTIONS(3167), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_is] = ACTIONS(3169), - [anon_sym_BANGis] = ACTIONS(3167), - [anon_sym_in] = ACTIONS(3169), - [anon_sym_BANGin] = ACTIONS(3167), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3167), - [sym_rune_literal] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3167), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3167), - [sym___single_quote] = ACTIONS(3167), - [sym___c_double_quote] = ACTIONS(3167), - [sym___c_single_quote] = ACTIONS(3167), - [sym___r_double_quote] = ACTIONS(3167), - [sym___r_single_quote] = ACTIONS(3167), - }, - [1334] = { - [sym_identifier] = ACTIONS(3053), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3053), - [anon_sym_as] = ACTIONS(3053), - [anon_sym_LBRACE] = ACTIONS(3051), - [anon_sym_COMMA] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3051), - [anon_sym_PIPE] = ACTIONS(3053), - [anon_sym_fn] = ACTIONS(3053), - [anon_sym_PLUS] = ACTIONS(3053), - [anon_sym_DASH] = ACTIONS(3053), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3053), - [anon_sym_PERCENT] = ACTIONS(3051), - [anon_sym_LT] = ACTIONS(3053), - [anon_sym_GT] = ACTIONS(3053), - [anon_sym_EQ_EQ] = ACTIONS(3051), - [anon_sym_BANG_EQ] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3051), - [anon_sym_LBRACK] = ACTIONS(3051), - [anon_sym_RBRACK] = ACTIONS(3051), - [anon_sym_struct] = ACTIONS(3053), - [anon_sym_mut] = ACTIONS(3053), - [anon_sym_PLUS_PLUS] = ACTIONS(3051), - [anon_sym_DASH_DASH] = ACTIONS(3051), - [anon_sym_QMARK] = ACTIONS(3053), - [anon_sym_BANG] = ACTIONS(3053), - [anon_sym_go] = ACTIONS(3053), - [anon_sym_spawn] = ACTIONS(3053), - [anon_sym_json_DOTdecode] = ACTIONS(3051), - [anon_sym_LBRACK2] = ACTIONS(3053), - [anon_sym_TILDE] = ACTIONS(3051), - [anon_sym_CARET] = ACTIONS(3051), - [anon_sym_AMP] = ACTIONS(3053), - [anon_sym_LT_DASH] = ACTIONS(3051), - [anon_sym_LT_LT] = ACTIONS(3051), - [anon_sym_GT_GT] = ACTIONS(3053), - [anon_sym_GT_GT_GT] = ACTIONS(3051), - [anon_sym_AMP_CARET] = ACTIONS(3051), - [anon_sym_AMP_AMP] = ACTIONS(3051), - [anon_sym_PIPE_PIPE] = ACTIONS(3051), - [anon_sym_or] = ACTIONS(3053), - [sym_none] = ACTIONS(3053), - [sym_true] = ACTIONS(3053), - [sym_false] = ACTIONS(3053), - [sym_nil] = ACTIONS(3053), - [anon_sym_QMARK_DOT] = ACTIONS(3051), - [anon_sym_POUND_LBRACK] = ACTIONS(3051), - [anon_sym_if] = ACTIONS(3053), - [anon_sym_DOLLARif] = ACTIONS(3053), - [anon_sym_is] = ACTIONS(3053), - [anon_sym_BANGis] = ACTIONS(3051), - [anon_sym_in] = ACTIONS(3053), - [anon_sym_BANGin] = ACTIONS(3051), - [anon_sym_match] = ACTIONS(3053), - [anon_sym_select] = ACTIONS(3053), - [anon_sym_lock] = ACTIONS(3053), - [anon_sym_rlock] = ACTIONS(3053), - [anon_sym_unsafe] = ACTIONS(3053), - [anon_sym_sql] = ACTIONS(3053), - [sym_int_literal] = ACTIONS(3053), - [sym_float_literal] = ACTIONS(3051), - [sym_rune_literal] = ACTIONS(3051), - [anon_sym_AT] = ACTIONS(3053), - [anon_sym_shared] = ACTIONS(3053), - [anon_sym_map_LBRACK] = ACTIONS(3051), - [anon_sym_chan] = ACTIONS(3053), - [anon_sym_thread] = ACTIONS(3053), - [anon_sym_atomic] = ACTIONS(3053), - [sym___double_quote] = ACTIONS(3051), - [sym___single_quote] = ACTIONS(3051), - [sym___c_double_quote] = ACTIONS(3051), - [sym___c_single_quote] = ACTIONS(3051), - [sym___r_double_quote] = ACTIONS(3051), - [sym___r_single_quote] = ACTIONS(3051), - }, - [1335] = { - [sym_identifier] = ACTIONS(3065), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3065), - [anon_sym_as] = ACTIONS(3065), - [anon_sym_LBRACE] = ACTIONS(3063), - [anon_sym_COMMA] = ACTIONS(3063), - [anon_sym_LPAREN] = ACTIONS(3063), - [anon_sym_PIPE] = ACTIONS(3065), - [anon_sym_fn] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3065), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3063), - [anon_sym_SLASH] = ACTIONS(3065), - [anon_sym_PERCENT] = ACTIONS(3063), - [anon_sym_LT] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3063), - [anon_sym_BANG_EQ] = ACTIONS(3063), - [anon_sym_LT_EQ] = ACTIONS(3063), - [anon_sym_GT_EQ] = ACTIONS(3063), - [anon_sym_LBRACK] = ACTIONS(3063), - [anon_sym_RBRACK] = ACTIONS(3063), - [anon_sym_struct] = ACTIONS(3065), - [anon_sym_mut] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3063), - [anon_sym_DASH_DASH] = ACTIONS(3063), - [anon_sym_QMARK] = ACTIONS(3065), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_go] = ACTIONS(3065), - [anon_sym_spawn] = ACTIONS(3065), - [anon_sym_json_DOTdecode] = ACTIONS(3063), - [anon_sym_LBRACK2] = ACTIONS(3065), - [anon_sym_TILDE] = ACTIONS(3063), - [anon_sym_CARET] = ACTIONS(3063), - [anon_sym_AMP] = ACTIONS(3065), - [anon_sym_LT_DASH] = ACTIONS(3063), - [anon_sym_LT_LT] = ACTIONS(3063), - [anon_sym_GT_GT] = ACTIONS(3065), - [anon_sym_GT_GT_GT] = ACTIONS(3063), - [anon_sym_AMP_CARET] = ACTIONS(3063), - [anon_sym_AMP_AMP] = ACTIONS(3063), - [anon_sym_PIPE_PIPE] = ACTIONS(3063), - [anon_sym_or] = ACTIONS(3065), - [sym_none] = ACTIONS(3065), - [sym_true] = ACTIONS(3065), - [sym_false] = ACTIONS(3065), - [sym_nil] = ACTIONS(3065), - [anon_sym_QMARK_DOT] = ACTIONS(3063), - [anon_sym_POUND_LBRACK] = ACTIONS(3063), - [anon_sym_if] = ACTIONS(3065), - [anon_sym_DOLLARif] = ACTIONS(3065), - [anon_sym_is] = ACTIONS(3065), - [anon_sym_BANGis] = ACTIONS(3063), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_BANGin] = ACTIONS(3063), - [anon_sym_match] = ACTIONS(3065), - [anon_sym_select] = ACTIONS(3065), - [anon_sym_lock] = ACTIONS(3065), - [anon_sym_rlock] = ACTIONS(3065), - [anon_sym_unsafe] = ACTIONS(3065), - [anon_sym_sql] = ACTIONS(3065), - [sym_int_literal] = ACTIONS(3065), - [sym_float_literal] = ACTIONS(3063), - [sym_rune_literal] = ACTIONS(3063), - [anon_sym_AT] = ACTIONS(3065), - [anon_sym_shared] = ACTIONS(3065), - [anon_sym_map_LBRACK] = ACTIONS(3063), - [anon_sym_chan] = ACTIONS(3065), - [anon_sym_thread] = ACTIONS(3065), - [anon_sym_atomic] = ACTIONS(3065), - [sym___double_quote] = ACTIONS(3063), - [sym___single_quote] = ACTIONS(3063), - [sym___c_double_quote] = ACTIONS(3063), - [sym___c_single_quote] = ACTIONS(3063), - [sym___r_double_quote] = ACTIONS(3063), - [sym___r_single_quote] = ACTIONS(3063), - }, - [1336] = { - [sym_identifier] = ACTIONS(3149), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3149), - [anon_sym_as] = ACTIONS(3149), - [anon_sym_LBRACE] = ACTIONS(3147), - [anon_sym_COMMA] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3147), - [anon_sym_PIPE] = ACTIONS(3149), - [anon_sym_fn] = ACTIONS(3149), - [anon_sym_PLUS] = ACTIONS(3149), - [anon_sym_DASH] = ACTIONS(3149), - [anon_sym_STAR] = ACTIONS(3147), - [anon_sym_SLASH] = ACTIONS(3149), - [anon_sym_PERCENT] = ACTIONS(3147), - [anon_sym_LT] = ACTIONS(3149), - [anon_sym_GT] = ACTIONS(3149), - [anon_sym_EQ_EQ] = ACTIONS(3147), - [anon_sym_BANG_EQ] = ACTIONS(3147), - [anon_sym_LT_EQ] = ACTIONS(3147), - [anon_sym_GT_EQ] = ACTIONS(3147), - [anon_sym_LBRACK] = ACTIONS(3147), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_struct] = ACTIONS(3149), - [anon_sym_mut] = ACTIONS(3149), - [anon_sym_PLUS_PLUS] = ACTIONS(3147), - [anon_sym_DASH_DASH] = ACTIONS(3147), - [anon_sym_QMARK] = ACTIONS(3149), - [anon_sym_BANG] = ACTIONS(3149), - [anon_sym_go] = ACTIONS(3149), - [anon_sym_spawn] = ACTIONS(3149), - [anon_sym_json_DOTdecode] = ACTIONS(3147), - [anon_sym_LBRACK2] = ACTIONS(3149), - [anon_sym_TILDE] = ACTIONS(3147), - [anon_sym_CARET] = ACTIONS(3147), - [anon_sym_AMP] = ACTIONS(3149), - [anon_sym_LT_DASH] = ACTIONS(3147), - [anon_sym_LT_LT] = ACTIONS(3147), - [anon_sym_GT_GT] = ACTIONS(3149), - [anon_sym_GT_GT_GT] = ACTIONS(3147), - [anon_sym_AMP_CARET] = ACTIONS(3147), - [anon_sym_AMP_AMP] = ACTIONS(3147), - [anon_sym_PIPE_PIPE] = ACTIONS(3147), - [anon_sym_or] = ACTIONS(3149), - [sym_none] = ACTIONS(3149), - [sym_true] = ACTIONS(3149), - [sym_false] = ACTIONS(3149), - [sym_nil] = ACTIONS(3149), - [anon_sym_QMARK_DOT] = ACTIONS(3147), - [anon_sym_POUND_LBRACK] = ACTIONS(3147), - [anon_sym_if] = ACTIONS(3149), - [anon_sym_DOLLARif] = ACTIONS(3149), - [anon_sym_is] = ACTIONS(3149), - [anon_sym_BANGis] = ACTIONS(3147), - [anon_sym_in] = ACTIONS(3149), - [anon_sym_BANGin] = ACTIONS(3147), - [anon_sym_match] = ACTIONS(3149), - [anon_sym_select] = ACTIONS(3149), - [anon_sym_lock] = ACTIONS(3149), - [anon_sym_rlock] = ACTIONS(3149), - [anon_sym_unsafe] = ACTIONS(3149), - [anon_sym_sql] = ACTIONS(3149), - [sym_int_literal] = ACTIONS(3149), - [sym_float_literal] = ACTIONS(3147), - [sym_rune_literal] = ACTIONS(3147), - [anon_sym_AT] = ACTIONS(3149), - [anon_sym_shared] = ACTIONS(3149), - [anon_sym_map_LBRACK] = ACTIONS(3147), - [anon_sym_chan] = ACTIONS(3149), - [anon_sym_thread] = ACTIONS(3149), - [anon_sym_atomic] = ACTIONS(3149), - [sym___double_quote] = ACTIONS(3147), - [sym___single_quote] = ACTIONS(3147), - [sym___c_double_quote] = ACTIONS(3147), - [sym___c_single_quote] = ACTIONS(3147), - [sym___r_double_quote] = ACTIONS(3147), - [sym___r_single_quote] = ACTIONS(3147), - }, - [1337] = { - [sym_identifier] = ACTIONS(3181), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3181), - [anon_sym_as] = ACTIONS(3181), - [anon_sym_LBRACE] = ACTIONS(3179), - [anon_sym_COMMA] = ACTIONS(3179), - [anon_sym_LPAREN] = ACTIONS(3179), - [anon_sym_PIPE] = ACTIONS(3181), - [anon_sym_fn] = ACTIONS(3181), - [anon_sym_PLUS] = ACTIONS(3181), - [anon_sym_DASH] = ACTIONS(3181), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3181), - [anon_sym_PERCENT] = ACTIONS(3179), - [anon_sym_LT] = ACTIONS(3181), - [anon_sym_GT] = ACTIONS(3181), - [anon_sym_EQ_EQ] = ACTIONS(3179), - [anon_sym_BANG_EQ] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3179), - [anon_sym_LBRACK] = ACTIONS(3179), - [anon_sym_RBRACK] = ACTIONS(3179), - [anon_sym_struct] = ACTIONS(3181), - [anon_sym_mut] = ACTIONS(3181), - [anon_sym_PLUS_PLUS] = ACTIONS(3179), - [anon_sym_DASH_DASH] = ACTIONS(3179), - [anon_sym_QMARK] = ACTIONS(3181), - [anon_sym_BANG] = ACTIONS(3181), - [anon_sym_go] = ACTIONS(3181), - [anon_sym_spawn] = ACTIONS(3181), - [anon_sym_json_DOTdecode] = ACTIONS(3179), - [anon_sym_LBRACK2] = ACTIONS(3181), - [anon_sym_TILDE] = ACTIONS(3179), - [anon_sym_CARET] = ACTIONS(3179), - [anon_sym_AMP] = ACTIONS(3181), - [anon_sym_LT_DASH] = ACTIONS(3179), - [anon_sym_LT_LT] = ACTIONS(3179), - [anon_sym_GT_GT] = ACTIONS(3181), - [anon_sym_GT_GT_GT] = ACTIONS(3179), - [anon_sym_AMP_CARET] = ACTIONS(3179), - [anon_sym_AMP_AMP] = ACTIONS(3179), - [anon_sym_PIPE_PIPE] = ACTIONS(3179), - [anon_sym_or] = ACTIONS(3181), - [sym_none] = ACTIONS(3181), - [sym_true] = ACTIONS(3181), - [sym_false] = ACTIONS(3181), - [sym_nil] = ACTIONS(3181), - [anon_sym_QMARK_DOT] = ACTIONS(3179), - [anon_sym_POUND_LBRACK] = ACTIONS(3179), - [anon_sym_if] = ACTIONS(3181), - [anon_sym_DOLLARif] = ACTIONS(3181), - [anon_sym_is] = ACTIONS(3181), - [anon_sym_BANGis] = ACTIONS(3179), - [anon_sym_in] = ACTIONS(3181), - [anon_sym_BANGin] = ACTIONS(3179), - [anon_sym_match] = ACTIONS(3181), - [anon_sym_select] = ACTIONS(3181), - [anon_sym_lock] = ACTIONS(3181), - [anon_sym_rlock] = ACTIONS(3181), - [anon_sym_unsafe] = ACTIONS(3181), - [anon_sym_sql] = ACTIONS(3181), - [sym_int_literal] = ACTIONS(3181), - [sym_float_literal] = ACTIONS(3179), - [sym_rune_literal] = ACTIONS(3179), - [anon_sym_AT] = ACTIONS(3181), - [anon_sym_shared] = ACTIONS(3181), - [anon_sym_map_LBRACK] = ACTIONS(3179), - [anon_sym_chan] = ACTIONS(3181), - [anon_sym_thread] = ACTIONS(3181), - [anon_sym_atomic] = ACTIONS(3181), - [sym___double_quote] = ACTIONS(3179), - [sym___single_quote] = ACTIONS(3179), - [sym___c_double_quote] = ACTIONS(3179), - [sym___c_single_quote] = ACTIONS(3179), - [sym___r_double_quote] = ACTIONS(3179), - [sym___r_single_quote] = ACTIONS(3179), - }, - [1338] = { - [sym_identifier] = ACTIONS(2949), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2951), - [anon_sym_as] = ACTIONS(2951), - [anon_sym_LBRACE] = ACTIONS(2947), - [anon_sym_COMMA] = ACTIONS(2947), - [anon_sym_LPAREN] = ACTIONS(2954), - [anon_sym_PIPE] = ACTIONS(2951), - [anon_sym_fn] = ACTIONS(2949), - [anon_sym_PLUS] = ACTIONS(2951), - [anon_sym_DASH] = ACTIONS(2951), - [anon_sym_STAR] = ACTIONS(2954), - [anon_sym_SLASH] = ACTIONS(2951), - [anon_sym_PERCENT] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(2951), - [anon_sym_GT] = ACTIONS(2951), - [anon_sym_EQ_EQ] = ACTIONS(2954), - [anon_sym_BANG_EQ] = ACTIONS(2954), - [anon_sym_LT_EQ] = ACTIONS(2954), - [anon_sym_GT_EQ] = ACTIONS(2954), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_RBRACK] = ACTIONS(2947), - [anon_sym_struct] = ACTIONS(2949), - [anon_sym_mut] = ACTIONS(2949), - [anon_sym_PLUS_PLUS] = ACTIONS(2954), - [anon_sym_DASH_DASH] = ACTIONS(2954), - [anon_sym_QMARK] = ACTIONS(2951), - [anon_sym_BANG] = ACTIONS(2951), - [anon_sym_go] = ACTIONS(2949), - [anon_sym_spawn] = ACTIONS(2949), - [anon_sym_json_DOTdecode] = ACTIONS(2947), - [anon_sym_LBRACK2] = ACTIONS(2951), - [anon_sym_TILDE] = ACTIONS(2947), - [anon_sym_CARET] = ACTIONS(2954), - [anon_sym_AMP] = ACTIONS(2951), - [anon_sym_LT_DASH] = ACTIONS(2947), - [anon_sym_LT_LT] = ACTIONS(2954), - [anon_sym_GT_GT] = ACTIONS(2951), - [anon_sym_GT_GT_GT] = ACTIONS(2954), - [anon_sym_AMP_CARET] = ACTIONS(2954), - [anon_sym_AMP_AMP] = ACTIONS(2954), - [anon_sym_PIPE_PIPE] = ACTIONS(2954), - [anon_sym_or] = ACTIONS(2951), - [sym_none] = ACTIONS(2949), - [sym_true] = ACTIONS(2949), - [sym_false] = ACTIONS(2949), - [sym_nil] = ACTIONS(2949), - [anon_sym_QMARK_DOT] = ACTIONS(2954), - [anon_sym_POUND_LBRACK] = ACTIONS(2954), - [anon_sym_if] = ACTIONS(2949), - [anon_sym_DOLLARif] = ACTIONS(2949), - [anon_sym_is] = ACTIONS(2951), - [anon_sym_BANGis] = ACTIONS(2954), - [anon_sym_in] = ACTIONS(2951), - [anon_sym_BANGin] = ACTIONS(2954), - [anon_sym_match] = ACTIONS(2949), - [anon_sym_select] = ACTIONS(2949), - [anon_sym_lock] = ACTIONS(2949), - [anon_sym_rlock] = ACTIONS(2949), - [anon_sym_unsafe] = ACTIONS(2949), - [anon_sym_sql] = ACTIONS(2949), - [sym_int_literal] = ACTIONS(2949), - [sym_float_literal] = ACTIONS(2947), - [sym_rune_literal] = ACTIONS(2947), - [anon_sym_AT] = ACTIONS(2949), - [anon_sym_shared] = ACTIONS(2949), - [anon_sym_map_LBRACK] = ACTIONS(2947), - [anon_sym_chan] = ACTIONS(2949), - [anon_sym_thread] = ACTIONS(2949), - [anon_sym_atomic] = ACTIONS(2949), - [sym___double_quote] = ACTIONS(2947), - [sym___single_quote] = ACTIONS(2947), - [sym___c_double_quote] = ACTIONS(2947), - [sym___c_single_quote] = ACTIONS(2947), - [sym___r_double_quote] = ACTIONS(2947), - [sym___r_single_quote] = ACTIONS(2947), - }, - [1339] = { - [sym_identifier] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_RBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3027), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3027), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3027), - [anon_sym_AMP_CARET] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_PIPE_PIPE] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3027), - [anon_sym_POUND_LBRACK] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3027), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3027), - [sym_rune_literal] = ACTIONS(3027), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3027), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3027), - [sym___single_quote] = ACTIONS(3027), - [sym___c_double_quote] = ACTIONS(3027), - [sym___c_single_quote] = ACTIONS(3027), - [sym___r_double_quote] = ACTIONS(3027), - [sym___r_single_quote] = ACTIONS(3027), - }, - [1340] = { - [sym_identifier] = ACTIONS(2880), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2880), - [anon_sym_as] = ACTIONS(2880), - [anon_sym_LBRACE] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(2878), - [anon_sym_LPAREN] = ACTIONS(2878), - [anon_sym_PIPE] = ACTIONS(2880), - [anon_sym_fn] = ACTIONS(2880), - [anon_sym_PLUS] = ACTIONS(2880), - [anon_sym_DASH] = ACTIONS(2880), - [anon_sym_STAR] = ACTIONS(2878), - [anon_sym_SLASH] = ACTIONS(2880), - [anon_sym_PERCENT] = ACTIONS(2878), - [anon_sym_LT] = ACTIONS(2880), - [anon_sym_GT] = ACTIONS(2880), - [anon_sym_EQ_EQ] = ACTIONS(2878), - [anon_sym_BANG_EQ] = ACTIONS(2878), - [anon_sym_LT_EQ] = ACTIONS(2878), - [anon_sym_GT_EQ] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(2878), - [anon_sym_RBRACK] = ACTIONS(2878), - [anon_sym_struct] = ACTIONS(2880), - [anon_sym_mut] = ACTIONS(2880), - [anon_sym_PLUS_PLUS] = ACTIONS(2878), - [anon_sym_DASH_DASH] = ACTIONS(2878), - [anon_sym_QMARK] = ACTIONS(2880), - [anon_sym_BANG] = ACTIONS(2880), - [anon_sym_go] = ACTIONS(2880), - [anon_sym_spawn] = ACTIONS(2880), - [anon_sym_json_DOTdecode] = ACTIONS(2878), - [anon_sym_LBRACK2] = ACTIONS(2880), - [anon_sym_TILDE] = ACTIONS(2878), - [anon_sym_CARET] = ACTIONS(2878), - [anon_sym_AMP] = ACTIONS(2880), - [anon_sym_LT_DASH] = ACTIONS(2878), - [anon_sym_LT_LT] = ACTIONS(2878), - [anon_sym_GT_GT] = ACTIONS(2880), - [anon_sym_GT_GT_GT] = ACTIONS(2878), - [anon_sym_AMP_CARET] = ACTIONS(2878), - [anon_sym_AMP_AMP] = ACTIONS(2878), - [anon_sym_PIPE_PIPE] = ACTIONS(2878), - [anon_sym_or] = ACTIONS(2880), - [sym_none] = ACTIONS(2880), - [sym_true] = ACTIONS(2880), - [sym_false] = ACTIONS(2880), - [sym_nil] = ACTIONS(2880), - [anon_sym_QMARK_DOT] = ACTIONS(2878), - [anon_sym_POUND_LBRACK] = ACTIONS(2878), - [anon_sym_if] = ACTIONS(2880), - [anon_sym_DOLLARif] = ACTIONS(2880), - [anon_sym_is] = ACTIONS(2880), - [anon_sym_BANGis] = ACTIONS(2878), - [anon_sym_in] = ACTIONS(2880), - [anon_sym_BANGin] = ACTIONS(2878), - [anon_sym_match] = ACTIONS(2880), - [anon_sym_select] = ACTIONS(2880), - [anon_sym_lock] = ACTIONS(2880), - [anon_sym_rlock] = ACTIONS(2880), - [anon_sym_unsafe] = ACTIONS(2880), - [anon_sym_sql] = ACTIONS(2880), - [sym_int_literal] = ACTIONS(2880), - [sym_float_literal] = ACTIONS(2878), - [sym_rune_literal] = ACTIONS(2878), - [anon_sym_AT] = ACTIONS(2880), - [anon_sym_shared] = ACTIONS(2880), - [anon_sym_map_LBRACK] = ACTIONS(2878), - [anon_sym_chan] = ACTIONS(2880), - [anon_sym_thread] = ACTIONS(2880), - [anon_sym_atomic] = ACTIONS(2880), - [sym___double_quote] = ACTIONS(2878), - [sym___single_quote] = ACTIONS(2878), - [sym___c_double_quote] = ACTIONS(2878), - [sym___c_single_quote] = ACTIONS(2878), - [sym___r_double_quote] = ACTIONS(2878), - [sym___r_single_quote] = ACTIONS(2878), - }, - [1341] = { - [sym_identifier] = ACTIONS(2895), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2895), - [anon_sym_as] = ACTIONS(2895), - [anon_sym_LBRACE] = ACTIONS(2893), - [anon_sym_COMMA] = ACTIONS(2893), - [anon_sym_LPAREN] = ACTIONS(2893), - [anon_sym_PIPE] = ACTIONS(2895), - [anon_sym_fn] = ACTIONS(2895), - [anon_sym_PLUS] = ACTIONS(2895), - [anon_sym_DASH] = ACTIONS(2895), - [anon_sym_STAR] = ACTIONS(2893), - [anon_sym_SLASH] = ACTIONS(2895), - [anon_sym_PERCENT] = ACTIONS(2893), - [anon_sym_LT] = ACTIONS(2895), - [anon_sym_GT] = ACTIONS(2895), - [anon_sym_EQ_EQ] = ACTIONS(2893), - [anon_sym_BANG_EQ] = ACTIONS(2893), - [anon_sym_LT_EQ] = ACTIONS(2893), - [anon_sym_GT_EQ] = ACTIONS(2893), - [anon_sym_LBRACK] = ACTIONS(2893), - [anon_sym_RBRACK] = ACTIONS(2893), - [anon_sym_struct] = ACTIONS(2895), - [anon_sym_mut] = ACTIONS(2895), - [anon_sym_PLUS_PLUS] = ACTIONS(2893), - [anon_sym_DASH_DASH] = ACTIONS(2893), - [anon_sym_QMARK] = ACTIONS(2895), - [anon_sym_BANG] = ACTIONS(2895), - [anon_sym_go] = ACTIONS(2895), - [anon_sym_spawn] = ACTIONS(2895), - [anon_sym_json_DOTdecode] = ACTIONS(2893), - [anon_sym_LBRACK2] = ACTIONS(2895), - [anon_sym_TILDE] = ACTIONS(2893), - [anon_sym_CARET] = ACTIONS(2893), - [anon_sym_AMP] = ACTIONS(2895), - [anon_sym_LT_DASH] = ACTIONS(2893), - [anon_sym_LT_LT] = ACTIONS(2893), - [anon_sym_GT_GT] = ACTIONS(2895), - [anon_sym_GT_GT_GT] = ACTIONS(2893), - [anon_sym_AMP_CARET] = ACTIONS(2893), - [anon_sym_AMP_AMP] = ACTIONS(2893), - [anon_sym_PIPE_PIPE] = ACTIONS(2893), - [anon_sym_or] = ACTIONS(2895), - [sym_none] = ACTIONS(2895), - [sym_true] = ACTIONS(2895), - [sym_false] = ACTIONS(2895), - [sym_nil] = ACTIONS(2895), - [anon_sym_QMARK_DOT] = ACTIONS(2893), - [anon_sym_POUND_LBRACK] = ACTIONS(2893), - [anon_sym_if] = ACTIONS(2895), - [anon_sym_DOLLARif] = ACTIONS(2895), - [anon_sym_is] = ACTIONS(2895), - [anon_sym_BANGis] = ACTIONS(2893), - [anon_sym_in] = ACTIONS(2895), - [anon_sym_BANGin] = ACTIONS(2893), - [anon_sym_match] = ACTIONS(2895), - [anon_sym_select] = ACTIONS(2895), - [anon_sym_lock] = ACTIONS(2895), - [anon_sym_rlock] = ACTIONS(2895), - [anon_sym_unsafe] = ACTIONS(2895), - [anon_sym_sql] = ACTIONS(2895), - [sym_int_literal] = ACTIONS(2895), - [sym_float_literal] = ACTIONS(2893), - [sym_rune_literal] = ACTIONS(2893), - [anon_sym_AT] = ACTIONS(2895), - [anon_sym_shared] = ACTIONS(2895), - [anon_sym_map_LBRACK] = ACTIONS(2893), - [anon_sym_chan] = ACTIONS(2895), - [anon_sym_thread] = ACTIONS(2895), - [anon_sym_atomic] = ACTIONS(2895), - [sym___double_quote] = ACTIONS(2893), - [sym___single_quote] = ACTIONS(2893), - [sym___c_double_quote] = ACTIONS(2893), - [sym___c_single_quote] = ACTIONS(2893), - [sym___r_double_quote] = ACTIONS(2893), - [sym___r_single_quote] = ACTIONS(2893), - }, - [1342] = { - [sym_identifier] = ACTIONS(3185), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3185), - [anon_sym_as] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3183), - [anon_sym_COMMA] = ACTIONS(3183), - [anon_sym_LPAREN] = ACTIONS(3183), - [anon_sym_PIPE] = ACTIONS(3185), - [anon_sym_fn] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_STAR] = ACTIONS(3183), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_PERCENT] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT_EQ] = ACTIONS(3183), - [anon_sym_LBRACK] = ACTIONS(3183), - [anon_sym_RBRACK] = ACTIONS(3183), - [anon_sym_struct] = ACTIONS(3185), - [anon_sym_mut] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_DASH_DASH] = ACTIONS(3183), - [anon_sym_QMARK] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_go] = ACTIONS(3185), - [anon_sym_spawn] = ACTIONS(3185), - [anon_sym_json_DOTdecode] = ACTIONS(3183), - [anon_sym_LBRACK2] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3183), - [anon_sym_CARET] = ACTIONS(3183), - [anon_sym_AMP] = ACTIONS(3185), - [anon_sym_LT_DASH] = ACTIONS(3183), - [anon_sym_LT_LT] = ACTIONS(3183), - [anon_sym_GT_GT] = ACTIONS(3185), - [anon_sym_GT_GT_GT] = ACTIONS(3183), - [anon_sym_AMP_CARET] = ACTIONS(3183), - [anon_sym_AMP_AMP] = ACTIONS(3183), - [anon_sym_PIPE_PIPE] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3185), - [sym_none] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_nil] = ACTIONS(3185), - [anon_sym_QMARK_DOT] = ACTIONS(3183), - [anon_sym_POUND_LBRACK] = ACTIONS(3183), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_DOLLARif] = ACTIONS(3185), - [anon_sym_is] = ACTIONS(3185), - [anon_sym_BANGis] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3185), - [anon_sym_BANGin] = ACTIONS(3183), - [anon_sym_match] = ACTIONS(3185), - [anon_sym_select] = ACTIONS(3185), - [anon_sym_lock] = ACTIONS(3185), - [anon_sym_rlock] = ACTIONS(3185), - [anon_sym_unsafe] = ACTIONS(3185), - [anon_sym_sql] = ACTIONS(3185), - [sym_int_literal] = ACTIONS(3185), - [sym_float_literal] = ACTIONS(3183), - [sym_rune_literal] = ACTIONS(3183), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_shared] = ACTIONS(3185), - [anon_sym_map_LBRACK] = ACTIONS(3183), - [anon_sym_chan] = ACTIONS(3185), - [anon_sym_thread] = ACTIONS(3185), - [anon_sym_atomic] = ACTIONS(3185), - [sym___double_quote] = ACTIONS(3183), - [sym___single_quote] = ACTIONS(3183), - [sym___c_double_quote] = ACTIONS(3183), - [sym___c_single_quote] = ACTIONS(3183), - [sym___r_double_quote] = ACTIONS(3183), - [sym___r_single_quote] = ACTIONS(3183), - }, - [1343] = { - [sym_identifier] = ACTIONS(3189), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_as] = ACTIONS(3189), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_COMMA] = ACTIONS(3187), - [anon_sym_LPAREN] = ACTIONS(3187), - [anon_sym_PIPE] = ACTIONS(3189), - [anon_sym_fn] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3189), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3187), - [anon_sym_SLASH] = ACTIONS(3189), - [anon_sym_PERCENT] = ACTIONS(3187), - [anon_sym_LT] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3187), - [anon_sym_BANG_EQ] = ACTIONS(3187), - [anon_sym_LT_EQ] = ACTIONS(3187), - [anon_sym_GT_EQ] = ACTIONS(3187), - [anon_sym_LBRACK] = ACTIONS(3187), - [anon_sym_RBRACK] = ACTIONS(3187), - [anon_sym_struct] = ACTIONS(3189), - [anon_sym_mut] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3187), - [anon_sym_DASH_DASH] = ACTIONS(3187), - [anon_sym_QMARK] = ACTIONS(3189), - [anon_sym_BANG] = ACTIONS(3189), - [anon_sym_go] = ACTIONS(3189), - [anon_sym_spawn] = ACTIONS(3189), - [anon_sym_json_DOTdecode] = ACTIONS(3187), - [anon_sym_LBRACK2] = ACTIONS(3189), - [anon_sym_TILDE] = ACTIONS(3187), - [anon_sym_CARET] = ACTIONS(3187), - [anon_sym_AMP] = ACTIONS(3189), - [anon_sym_LT_DASH] = ACTIONS(3187), - [anon_sym_LT_LT] = ACTIONS(3187), - [anon_sym_GT_GT] = ACTIONS(3189), - [anon_sym_GT_GT_GT] = ACTIONS(3187), - [anon_sym_AMP_CARET] = ACTIONS(3187), - [anon_sym_AMP_AMP] = ACTIONS(3187), - [anon_sym_PIPE_PIPE] = ACTIONS(3187), - [anon_sym_or] = ACTIONS(3189), - [sym_none] = ACTIONS(3189), - [sym_true] = ACTIONS(3189), - [sym_false] = ACTIONS(3189), - [sym_nil] = ACTIONS(3189), - [anon_sym_QMARK_DOT] = ACTIONS(3187), - [anon_sym_POUND_LBRACK] = ACTIONS(3187), - [anon_sym_if] = ACTIONS(3189), - [anon_sym_DOLLARif] = ACTIONS(3189), - [anon_sym_is] = ACTIONS(3189), - [anon_sym_BANGis] = ACTIONS(3187), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_BANGin] = ACTIONS(3187), - [anon_sym_match] = ACTIONS(3189), - [anon_sym_select] = ACTIONS(3189), - [anon_sym_lock] = ACTIONS(3189), - [anon_sym_rlock] = ACTIONS(3189), - [anon_sym_unsafe] = ACTIONS(3189), - [anon_sym_sql] = ACTIONS(3189), - [sym_int_literal] = ACTIONS(3189), - [sym_float_literal] = ACTIONS(3187), - [sym_rune_literal] = ACTIONS(3187), - [anon_sym_AT] = ACTIONS(3189), - [anon_sym_shared] = ACTIONS(3189), - [anon_sym_map_LBRACK] = ACTIONS(3187), - [anon_sym_chan] = ACTIONS(3189), - [anon_sym_thread] = ACTIONS(3189), - [anon_sym_atomic] = ACTIONS(3189), - [sym___double_quote] = ACTIONS(3187), - [sym___single_quote] = ACTIONS(3187), - [sym___c_double_quote] = ACTIONS(3187), - [sym___c_single_quote] = ACTIONS(3187), - [sym___r_double_quote] = ACTIONS(3187), - [sym___r_single_quote] = ACTIONS(3187), - }, - [1344] = { - [sym_identifier] = ACTIONS(2989), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_as] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2987), - [anon_sym_COMMA] = ACTIONS(2987), - [anon_sym_LPAREN] = ACTIONS(2987), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2987), - [anon_sym_SLASH] = ACTIONS(2989), - [anon_sym_PERCENT] = ACTIONS(2987), - [anon_sym_LT] = ACTIONS(2989), - [anon_sym_GT] = ACTIONS(2989), - [anon_sym_EQ_EQ] = ACTIONS(2987), - [anon_sym_BANG_EQ] = ACTIONS(2987), - [anon_sym_LT_EQ] = ACTIONS(2987), - [anon_sym_GT_EQ] = ACTIONS(2987), - [anon_sym_LBRACK] = ACTIONS(2987), - [anon_sym_RBRACK] = ACTIONS(2987), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_PLUS_PLUS] = ACTIONS(2987), - [anon_sym_DASH_DASH] = ACTIONS(2987), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2987), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2987), - [anon_sym_CARET] = ACTIONS(2987), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2987), - [anon_sym_LT_LT] = ACTIONS(2987), - [anon_sym_GT_GT] = ACTIONS(2989), - [anon_sym_GT_GT_GT] = ACTIONS(2987), - [anon_sym_AMP_CARET] = ACTIONS(2987), - [anon_sym_AMP_AMP] = ACTIONS(2987), - [anon_sym_PIPE_PIPE] = ACTIONS(2987), - [anon_sym_or] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_QMARK_DOT] = ACTIONS(2987), - [anon_sym_POUND_LBRACK] = ACTIONS(2987), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_is] = ACTIONS(2989), - [anon_sym_BANGis] = ACTIONS(2987), - [anon_sym_in] = ACTIONS(2989), - [anon_sym_BANGin] = ACTIONS(2987), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2987), - [sym_rune_literal] = ACTIONS(2987), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2987), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2987), - [sym___single_quote] = ACTIONS(2987), - [sym___c_double_quote] = ACTIONS(2987), - [sym___c_single_quote] = ACTIONS(2987), - [sym___r_double_quote] = ACTIONS(2987), - [sym___r_single_quote] = ACTIONS(2987), - }, - [1345] = { - [sym_identifier] = ACTIONS(2704), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_as] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2702), - [anon_sym_COMMA] = ACTIONS(2702), - [anon_sym_LPAREN] = ACTIONS(2702), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2702), - [anon_sym_SLASH] = ACTIONS(2704), - [anon_sym_PERCENT] = ACTIONS(2702), - [anon_sym_LT] = ACTIONS(2704), - [anon_sym_GT] = ACTIONS(2704), - [anon_sym_EQ_EQ] = ACTIONS(2702), - [anon_sym_BANG_EQ] = ACTIONS(2702), - [anon_sym_LT_EQ] = ACTIONS(2702), - [anon_sym_GT_EQ] = ACTIONS(2702), - [anon_sym_LBRACK] = ACTIONS(2702), - [anon_sym_RBRACK] = ACTIONS(2702), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_PLUS_PLUS] = ACTIONS(2702), - [anon_sym_DASH_DASH] = ACTIONS(2702), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2702), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2702), - [anon_sym_CARET] = ACTIONS(2702), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2702), - [anon_sym_LT_LT] = ACTIONS(2702), - [anon_sym_GT_GT] = ACTIONS(2704), - [anon_sym_GT_GT_GT] = ACTIONS(2702), - [anon_sym_AMP_CARET] = ACTIONS(2702), - [anon_sym_AMP_AMP] = ACTIONS(2702), - [anon_sym_PIPE_PIPE] = ACTIONS(2702), - [anon_sym_or] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_QMARK_DOT] = ACTIONS(2702), - [anon_sym_POUND_LBRACK] = ACTIONS(2702), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_is] = ACTIONS(2704), - [anon_sym_BANGis] = ACTIONS(2702), - [anon_sym_in] = ACTIONS(2704), - [anon_sym_BANGin] = ACTIONS(2702), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2702), - [sym_rune_literal] = ACTIONS(2702), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2702), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2702), - [sym___single_quote] = ACTIONS(2702), - [sym___c_double_quote] = ACTIONS(2702), - [sym___c_single_quote] = ACTIONS(2702), - [sym___r_double_quote] = ACTIONS(2702), - [sym___r_single_quote] = ACTIONS(2702), - }, - [1346] = { - [sym_identifier] = ACTIONS(3161), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3161), - [anon_sym_as] = ACTIONS(3161), - [anon_sym_LBRACE] = ACTIONS(3159), - [anon_sym_COMMA] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3159), - [anon_sym_PIPE] = ACTIONS(3161), - [anon_sym_fn] = ACTIONS(3161), - [anon_sym_PLUS] = ACTIONS(3161), - [anon_sym_DASH] = ACTIONS(3161), - [anon_sym_STAR] = ACTIONS(3159), - [anon_sym_SLASH] = ACTIONS(3161), - [anon_sym_PERCENT] = ACTIONS(3159), - [anon_sym_LT] = ACTIONS(3161), - [anon_sym_GT] = ACTIONS(3161), - [anon_sym_EQ_EQ] = ACTIONS(3159), - [anon_sym_BANG_EQ] = ACTIONS(3159), - [anon_sym_LT_EQ] = ACTIONS(3159), - [anon_sym_GT_EQ] = ACTIONS(3159), - [anon_sym_LBRACK] = ACTIONS(3159), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_struct] = ACTIONS(3161), - [anon_sym_mut] = ACTIONS(3161), - [anon_sym_PLUS_PLUS] = ACTIONS(3159), - [anon_sym_DASH_DASH] = ACTIONS(3159), - [anon_sym_QMARK] = ACTIONS(3161), - [anon_sym_BANG] = ACTIONS(3161), - [anon_sym_go] = ACTIONS(3161), - [anon_sym_spawn] = ACTIONS(3161), - [anon_sym_json_DOTdecode] = ACTIONS(3159), - [anon_sym_LBRACK2] = ACTIONS(3161), - [anon_sym_TILDE] = ACTIONS(3159), - [anon_sym_CARET] = ACTIONS(3159), - [anon_sym_AMP] = ACTIONS(3161), - [anon_sym_LT_DASH] = ACTIONS(3159), - [anon_sym_LT_LT] = ACTIONS(3159), - [anon_sym_GT_GT] = ACTIONS(3161), - [anon_sym_GT_GT_GT] = ACTIONS(3159), - [anon_sym_AMP_CARET] = ACTIONS(3159), - [anon_sym_AMP_AMP] = ACTIONS(3159), - [anon_sym_PIPE_PIPE] = ACTIONS(3159), - [anon_sym_or] = ACTIONS(3161), - [sym_none] = ACTIONS(3161), - [sym_true] = ACTIONS(3161), - [sym_false] = ACTIONS(3161), - [sym_nil] = ACTIONS(3161), - [anon_sym_QMARK_DOT] = ACTIONS(3159), - [anon_sym_POUND_LBRACK] = ACTIONS(3159), - [anon_sym_if] = ACTIONS(3161), - [anon_sym_DOLLARif] = ACTIONS(3161), - [anon_sym_is] = ACTIONS(3161), - [anon_sym_BANGis] = ACTIONS(3159), - [anon_sym_in] = ACTIONS(3161), - [anon_sym_BANGin] = ACTIONS(3159), - [anon_sym_match] = ACTIONS(3161), - [anon_sym_select] = ACTIONS(3161), - [anon_sym_lock] = ACTIONS(3161), - [anon_sym_rlock] = ACTIONS(3161), - [anon_sym_unsafe] = ACTIONS(3161), - [anon_sym_sql] = ACTIONS(3161), - [sym_int_literal] = ACTIONS(3161), - [sym_float_literal] = ACTIONS(3159), - [sym_rune_literal] = ACTIONS(3159), - [anon_sym_AT] = ACTIONS(3161), - [anon_sym_shared] = ACTIONS(3161), - [anon_sym_map_LBRACK] = ACTIONS(3159), - [anon_sym_chan] = ACTIONS(3161), - [anon_sym_thread] = ACTIONS(3161), - [anon_sym_atomic] = ACTIONS(3161), - [sym___double_quote] = ACTIONS(3159), - [sym___single_quote] = ACTIONS(3159), - [sym___c_double_quote] = ACTIONS(3159), - [sym___c_single_quote] = ACTIONS(3159), - [sym___r_double_quote] = ACTIONS(3159), - [sym___r_single_quote] = ACTIONS(3159), - }, - [1347] = { - [sym_identifier] = ACTIONS(3029), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_as] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3027), - [anon_sym_COMMA] = ACTIONS(3027), - [anon_sym_LPAREN] = ACTIONS(3027), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3029), - [anon_sym_PERCENT] = ACTIONS(3027), - [anon_sym_LT] = ACTIONS(3029), - [anon_sym_GT] = ACTIONS(3029), - [anon_sym_EQ_EQ] = ACTIONS(3027), - [anon_sym_BANG_EQ] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3027), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_RBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_PLUS_PLUS] = ACTIONS(3027), - [anon_sym_DASH_DASH] = ACTIONS(3027), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3027), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3027), - [anon_sym_CARET] = ACTIONS(3027), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3027), - [anon_sym_LT_LT] = ACTIONS(3027), - [anon_sym_GT_GT] = ACTIONS(3029), - [anon_sym_GT_GT_GT] = ACTIONS(3027), - [anon_sym_AMP_CARET] = ACTIONS(3027), - [anon_sym_AMP_AMP] = ACTIONS(3027), - [anon_sym_PIPE_PIPE] = ACTIONS(3027), - [anon_sym_or] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_QMARK_DOT] = ACTIONS(3027), - [anon_sym_POUND_LBRACK] = ACTIONS(3027), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_is] = ACTIONS(3029), - [anon_sym_BANGis] = ACTIONS(3027), - [anon_sym_in] = ACTIONS(3029), - [anon_sym_BANGin] = ACTIONS(3027), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3027), - [sym_rune_literal] = ACTIONS(3027), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3027), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3027), - [sym___single_quote] = ACTIONS(3027), - [sym___c_double_quote] = ACTIONS(3027), - [sym___c_single_quote] = ACTIONS(3027), - [sym___r_double_quote] = ACTIONS(3027), - [sym___r_single_quote] = ACTIONS(3027), - }, - [1348] = { - [sym_identifier] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2884), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), - }, - [1349] = { - [sym_identifier] = ACTIONS(3013), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3013), - [anon_sym_as] = ACTIONS(3013), - [anon_sym_LBRACE] = ACTIONS(3011), - [anon_sym_COMMA] = ACTIONS(3011), - [anon_sym_LPAREN] = ACTIONS(3011), - [anon_sym_PIPE] = ACTIONS(3013), - [anon_sym_fn] = ACTIONS(3013), - [anon_sym_PLUS] = ACTIONS(3013), - [anon_sym_DASH] = ACTIONS(3013), - [anon_sym_STAR] = ACTIONS(3011), - [anon_sym_SLASH] = ACTIONS(3013), - [anon_sym_PERCENT] = ACTIONS(3011), - [anon_sym_LT] = ACTIONS(3013), - [anon_sym_GT] = ACTIONS(3013), - [anon_sym_EQ_EQ] = ACTIONS(3011), - [anon_sym_BANG_EQ] = ACTIONS(3011), - [anon_sym_LT_EQ] = ACTIONS(3011), - [anon_sym_GT_EQ] = ACTIONS(3011), - [anon_sym_LBRACK] = ACTIONS(3011), - [anon_sym_RBRACK] = ACTIONS(3011), - [anon_sym_struct] = ACTIONS(3013), - [anon_sym_mut] = ACTIONS(3013), - [anon_sym_PLUS_PLUS] = ACTIONS(3011), - [anon_sym_DASH_DASH] = ACTIONS(3011), - [anon_sym_QMARK] = ACTIONS(3013), - [anon_sym_BANG] = ACTIONS(3013), - [anon_sym_go] = ACTIONS(3013), - [anon_sym_spawn] = ACTIONS(3013), - [anon_sym_json_DOTdecode] = ACTIONS(3011), - [anon_sym_LBRACK2] = ACTIONS(3013), - [anon_sym_TILDE] = ACTIONS(3011), - [anon_sym_CARET] = ACTIONS(3011), - [anon_sym_AMP] = ACTIONS(3013), - [anon_sym_LT_DASH] = ACTIONS(3011), - [anon_sym_LT_LT] = ACTIONS(3011), - [anon_sym_GT_GT] = ACTIONS(3013), - [anon_sym_GT_GT_GT] = ACTIONS(3011), - [anon_sym_AMP_CARET] = ACTIONS(3011), - [anon_sym_AMP_AMP] = ACTIONS(3011), - [anon_sym_PIPE_PIPE] = ACTIONS(3011), - [anon_sym_or] = ACTIONS(3013), - [sym_none] = ACTIONS(3013), - [sym_true] = ACTIONS(3013), - [sym_false] = ACTIONS(3013), - [sym_nil] = ACTIONS(3013), - [anon_sym_QMARK_DOT] = ACTIONS(3011), - [anon_sym_POUND_LBRACK] = ACTIONS(3011), - [anon_sym_if] = ACTIONS(3013), - [anon_sym_DOLLARif] = ACTIONS(3013), - [anon_sym_is] = ACTIONS(3013), - [anon_sym_BANGis] = ACTIONS(3011), - [anon_sym_in] = ACTIONS(3013), - [anon_sym_BANGin] = ACTIONS(3011), - [anon_sym_match] = ACTIONS(3013), - [anon_sym_select] = ACTIONS(3013), - [anon_sym_lock] = ACTIONS(3013), - [anon_sym_rlock] = ACTIONS(3013), - [anon_sym_unsafe] = ACTIONS(3013), - [anon_sym_sql] = ACTIONS(3013), - [sym_int_literal] = ACTIONS(3013), - [sym_float_literal] = ACTIONS(3011), - [sym_rune_literal] = ACTIONS(3011), - [anon_sym_AT] = ACTIONS(3013), - [anon_sym_shared] = ACTIONS(3013), - [anon_sym_map_LBRACK] = ACTIONS(3011), - [anon_sym_chan] = ACTIONS(3013), - [anon_sym_thread] = ACTIONS(3013), - [anon_sym_atomic] = ACTIONS(3013), - [sym___double_quote] = ACTIONS(3011), - [sym___single_quote] = ACTIONS(3011), - [sym___c_double_quote] = ACTIONS(3011), - [sym___c_single_quote] = ACTIONS(3011), - [sym___r_double_quote] = ACTIONS(3011), - [sym___r_single_quote] = ACTIONS(3011), - }, - [1350] = { - [sym_identifier] = ACTIONS(2963), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2963), - [anon_sym_as] = ACTIONS(2963), - [anon_sym_LBRACE] = ACTIONS(2961), - [anon_sym_COMMA] = ACTIONS(2961), - [anon_sym_LPAREN] = ACTIONS(2961), - [anon_sym_PIPE] = ACTIONS(2963), - [anon_sym_fn] = ACTIONS(2963), - [anon_sym_PLUS] = ACTIONS(2963), - [anon_sym_DASH] = ACTIONS(2963), - [anon_sym_STAR] = ACTIONS(2961), - [anon_sym_SLASH] = ACTIONS(2963), - [anon_sym_PERCENT] = ACTIONS(2961), - [anon_sym_LT] = ACTIONS(2963), - [anon_sym_GT] = ACTIONS(2963), - [anon_sym_EQ_EQ] = ACTIONS(2961), - [anon_sym_BANG_EQ] = ACTIONS(2961), - [anon_sym_LT_EQ] = ACTIONS(2961), - [anon_sym_GT_EQ] = ACTIONS(2961), - [anon_sym_LBRACK] = ACTIONS(2961), - [anon_sym_RBRACK] = ACTIONS(2961), - [anon_sym_struct] = ACTIONS(2963), - [anon_sym_mut] = ACTIONS(2963), - [anon_sym_PLUS_PLUS] = ACTIONS(2961), - [anon_sym_DASH_DASH] = ACTIONS(2961), - [anon_sym_QMARK] = ACTIONS(2963), - [anon_sym_BANG] = ACTIONS(2963), - [anon_sym_go] = ACTIONS(2963), - [anon_sym_spawn] = ACTIONS(2963), - [anon_sym_json_DOTdecode] = ACTIONS(2961), - [anon_sym_LBRACK2] = ACTIONS(2963), - [anon_sym_TILDE] = ACTIONS(2961), - [anon_sym_CARET] = ACTIONS(2961), - [anon_sym_AMP] = ACTIONS(2963), - [anon_sym_LT_DASH] = ACTIONS(2961), - [anon_sym_LT_LT] = ACTIONS(2961), - [anon_sym_GT_GT] = ACTIONS(2963), - [anon_sym_GT_GT_GT] = ACTIONS(2961), - [anon_sym_AMP_CARET] = ACTIONS(2961), - [anon_sym_AMP_AMP] = ACTIONS(2961), - [anon_sym_PIPE_PIPE] = ACTIONS(2961), - [anon_sym_or] = ACTIONS(2963), - [sym_none] = ACTIONS(2963), - [sym_true] = ACTIONS(2963), - [sym_false] = ACTIONS(2963), - [sym_nil] = ACTIONS(2963), - [anon_sym_QMARK_DOT] = ACTIONS(2961), - [anon_sym_POUND_LBRACK] = ACTIONS(2961), - [anon_sym_if] = ACTIONS(2963), - [anon_sym_DOLLARif] = ACTIONS(2963), - [anon_sym_is] = ACTIONS(2963), - [anon_sym_BANGis] = ACTIONS(2961), - [anon_sym_in] = ACTIONS(2963), - [anon_sym_BANGin] = ACTIONS(2961), - [anon_sym_match] = ACTIONS(2963), - [anon_sym_select] = ACTIONS(2963), - [anon_sym_lock] = ACTIONS(2963), - [anon_sym_rlock] = ACTIONS(2963), - [anon_sym_unsafe] = ACTIONS(2963), - [anon_sym_sql] = ACTIONS(2963), - [sym_int_literal] = ACTIONS(2963), - [sym_float_literal] = ACTIONS(2961), - [sym_rune_literal] = ACTIONS(2961), - [anon_sym_AT] = ACTIONS(2963), - [anon_sym_shared] = ACTIONS(2963), - [anon_sym_map_LBRACK] = ACTIONS(2961), - [anon_sym_chan] = ACTIONS(2963), - [anon_sym_thread] = ACTIONS(2963), - [anon_sym_atomic] = ACTIONS(2963), - [sym___double_quote] = ACTIONS(2961), - [sym___single_quote] = ACTIONS(2961), - [sym___c_double_quote] = ACTIONS(2961), - [sym___c_single_quote] = ACTIONS(2961), - [sym___r_double_quote] = ACTIONS(2961), - [sym___r_single_quote] = ACTIONS(2961), - }, - [1351] = { - [sym_identifier] = ACTIONS(2772), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2772), - [anon_sym_as] = ACTIONS(2772), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_COMMA] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2772), - [anon_sym_fn] = ACTIONS(2772), - [anon_sym_PLUS] = ACTIONS(2772), - [anon_sym_DASH] = ACTIONS(2772), - [anon_sym_STAR] = ACTIONS(2770), - [anon_sym_SLASH] = ACTIONS(2772), - [anon_sym_PERCENT] = ACTIONS(2770), - [anon_sym_LT] = ACTIONS(2772), - [anon_sym_GT] = ACTIONS(2772), - [anon_sym_EQ_EQ] = ACTIONS(2770), - [anon_sym_BANG_EQ] = ACTIONS(2770), - [anon_sym_LT_EQ] = ACTIONS(2770), - [anon_sym_GT_EQ] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_RBRACK] = ACTIONS(2770), - [anon_sym_struct] = ACTIONS(2772), - [anon_sym_mut] = ACTIONS(2772), - [anon_sym_PLUS_PLUS] = ACTIONS(2770), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_QMARK] = ACTIONS(2772), - [anon_sym_BANG] = ACTIONS(2772), - [anon_sym_go] = ACTIONS(2772), - [anon_sym_spawn] = ACTIONS(2772), - [anon_sym_json_DOTdecode] = ACTIONS(2770), - [anon_sym_LBRACK2] = ACTIONS(2772), - [anon_sym_TILDE] = ACTIONS(2770), - [anon_sym_CARET] = ACTIONS(2770), - [anon_sym_AMP] = ACTIONS(2772), - [anon_sym_LT_DASH] = ACTIONS(2770), - [anon_sym_LT_LT] = ACTIONS(2770), - [anon_sym_GT_GT] = ACTIONS(2772), - [anon_sym_GT_GT_GT] = ACTIONS(2770), - [anon_sym_AMP_CARET] = ACTIONS(2770), - [anon_sym_AMP_AMP] = ACTIONS(2770), - [anon_sym_PIPE_PIPE] = ACTIONS(2770), - [anon_sym_or] = ACTIONS(2772), - [sym_none] = ACTIONS(2772), - [sym_true] = ACTIONS(2772), - [sym_false] = ACTIONS(2772), - [sym_nil] = ACTIONS(2772), - [anon_sym_QMARK_DOT] = ACTIONS(2770), - [anon_sym_POUND_LBRACK] = ACTIONS(2770), - [anon_sym_if] = ACTIONS(2772), - [anon_sym_DOLLARif] = ACTIONS(2772), - [anon_sym_is] = ACTIONS(2772), - [anon_sym_BANGis] = ACTIONS(2770), - [anon_sym_in] = ACTIONS(2772), - [anon_sym_BANGin] = ACTIONS(2770), - [anon_sym_match] = ACTIONS(2772), - [anon_sym_select] = ACTIONS(2772), - [anon_sym_lock] = ACTIONS(2772), - [anon_sym_rlock] = ACTIONS(2772), - [anon_sym_unsafe] = ACTIONS(2772), - [anon_sym_sql] = ACTIONS(2772), - [sym_int_literal] = ACTIONS(2772), - [sym_float_literal] = ACTIONS(2770), - [sym_rune_literal] = ACTIONS(2770), - [anon_sym_AT] = ACTIONS(2772), - [anon_sym_shared] = ACTIONS(2772), - [anon_sym_map_LBRACK] = ACTIONS(2770), - [anon_sym_chan] = ACTIONS(2772), - [anon_sym_thread] = ACTIONS(2772), - [anon_sym_atomic] = ACTIONS(2772), - [sym___double_quote] = ACTIONS(2770), - [sym___single_quote] = ACTIONS(2770), - [sym___c_double_quote] = ACTIONS(2770), - [sym___c_single_quote] = ACTIONS(2770), - [sym___r_double_quote] = ACTIONS(2770), - [sym___r_single_quote] = ACTIONS(2770), - }, - [1352] = { - [sym_identifier] = ACTIONS(2824), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2824), - [anon_sym_as] = ACTIONS(2824), - [anon_sym_LBRACE] = ACTIONS(2822), - [anon_sym_COMMA] = ACTIONS(2822), - [anon_sym_LPAREN] = ACTIONS(2822), - [anon_sym_PIPE] = ACTIONS(2824), - [anon_sym_fn] = ACTIONS(2824), - [anon_sym_PLUS] = ACTIONS(2824), - [anon_sym_DASH] = ACTIONS(2824), - [anon_sym_STAR] = ACTIONS(2822), - [anon_sym_SLASH] = ACTIONS(2824), - [anon_sym_PERCENT] = ACTIONS(2822), - [anon_sym_LT] = ACTIONS(2824), - [anon_sym_GT] = ACTIONS(2824), - [anon_sym_EQ_EQ] = ACTIONS(2822), - [anon_sym_BANG_EQ] = ACTIONS(2822), - [anon_sym_LT_EQ] = ACTIONS(2822), - [anon_sym_GT_EQ] = ACTIONS(2822), - [anon_sym_LBRACK] = ACTIONS(2822), - [anon_sym_RBRACK] = ACTIONS(2822), - [anon_sym_struct] = ACTIONS(2824), - [anon_sym_mut] = ACTIONS(2824), - [anon_sym_PLUS_PLUS] = ACTIONS(2822), - [anon_sym_DASH_DASH] = ACTIONS(2822), - [anon_sym_QMARK] = ACTIONS(2824), - [anon_sym_BANG] = ACTIONS(2824), - [anon_sym_go] = ACTIONS(2824), - [anon_sym_spawn] = ACTIONS(2824), - [anon_sym_json_DOTdecode] = ACTIONS(2822), - [anon_sym_LBRACK2] = ACTIONS(2824), - [anon_sym_TILDE] = ACTIONS(2822), - [anon_sym_CARET] = ACTIONS(2822), - [anon_sym_AMP] = ACTIONS(2824), - [anon_sym_LT_DASH] = ACTIONS(2822), - [anon_sym_LT_LT] = ACTIONS(2822), - [anon_sym_GT_GT] = ACTIONS(2824), - [anon_sym_GT_GT_GT] = ACTIONS(2822), - [anon_sym_AMP_CARET] = ACTIONS(2822), - [anon_sym_AMP_AMP] = ACTIONS(2822), - [anon_sym_PIPE_PIPE] = ACTIONS(2822), - [anon_sym_or] = ACTIONS(2824), - [sym_none] = ACTIONS(2824), - [sym_true] = ACTIONS(2824), - [sym_false] = ACTIONS(2824), - [sym_nil] = ACTIONS(2824), - [anon_sym_QMARK_DOT] = ACTIONS(2822), - [anon_sym_POUND_LBRACK] = ACTIONS(2822), - [anon_sym_if] = ACTIONS(2824), - [anon_sym_DOLLARif] = ACTIONS(2824), - [anon_sym_is] = ACTIONS(2824), - [anon_sym_BANGis] = ACTIONS(2822), - [anon_sym_in] = ACTIONS(2824), - [anon_sym_BANGin] = ACTIONS(2822), - [anon_sym_match] = ACTIONS(2824), - [anon_sym_select] = ACTIONS(2824), - [anon_sym_lock] = ACTIONS(2824), - [anon_sym_rlock] = ACTIONS(2824), - [anon_sym_unsafe] = ACTIONS(2824), - [anon_sym_sql] = ACTIONS(2824), - [sym_int_literal] = ACTIONS(2824), - [sym_float_literal] = ACTIONS(2822), - [sym_rune_literal] = ACTIONS(2822), - [anon_sym_AT] = ACTIONS(2824), - [anon_sym_shared] = ACTIONS(2824), - [anon_sym_map_LBRACK] = ACTIONS(2822), - [anon_sym_chan] = ACTIONS(2824), - [anon_sym_thread] = ACTIONS(2824), - [anon_sym_atomic] = ACTIONS(2824), - [sym___double_quote] = ACTIONS(2822), - [sym___single_quote] = ACTIONS(2822), - [sym___c_double_quote] = ACTIONS(2822), - [sym___c_single_quote] = ACTIONS(2822), - [sym___r_double_quote] = ACTIONS(2822), - [sym___r_single_quote] = ACTIONS(2822), - }, - [1353] = { - [sym_identifier] = ACTIONS(2911), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2911), - [anon_sym_as] = ACTIONS(2911), - [anon_sym_LBRACE] = ACTIONS(2909), - [anon_sym_COMMA] = ACTIONS(2909), - [anon_sym_LPAREN] = ACTIONS(2909), - [anon_sym_PIPE] = ACTIONS(2911), - [anon_sym_fn] = ACTIONS(2911), - [anon_sym_PLUS] = ACTIONS(2911), - [anon_sym_DASH] = ACTIONS(2911), - [anon_sym_STAR] = ACTIONS(2909), - [anon_sym_SLASH] = ACTIONS(2911), - [anon_sym_PERCENT] = ACTIONS(2909), - [anon_sym_LT] = ACTIONS(2911), - [anon_sym_GT] = ACTIONS(2911), - [anon_sym_EQ_EQ] = ACTIONS(2909), - [anon_sym_BANG_EQ] = ACTIONS(2909), - [anon_sym_LT_EQ] = ACTIONS(2909), - [anon_sym_GT_EQ] = ACTIONS(2909), - [anon_sym_LBRACK] = ACTIONS(2909), - [anon_sym_RBRACK] = ACTIONS(2909), - [anon_sym_struct] = ACTIONS(2911), - [anon_sym_mut] = ACTIONS(2911), - [anon_sym_PLUS_PLUS] = ACTIONS(2909), - [anon_sym_DASH_DASH] = ACTIONS(2909), - [anon_sym_QMARK] = ACTIONS(2911), - [anon_sym_BANG] = ACTIONS(2911), - [anon_sym_go] = ACTIONS(2911), - [anon_sym_spawn] = ACTIONS(2911), - [anon_sym_json_DOTdecode] = ACTIONS(2909), - [anon_sym_LBRACK2] = ACTIONS(2911), - [anon_sym_TILDE] = ACTIONS(2909), - [anon_sym_CARET] = ACTIONS(2909), - [anon_sym_AMP] = ACTIONS(2911), - [anon_sym_LT_DASH] = ACTIONS(2909), - [anon_sym_LT_LT] = ACTIONS(2909), - [anon_sym_GT_GT] = ACTIONS(2911), - [anon_sym_GT_GT_GT] = ACTIONS(2909), - [anon_sym_AMP_CARET] = ACTIONS(2909), - [anon_sym_AMP_AMP] = ACTIONS(2909), - [anon_sym_PIPE_PIPE] = ACTIONS(2909), - [anon_sym_or] = ACTIONS(2911), - [sym_none] = ACTIONS(2911), - [sym_true] = ACTIONS(2911), - [sym_false] = ACTIONS(2911), - [sym_nil] = ACTIONS(2911), - [anon_sym_QMARK_DOT] = ACTIONS(2909), - [anon_sym_POUND_LBRACK] = ACTIONS(2909), - [anon_sym_if] = ACTIONS(2911), - [anon_sym_DOLLARif] = ACTIONS(2911), - [anon_sym_is] = ACTIONS(2911), - [anon_sym_BANGis] = ACTIONS(2909), - [anon_sym_in] = ACTIONS(2911), - [anon_sym_BANGin] = ACTIONS(2909), - [anon_sym_match] = ACTIONS(2911), - [anon_sym_select] = ACTIONS(2911), - [anon_sym_lock] = ACTIONS(2911), - [anon_sym_rlock] = ACTIONS(2911), - [anon_sym_unsafe] = ACTIONS(2911), - [anon_sym_sql] = ACTIONS(2911), - [sym_int_literal] = ACTIONS(2911), - [sym_float_literal] = ACTIONS(2909), - [sym_rune_literal] = ACTIONS(2909), - [anon_sym_AT] = ACTIONS(2911), - [anon_sym_shared] = ACTIONS(2911), - [anon_sym_map_LBRACK] = ACTIONS(2909), - [anon_sym_chan] = ACTIONS(2911), - [anon_sym_thread] = ACTIONS(2911), - [anon_sym_atomic] = ACTIONS(2911), - [sym___double_quote] = ACTIONS(2909), - [sym___single_quote] = ACTIONS(2909), - [sym___c_double_quote] = ACTIONS(2909), - [sym___c_single_quote] = ACTIONS(2909), - [sym___r_double_quote] = ACTIONS(2909), - [sym___r_single_quote] = ACTIONS(2909), - }, - [1354] = { - [sym_identifier] = ACTIONS(2796), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2796), - [anon_sym_as] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(2794), - [anon_sym_COMMA] = ACTIONS(2794), - [anon_sym_LPAREN] = ACTIONS(2794), - [anon_sym_PIPE] = ACTIONS(2796), - [anon_sym_fn] = ACTIONS(2796), - [anon_sym_PLUS] = ACTIONS(2796), - [anon_sym_DASH] = ACTIONS(2796), - [anon_sym_STAR] = ACTIONS(2794), - [anon_sym_SLASH] = ACTIONS(2796), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_LT] = ACTIONS(2796), - [anon_sym_GT] = ACTIONS(2796), - [anon_sym_EQ_EQ] = ACTIONS(2794), - [anon_sym_BANG_EQ] = ACTIONS(2794), - [anon_sym_LT_EQ] = ACTIONS(2794), - [anon_sym_GT_EQ] = ACTIONS(2794), - [anon_sym_LBRACK] = ACTIONS(2794), - [anon_sym_RBRACK] = ACTIONS(2794), - [anon_sym_struct] = ACTIONS(2796), - [anon_sym_mut] = ACTIONS(2796), - [anon_sym_PLUS_PLUS] = ACTIONS(2794), - [anon_sym_DASH_DASH] = ACTIONS(2794), - [anon_sym_QMARK] = ACTIONS(2796), - [anon_sym_BANG] = ACTIONS(2796), - [anon_sym_go] = ACTIONS(2796), - [anon_sym_spawn] = ACTIONS(2796), - [anon_sym_json_DOTdecode] = ACTIONS(2794), - [anon_sym_LBRACK2] = ACTIONS(2796), - [anon_sym_TILDE] = ACTIONS(2794), - [anon_sym_CARET] = ACTIONS(2794), - [anon_sym_AMP] = ACTIONS(2796), - [anon_sym_LT_DASH] = ACTIONS(2794), - [anon_sym_LT_LT] = ACTIONS(2794), - [anon_sym_GT_GT] = ACTIONS(2796), - [anon_sym_GT_GT_GT] = ACTIONS(2794), - [anon_sym_AMP_CARET] = ACTIONS(2794), - [anon_sym_AMP_AMP] = ACTIONS(2794), - [anon_sym_PIPE_PIPE] = ACTIONS(2794), - [anon_sym_or] = ACTIONS(2796), - [sym_none] = ACTIONS(2796), - [sym_true] = ACTIONS(2796), - [sym_false] = ACTIONS(2796), - [sym_nil] = ACTIONS(2796), - [anon_sym_QMARK_DOT] = ACTIONS(2794), - [anon_sym_POUND_LBRACK] = ACTIONS(2794), - [anon_sym_if] = ACTIONS(2796), - [anon_sym_DOLLARif] = ACTIONS(2796), - [anon_sym_is] = ACTIONS(2796), - [anon_sym_BANGis] = ACTIONS(2794), - [anon_sym_in] = ACTIONS(2796), - [anon_sym_BANGin] = ACTIONS(2794), - [anon_sym_match] = ACTIONS(2796), - [anon_sym_select] = ACTIONS(2796), - [anon_sym_lock] = ACTIONS(2796), - [anon_sym_rlock] = ACTIONS(2796), - [anon_sym_unsafe] = ACTIONS(2796), - [anon_sym_sql] = ACTIONS(2796), - [sym_int_literal] = ACTIONS(2796), - [sym_float_literal] = ACTIONS(2794), - [sym_rune_literal] = ACTIONS(2794), - [anon_sym_AT] = ACTIONS(2796), - [anon_sym_shared] = ACTIONS(2796), - [anon_sym_map_LBRACK] = ACTIONS(2794), - [anon_sym_chan] = ACTIONS(2796), - [anon_sym_thread] = ACTIONS(2796), - [anon_sym_atomic] = ACTIONS(2796), - [sym___double_quote] = ACTIONS(2794), - [sym___single_quote] = ACTIONS(2794), - [sym___c_double_quote] = ACTIONS(2794), - [sym___c_single_quote] = ACTIONS(2794), - [sym___r_double_quote] = ACTIONS(2794), - [sym___r_single_quote] = ACTIONS(2794), - }, - [1355] = { - [sym_identifier] = ACTIONS(2812), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2812), - [anon_sym_as] = ACTIONS(2812), - [anon_sym_LBRACE] = ACTIONS(2810), - [anon_sym_COMMA] = ACTIONS(2810), - [anon_sym_LPAREN] = ACTIONS(2810), - [anon_sym_PIPE] = ACTIONS(2812), - [anon_sym_fn] = ACTIONS(2812), - [anon_sym_PLUS] = ACTIONS(2812), - [anon_sym_DASH] = ACTIONS(2812), - [anon_sym_STAR] = ACTIONS(2810), - [anon_sym_SLASH] = ACTIONS(2812), - [anon_sym_PERCENT] = ACTIONS(2810), - [anon_sym_LT] = ACTIONS(2812), - [anon_sym_GT] = ACTIONS(2812), - [anon_sym_EQ_EQ] = ACTIONS(2810), - [anon_sym_BANG_EQ] = ACTIONS(2810), - [anon_sym_LT_EQ] = ACTIONS(2810), - [anon_sym_GT_EQ] = ACTIONS(2810), - [anon_sym_LBRACK] = ACTIONS(2810), - [anon_sym_RBRACK] = ACTIONS(2810), - [anon_sym_struct] = ACTIONS(2812), - [anon_sym_mut] = ACTIONS(2812), - [anon_sym_PLUS_PLUS] = ACTIONS(2810), - [anon_sym_DASH_DASH] = ACTIONS(2810), - [anon_sym_QMARK] = ACTIONS(2812), - [anon_sym_BANG] = ACTIONS(2812), - [anon_sym_go] = ACTIONS(2812), - [anon_sym_spawn] = ACTIONS(2812), - [anon_sym_json_DOTdecode] = ACTIONS(2810), - [anon_sym_LBRACK2] = ACTIONS(2812), - [anon_sym_TILDE] = ACTIONS(2810), - [anon_sym_CARET] = ACTIONS(2810), - [anon_sym_AMP] = ACTIONS(2812), - [anon_sym_LT_DASH] = ACTIONS(2810), - [anon_sym_LT_LT] = ACTIONS(2810), - [anon_sym_GT_GT] = ACTIONS(2812), - [anon_sym_GT_GT_GT] = ACTIONS(2810), - [anon_sym_AMP_CARET] = ACTIONS(2810), - [anon_sym_AMP_AMP] = ACTIONS(2810), - [anon_sym_PIPE_PIPE] = ACTIONS(2810), - [anon_sym_or] = ACTIONS(2812), - [sym_none] = ACTIONS(2812), - [sym_true] = ACTIONS(2812), - [sym_false] = ACTIONS(2812), - [sym_nil] = ACTIONS(2812), - [anon_sym_QMARK_DOT] = ACTIONS(2810), - [anon_sym_POUND_LBRACK] = ACTIONS(2810), - [anon_sym_if] = ACTIONS(2812), - [anon_sym_DOLLARif] = ACTIONS(2812), - [anon_sym_is] = ACTIONS(2812), - [anon_sym_BANGis] = ACTIONS(2810), - [anon_sym_in] = ACTIONS(2812), - [anon_sym_BANGin] = ACTIONS(2810), - [anon_sym_match] = ACTIONS(2812), - [anon_sym_select] = ACTIONS(2812), - [anon_sym_lock] = ACTIONS(2812), - [anon_sym_rlock] = ACTIONS(2812), - [anon_sym_unsafe] = ACTIONS(2812), - [anon_sym_sql] = ACTIONS(2812), - [sym_int_literal] = ACTIONS(2812), - [sym_float_literal] = ACTIONS(2810), - [sym_rune_literal] = ACTIONS(2810), - [anon_sym_AT] = ACTIONS(2812), - [anon_sym_shared] = ACTIONS(2812), - [anon_sym_map_LBRACK] = ACTIONS(2810), - [anon_sym_chan] = ACTIONS(2812), - [anon_sym_thread] = ACTIONS(2812), - [anon_sym_atomic] = ACTIONS(2812), - [sym___double_quote] = ACTIONS(2810), - [sym___single_quote] = ACTIONS(2810), - [sym___c_double_quote] = ACTIONS(2810), - [sym___c_single_quote] = ACTIONS(2810), - [sym___r_double_quote] = ACTIONS(2810), - [sym___r_single_quote] = ACTIONS(2810), - }, - [1356] = { - [sym_identifier] = ACTIONS(2808), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2808), - [anon_sym_as] = ACTIONS(2808), - [anon_sym_LBRACE] = ACTIONS(2806), - [anon_sym_COMMA] = ACTIONS(2806), - [anon_sym_LPAREN] = ACTIONS(2806), - [anon_sym_PIPE] = ACTIONS(2808), - [anon_sym_fn] = ACTIONS(2808), - [anon_sym_PLUS] = ACTIONS(2808), - [anon_sym_DASH] = ACTIONS(2808), - [anon_sym_STAR] = ACTIONS(2806), - [anon_sym_SLASH] = ACTIONS(2808), - [anon_sym_PERCENT] = ACTIONS(2806), - [anon_sym_LT] = ACTIONS(2808), - [anon_sym_GT] = ACTIONS(2808), - [anon_sym_EQ_EQ] = ACTIONS(2806), - [anon_sym_BANG_EQ] = ACTIONS(2806), - [anon_sym_LT_EQ] = ACTIONS(2806), - [anon_sym_GT_EQ] = ACTIONS(2806), - [anon_sym_LBRACK] = ACTIONS(2806), - [anon_sym_RBRACK] = ACTIONS(2806), - [anon_sym_struct] = ACTIONS(2808), - [anon_sym_mut] = ACTIONS(2808), - [anon_sym_PLUS_PLUS] = ACTIONS(2806), - [anon_sym_DASH_DASH] = ACTIONS(2806), - [anon_sym_QMARK] = ACTIONS(2808), - [anon_sym_BANG] = ACTIONS(2808), - [anon_sym_go] = ACTIONS(2808), - [anon_sym_spawn] = ACTIONS(2808), - [anon_sym_json_DOTdecode] = ACTIONS(2806), - [anon_sym_LBRACK2] = ACTIONS(2808), - [anon_sym_TILDE] = ACTIONS(2806), - [anon_sym_CARET] = ACTIONS(2806), - [anon_sym_AMP] = ACTIONS(2808), - [anon_sym_LT_DASH] = ACTIONS(2806), - [anon_sym_LT_LT] = ACTIONS(2806), - [anon_sym_GT_GT] = ACTIONS(2808), - [anon_sym_GT_GT_GT] = ACTIONS(2806), - [anon_sym_AMP_CARET] = ACTIONS(2806), - [anon_sym_AMP_AMP] = ACTIONS(2806), - [anon_sym_PIPE_PIPE] = ACTIONS(2806), - [anon_sym_or] = ACTIONS(2808), - [sym_none] = ACTIONS(2808), - [sym_true] = ACTIONS(2808), - [sym_false] = ACTIONS(2808), - [sym_nil] = ACTIONS(2808), - [anon_sym_QMARK_DOT] = ACTIONS(2806), - [anon_sym_POUND_LBRACK] = ACTIONS(2806), - [anon_sym_if] = ACTIONS(2808), - [anon_sym_DOLLARif] = ACTIONS(2808), - [anon_sym_is] = ACTIONS(2808), - [anon_sym_BANGis] = ACTIONS(2806), - [anon_sym_in] = ACTIONS(2808), - [anon_sym_BANGin] = ACTIONS(2806), - [anon_sym_match] = ACTIONS(2808), - [anon_sym_select] = ACTIONS(2808), - [anon_sym_lock] = ACTIONS(2808), - [anon_sym_rlock] = ACTIONS(2808), - [anon_sym_unsafe] = ACTIONS(2808), - [anon_sym_sql] = ACTIONS(2808), - [sym_int_literal] = ACTIONS(2808), - [sym_float_literal] = ACTIONS(2806), - [sym_rune_literal] = ACTIONS(2806), - [anon_sym_AT] = ACTIONS(2808), - [anon_sym_shared] = ACTIONS(2808), - [anon_sym_map_LBRACK] = ACTIONS(2806), - [anon_sym_chan] = ACTIONS(2808), - [anon_sym_thread] = ACTIONS(2808), - [anon_sym_atomic] = ACTIONS(2808), - [sym___double_quote] = ACTIONS(2806), - [sym___single_quote] = ACTIONS(2806), - [sym___c_double_quote] = ACTIONS(2806), - [sym___c_single_quote] = ACTIONS(2806), - [sym___r_double_quote] = ACTIONS(2806), - [sym___r_single_quote] = ACTIONS(2806), - }, - [1357] = { - [sym_identifier] = ACTIONS(2860), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2860), - [anon_sym_as] = ACTIONS(2860), - [anon_sym_LBRACE] = ACTIONS(2858), - [anon_sym_COMMA] = ACTIONS(2858), - [anon_sym_LPAREN] = ACTIONS(2858), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_fn] = ACTIONS(2860), - [anon_sym_PLUS] = ACTIONS(2860), - [anon_sym_DASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_SLASH] = ACTIONS(2860), - [anon_sym_PERCENT] = ACTIONS(2858), - [anon_sym_LT] = ACTIONS(2860), - [anon_sym_GT] = ACTIONS(2860), - [anon_sym_EQ_EQ] = ACTIONS(2858), - [anon_sym_BANG_EQ] = ACTIONS(2858), - [anon_sym_LT_EQ] = ACTIONS(2858), - [anon_sym_GT_EQ] = ACTIONS(2858), - [anon_sym_LBRACK] = ACTIONS(2858), - [anon_sym_RBRACK] = ACTIONS(2858), - [anon_sym_struct] = ACTIONS(2860), - [anon_sym_mut] = ACTIONS(2860), - [anon_sym_PLUS_PLUS] = ACTIONS(2858), - [anon_sym_DASH_DASH] = ACTIONS(2858), - [anon_sym_QMARK] = ACTIONS(2860), - [anon_sym_BANG] = ACTIONS(2860), - [anon_sym_go] = ACTIONS(2860), - [anon_sym_spawn] = ACTIONS(2860), - [anon_sym_json_DOTdecode] = ACTIONS(2858), - [anon_sym_LBRACK2] = ACTIONS(2860), - [anon_sym_TILDE] = ACTIONS(2858), - [anon_sym_CARET] = ACTIONS(2858), - [anon_sym_AMP] = ACTIONS(2860), - [anon_sym_LT_DASH] = ACTIONS(2858), - [anon_sym_LT_LT] = ACTIONS(2858), - [anon_sym_GT_GT] = ACTIONS(2860), - [anon_sym_GT_GT_GT] = ACTIONS(2858), - [anon_sym_AMP_CARET] = ACTIONS(2858), - [anon_sym_AMP_AMP] = ACTIONS(2858), - [anon_sym_PIPE_PIPE] = ACTIONS(2858), - [anon_sym_or] = ACTIONS(2860), - [sym_none] = ACTIONS(2860), - [sym_true] = ACTIONS(2860), - [sym_false] = ACTIONS(2860), - [sym_nil] = ACTIONS(2860), - [anon_sym_QMARK_DOT] = ACTIONS(2858), - [anon_sym_POUND_LBRACK] = ACTIONS(2858), - [anon_sym_if] = ACTIONS(2860), - [anon_sym_DOLLARif] = ACTIONS(2860), - [anon_sym_is] = ACTIONS(2860), - [anon_sym_BANGis] = ACTIONS(2858), - [anon_sym_in] = ACTIONS(2860), - [anon_sym_BANGin] = ACTIONS(2858), - [anon_sym_match] = ACTIONS(2860), - [anon_sym_select] = ACTIONS(2860), - [anon_sym_lock] = ACTIONS(2860), - [anon_sym_rlock] = ACTIONS(2860), - [anon_sym_unsafe] = ACTIONS(2860), - [anon_sym_sql] = ACTIONS(2860), - [sym_int_literal] = ACTIONS(2860), - [sym_float_literal] = ACTIONS(2858), - [sym_rune_literal] = ACTIONS(2858), - [anon_sym_AT] = ACTIONS(2860), - [anon_sym_shared] = ACTIONS(2860), - [anon_sym_map_LBRACK] = ACTIONS(2858), - [anon_sym_chan] = ACTIONS(2860), - [anon_sym_thread] = ACTIONS(2860), - [anon_sym_atomic] = ACTIONS(2860), - [sym___double_quote] = ACTIONS(2858), - [sym___single_quote] = ACTIONS(2858), - [sym___c_double_quote] = ACTIONS(2858), - [sym___c_single_quote] = ACTIONS(2858), - [sym___r_double_quote] = ACTIONS(2858), - [sym___r_single_quote] = ACTIONS(2858), - }, - [1358] = { - [sym_identifier] = ACTIONS(3073), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3073), - [anon_sym_as] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(3071), - [anon_sym_COMMA] = ACTIONS(3071), - [anon_sym_LPAREN] = ACTIONS(3071), - [anon_sym_PIPE] = ACTIONS(3073), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_PLUS] = ACTIONS(3073), - [anon_sym_DASH] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(3071), - [anon_sym_SLASH] = ACTIONS(3073), - [anon_sym_PERCENT] = ACTIONS(3071), - [anon_sym_LT] = ACTIONS(3073), - [anon_sym_GT] = ACTIONS(3073), - [anon_sym_EQ_EQ] = ACTIONS(3071), - [anon_sym_BANG_EQ] = ACTIONS(3071), - [anon_sym_LT_EQ] = ACTIONS(3071), - [anon_sym_GT_EQ] = ACTIONS(3071), - [anon_sym_LBRACK] = ACTIONS(3071), - [anon_sym_RBRACK] = ACTIONS(3071), - [anon_sym_struct] = ACTIONS(3073), - [anon_sym_mut] = ACTIONS(3073), - [anon_sym_PLUS_PLUS] = ACTIONS(3071), - [anon_sym_DASH_DASH] = ACTIONS(3071), - [anon_sym_QMARK] = ACTIONS(3073), - [anon_sym_BANG] = ACTIONS(3073), - [anon_sym_go] = ACTIONS(3073), - [anon_sym_spawn] = ACTIONS(3073), - [anon_sym_json_DOTdecode] = ACTIONS(3071), - [anon_sym_LBRACK2] = ACTIONS(3073), - [anon_sym_TILDE] = ACTIONS(3071), - [anon_sym_CARET] = ACTIONS(3071), - [anon_sym_AMP] = ACTIONS(3073), - [anon_sym_LT_DASH] = ACTIONS(3071), - [anon_sym_LT_LT] = ACTIONS(3071), - [anon_sym_GT_GT] = ACTIONS(3073), - [anon_sym_GT_GT_GT] = ACTIONS(3071), - [anon_sym_AMP_CARET] = ACTIONS(3071), - [anon_sym_AMP_AMP] = ACTIONS(3071), - [anon_sym_PIPE_PIPE] = ACTIONS(3071), - [anon_sym_or] = ACTIONS(3073), - [sym_none] = ACTIONS(3073), - [sym_true] = ACTIONS(3073), - [sym_false] = ACTIONS(3073), - [sym_nil] = ACTIONS(3073), - [anon_sym_QMARK_DOT] = ACTIONS(3071), - [anon_sym_POUND_LBRACK] = ACTIONS(3071), - [anon_sym_if] = ACTIONS(3073), - [anon_sym_DOLLARif] = ACTIONS(3073), - [anon_sym_is] = ACTIONS(3073), - [anon_sym_BANGis] = ACTIONS(3071), - [anon_sym_in] = ACTIONS(3073), - [anon_sym_BANGin] = ACTIONS(3071), - [anon_sym_match] = ACTIONS(3073), - [anon_sym_select] = ACTIONS(3073), - [anon_sym_lock] = ACTIONS(3073), - [anon_sym_rlock] = ACTIONS(3073), - [anon_sym_unsafe] = ACTIONS(3073), - [anon_sym_sql] = ACTIONS(3073), - [sym_int_literal] = ACTIONS(3073), - [sym_float_literal] = ACTIONS(3071), - [sym_rune_literal] = ACTIONS(3071), - [anon_sym_AT] = ACTIONS(3073), - [anon_sym_shared] = ACTIONS(3073), - [anon_sym_map_LBRACK] = ACTIONS(3071), - [anon_sym_chan] = ACTIONS(3073), - [anon_sym_thread] = ACTIONS(3073), - [anon_sym_atomic] = ACTIONS(3073), - [sym___double_quote] = ACTIONS(3071), - [sym___single_quote] = ACTIONS(3071), - [sym___c_double_quote] = ACTIONS(3071), - [sym___c_single_quote] = ACTIONS(3071), - [sym___r_double_quote] = ACTIONS(3071), - [sym___r_single_quote] = ACTIONS(3071), - }, - [1359] = { - [sym_identifier] = ACTIONS(3077), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3077), - [anon_sym_as] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(3075), - [anon_sym_COMMA] = ACTIONS(3075), - [anon_sym_LPAREN] = ACTIONS(3075), - [anon_sym_PIPE] = ACTIONS(3077), - [anon_sym_fn] = ACTIONS(3077), - [anon_sym_PLUS] = ACTIONS(3077), - [anon_sym_DASH] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(3075), - [anon_sym_SLASH] = ACTIONS(3077), - [anon_sym_PERCENT] = ACTIONS(3075), - [anon_sym_LT] = ACTIONS(3077), - [anon_sym_GT] = ACTIONS(3077), - [anon_sym_EQ_EQ] = ACTIONS(3075), - [anon_sym_BANG_EQ] = ACTIONS(3075), - [anon_sym_LT_EQ] = ACTIONS(3075), - [anon_sym_GT_EQ] = ACTIONS(3075), - [anon_sym_LBRACK] = ACTIONS(3075), - [anon_sym_RBRACK] = ACTIONS(3075), - [anon_sym_struct] = ACTIONS(3077), - [anon_sym_mut] = ACTIONS(3077), - [anon_sym_PLUS_PLUS] = ACTIONS(3075), - [anon_sym_DASH_DASH] = ACTIONS(3075), - [anon_sym_QMARK] = ACTIONS(3077), - [anon_sym_BANG] = ACTIONS(3077), - [anon_sym_go] = ACTIONS(3077), - [anon_sym_spawn] = ACTIONS(3077), - [anon_sym_json_DOTdecode] = ACTIONS(3075), - [anon_sym_LBRACK2] = ACTIONS(3077), - [anon_sym_TILDE] = ACTIONS(3075), - [anon_sym_CARET] = ACTIONS(3075), - [anon_sym_AMP] = ACTIONS(3077), - [anon_sym_LT_DASH] = ACTIONS(3075), - [anon_sym_LT_LT] = ACTIONS(3075), - [anon_sym_GT_GT] = ACTIONS(3077), - [anon_sym_GT_GT_GT] = ACTIONS(3075), - [anon_sym_AMP_CARET] = ACTIONS(3075), - [anon_sym_AMP_AMP] = ACTIONS(3075), - [anon_sym_PIPE_PIPE] = ACTIONS(3075), - [anon_sym_or] = ACTIONS(3077), - [sym_none] = ACTIONS(3077), - [sym_true] = ACTIONS(3077), - [sym_false] = ACTIONS(3077), - [sym_nil] = ACTIONS(3077), - [anon_sym_QMARK_DOT] = ACTIONS(3075), - [anon_sym_POUND_LBRACK] = ACTIONS(3075), - [anon_sym_if] = ACTIONS(3077), - [anon_sym_DOLLARif] = ACTIONS(3077), - [anon_sym_is] = ACTIONS(3077), - [anon_sym_BANGis] = ACTIONS(3075), - [anon_sym_in] = ACTIONS(3077), - [anon_sym_BANGin] = ACTIONS(3075), - [anon_sym_match] = ACTIONS(3077), - [anon_sym_select] = ACTIONS(3077), - [anon_sym_lock] = ACTIONS(3077), - [anon_sym_rlock] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(3077), - [anon_sym_sql] = ACTIONS(3077), - [sym_int_literal] = ACTIONS(3077), - [sym_float_literal] = ACTIONS(3075), - [sym_rune_literal] = ACTIONS(3075), - [anon_sym_AT] = ACTIONS(3077), - [anon_sym_shared] = ACTIONS(3077), - [anon_sym_map_LBRACK] = ACTIONS(3075), - [anon_sym_chan] = ACTIONS(3077), - [anon_sym_thread] = ACTIONS(3077), - [anon_sym_atomic] = ACTIONS(3077), - [sym___double_quote] = ACTIONS(3075), - [sym___single_quote] = ACTIONS(3075), - [sym___c_double_quote] = ACTIONS(3075), - [sym___c_single_quote] = ACTIONS(3075), - [sym___r_double_quote] = ACTIONS(3075), - [sym___r_single_quote] = ACTIONS(3075), - }, - [1360] = { - [sym_identifier] = ACTIONS(3117), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3117), - [anon_sym_as] = ACTIONS(3117), - [anon_sym_LBRACE] = ACTIONS(3115), - [anon_sym_COMMA] = ACTIONS(3115), - [anon_sym_LPAREN] = ACTIONS(3115), - [anon_sym_PIPE] = ACTIONS(3117), - [anon_sym_fn] = ACTIONS(3117), - [anon_sym_PLUS] = ACTIONS(3117), - [anon_sym_DASH] = ACTIONS(3117), - [anon_sym_STAR] = ACTIONS(3115), - [anon_sym_SLASH] = ACTIONS(3117), - [anon_sym_PERCENT] = ACTIONS(3115), - [anon_sym_LT] = ACTIONS(3117), - [anon_sym_GT] = ACTIONS(3117), - [anon_sym_EQ_EQ] = ACTIONS(3115), - [anon_sym_BANG_EQ] = ACTIONS(3115), - [anon_sym_LT_EQ] = ACTIONS(3115), - [anon_sym_GT_EQ] = ACTIONS(3115), - [anon_sym_LBRACK] = ACTIONS(3115), - [anon_sym_RBRACK] = ACTIONS(3115), - [anon_sym_struct] = ACTIONS(3117), - [anon_sym_mut] = ACTIONS(3117), - [anon_sym_PLUS_PLUS] = ACTIONS(3115), - [anon_sym_DASH_DASH] = ACTIONS(3115), - [anon_sym_QMARK] = ACTIONS(3117), - [anon_sym_BANG] = ACTIONS(3117), - [anon_sym_go] = ACTIONS(3117), - [anon_sym_spawn] = ACTIONS(3117), - [anon_sym_json_DOTdecode] = ACTIONS(3115), - [anon_sym_LBRACK2] = ACTIONS(3117), - [anon_sym_TILDE] = ACTIONS(3115), - [anon_sym_CARET] = ACTIONS(3115), - [anon_sym_AMP] = ACTIONS(3117), - [anon_sym_LT_DASH] = ACTIONS(3115), - [anon_sym_LT_LT] = ACTIONS(3115), - [anon_sym_GT_GT] = ACTIONS(3117), - [anon_sym_GT_GT_GT] = ACTIONS(3115), - [anon_sym_AMP_CARET] = ACTIONS(3115), - [anon_sym_AMP_AMP] = ACTIONS(3115), - [anon_sym_PIPE_PIPE] = ACTIONS(3115), - [anon_sym_or] = ACTIONS(3117), - [sym_none] = ACTIONS(3117), - [sym_true] = ACTIONS(3117), - [sym_false] = ACTIONS(3117), - [sym_nil] = ACTIONS(3117), - [anon_sym_QMARK_DOT] = ACTIONS(3115), - [anon_sym_POUND_LBRACK] = ACTIONS(3115), - [anon_sym_if] = ACTIONS(3117), - [anon_sym_DOLLARif] = ACTIONS(3117), - [anon_sym_is] = ACTIONS(3117), - [anon_sym_BANGis] = ACTIONS(3115), - [anon_sym_in] = ACTIONS(3117), - [anon_sym_BANGin] = ACTIONS(3115), - [anon_sym_match] = ACTIONS(3117), - [anon_sym_select] = ACTIONS(3117), - [anon_sym_lock] = ACTIONS(3117), - [anon_sym_rlock] = ACTIONS(3117), - [anon_sym_unsafe] = ACTIONS(3117), - [anon_sym_sql] = ACTIONS(3117), - [sym_int_literal] = ACTIONS(3117), - [sym_float_literal] = ACTIONS(3115), - [sym_rune_literal] = ACTIONS(3115), - [anon_sym_AT] = ACTIONS(3117), - [anon_sym_shared] = ACTIONS(3117), - [anon_sym_map_LBRACK] = ACTIONS(3115), - [anon_sym_chan] = ACTIONS(3117), - [anon_sym_thread] = ACTIONS(3117), - [anon_sym_atomic] = ACTIONS(3117), - [sym___double_quote] = ACTIONS(3115), - [sym___single_quote] = ACTIONS(3115), - [sym___c_double_quote] = ACTIONS(3115), - [sym___c_single_quote] = ACTIONS(3115), - [sym___r_double_quote] = ACTIONS(3115), - [sym___r_single_quote] = ACTIONS(3115), - }, - [1361] = { - [sym_identifier] = ACTIONS(3125), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3125), - [anon_sym_as] = ACTIONS(3125), - [anon_sym_LBRACE] = ACTIONS(3123), - [anon_sym_COMMA] = ACTIONS(3123), - [anon_sym_LPAREN] = ACTIONS(3123), - [anon_sym_PIPE] = ACTIONS(3125), - [anon_sym_fn] = ACTIONS(3125), - [anon_sym_PLUS] = ACTIONS(3125), - [anon_sym_DASH] = ACTIONS(3125), - [anon_sym_STAR] = ACTIONS(3123), - [anon_sym_SLASH] = ACTIONS(3125), - [anon_sym_PERCENT] = ACTIONS(3123), - [anon_sym_LT] = ACTIONS(3125), - [anon_sym_GT] = ACTIONS(3125), - [anon_sym_EQ_EQ] = ACTIONS(3123), - [anon_sym_BANG_EQ] = ACTIONS(3123), - [anon_sym_LT_EQ] = ACTIONS(3123), - [anon_sym_GT_EQ] = ACTIONS(3123), - [anon_sym_LBRACK] = ACTIONS(3123), - [anon_sym_RBRACK] = ACTIONS(3123), - [anon_sym_struct] = ACTIONS(3125), - [anon_sym_mut] = ACTIONS(3125), - [anon_sym_PLUS_PLUS] = ACTIONS(3123), - [anon_sym_DASH_DASH] = ACTIONS(3123), - [anon_sym_QMARK] = ACTIONS(3125), - [anon_sym_BANG] = ACTIONS(3125), - [anon_sym_go] = ACTIONS(3125), - [anon_sym_spawn] = ACTIONS(3125), - [anon_sym_json_DOTdecode] = ACTIONS(3123), - [anon_sym_LBRACK2] = ACTIONS(3125), - [anon_sym_TILDE] = ACTIONS(3123), - [anon_sym_CARET] = ACTIONS(3123), - [anon_sym_AMP] = ACTIONS(3125), - [anon_sym_LT_DASH] = ACTIONS(3123), - [anon_sym_LT_LT] = ACTIONS(3123), - [anon_sym_GT_GT] = ACTIONS(3125), - [anon_sym_GT_GT_GT] = ACTIONS(3123), - [anon_sym_AMP_CARET] = ACTIONS(3123), - [anon_sym_AMP_AMP] = ACTIONS(3123), - [anon_sym_PIPE_PIPE] = ACTIONS(3123), - [anon_sym_or] = ACTIONS(3125), - [sym_none] = ACTIONS(3125), - [sym_true] = ACTIONS(3125), - [sym_false] = ACTIONS(3125), - [sym_nil] = ACTIONS(3125), - [anon_sym_QMARK_DOT] = ACTIONS(3123), - [anon_sym_POUND_LBRACK] = ACTIONS(3123), - [anon_sym_if] = ACTIONS(3125), - [anon_sym_DOLLARif] = ACTIONS(3125), - [anon_sym_is] = ACTIONS(3125), - [anon_sym_BANGis] = ACTIONS(3123), - [anon_sym_in] = ACTIONS(3125), - [anon_sym_BANGin] = ACTIONS(3123), - [anon_sym_match] = ACTIONS(3125), - [anon_sym_select] = ACTIONS(3125), - [anon_sym_lock] = ACTIONS(3125), - [anon_sym_rlock] = ACTIONS(3125), - [anon_sym_unsafe] = ACTIONS(3125), - [anon_sym_sql] = ACTIONS(3125), - [sym_int_literal] = ACTIONS(3125), - [sym_float_literal] = ACTIONS(3123), - [sym_rune_literal] = ACTIONS(3123), - [anon_sym_AT] = ACTIONS(3125), - [anon_sym_shared] = ACTIONS(3125), - [anon_sym_map_LBRACK] = ACTIONS(3123), - [anon_sym_chan] = ACTIONS(3125), - [anon_sym_thread] = ACTIONS(3125), - [anon_sym_atomic] = ACTIONS(3125), - [sym___double_quote] = ACTIONS(3123), - [sym___single_quote] = ACTIONS(3123), - [sym___c_double_quote] = ACTIONS(3123), - [sym___c_single_quote] = ACTIONS(3123), - [sym___r_double_quote] = ACTIONS(3123), - [sym___r_single_quote] = ACTIONS(3123), - }, - [1362] = { - [sym_identifier] = ACTIONS(2903), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_as] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2901), - [anon_sym_COMMA] = ACTIONS(2901), - [anon_sym_LPAREN] = ACTIONS(2901), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2901), - [anon_sym_SLASH] = ACTIONS(2903), - [anon_sym_PERCENT] = ACTIONS(2901), - [anon_sym_LT] = ACTIONS(2903), - [anon_sym_GT] = ACTIONS(2903), - [anon_sym_EQ_EQ] = ACTIONS(2901), - [anon_sym_BANG_EQ] = ACTIONS(2901), - [anon_sym_LT_EQ] = ACTIONS(2901), - [anon_sym_GT_EQ] = ACTIONS(2901), - [anon_sym_LBRACK] = ACTIONS(2901), - [anon_sym_RBRACK] = ACTIONS(2901), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_PLUS_PLUS] = ACTIONS(2901), - [anon_sym_DASH_DASH] = ACTIONS(2901), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2901), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2901), - [anon_sym_CARET] = ACTIONS(2901), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2901), - [anon_sym_LT_LT] = ACTIONS(2901), - [anon_sym_GT_GT] = ACTIONS(2903), - [anon_sym_GT_GT_GT] = ACTIONS(2901), - [anon_sym_AMP_CARET] = ACTIONS(2901), - [anon_sym_AMP_AMP] = ACTIONS(2901), - [anon_sym_PIPE_PIPE] = ACTIONS(2901), - [anon_sym_or] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_QMARK_DOT] = ACTIONS(2901), - [anon_sym_POUND_LBRACK] = ACTIONS(2901), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_is] = ACTIONS(2903), - [anon_sym_BANGis] = ACTIONS(2901), - [anon_sym_in] = ACTIONS(2903), - [anon_sym_BANGin] = ACTIONS(2901), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2901), - [sym_rune_literal] = ACTIONS(2901), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2901), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2901), - [sym___single_quote] = ACTIONS(2901), - [sym___c_double_quote] = ACTIONS(2901), - [sym___c_single_quote] = ACTIONS(2901), - [sym___r_double_quote] = ACTIONS(2901), - [sym___r_single_quote] = ACTIONS(2901), - }, - [1363] = { - [sym_identifier] = ACTIONS(3141), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3141), - [anon_sym_as] = ACTIONS(3141), - [anon_sym_LBRACE] = ACTIONS(3139), - [anon_sym_COMMA] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3139), - [anon_sym_PIPE] = ACTIONS(3141), - [anon_sym_fn] = ACTIONS(3141), - [anon_sym_PLUS] = ACTIONS(3141), - [anon_sym_DASH] = ACTIONS(3141), - [anon_sym_STAR] = ACTIONS(3139), - [anon_sym_SLASH] = ACTIONS(3141), - [anon_sym_PERCENT] = ACTIONS(3139), - [anon_sym_LT] = ACTIONS(3141), - [anon_sym_GT] = ACTIONS(3141), - [anon_sym_EQ_EQ] = ACTIONS(3139), - [anon_sym_BANG_EQ] = ACTIONS(3139), - [anon_sym_LT_EQ] = ACTIONS(3139), - [anon_sym_GT_EQ] = ACTIONS(3139), - [anon_sym_LBRACK] = ACTIONS(3139), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_struct] = ACTIONS(3141), - [anon_sym_mut] = ACTIONS(3141), - [anon_sym_PLUS_PLUS] = ACTIONS(3139), - [anon_sym_DASH_DASH] = ACTIONS(3139), - [anon_sym_QMARK] = ACTIONS(3141), - [anon_sym_BANG] = ACTIONS(3141), - [anon_sym_go] = ACTIONS(3141), - [anon_sym_spawn] = ACTIONS(3141), - [anon_sym_json_DOTdecode] = ACTIONS(3139), - [anon_sym_LBRACK2] = ACTIONS(3141), - [anon_sym_TILDE] = ACTIONS(3139), - [anon_sym_CARET] = ACTIONS(3139), - [anon_sym_AMP] = ACTIONS(3141), - [anon_sym_LT_DASH] = ACTIONS(3139), - [anon_sym_LT_LT] = ACTIONS(3139), - [anon_sym_GT_GT] = ACTIONS(3141), - [anon_sym_GT_GT_GT] = ACTIONS(3139), - [anon_sym_AMP_CARET] = ACTIONS(3139), - [anon_sym_AMP_AMP] = ACTIONS(3139), - [anon_sym_PIPE_PIPE] = ACTIONS(3139), - [anon_sym_or] = ACTIONS(3141), - [sym_none] = ACTIONS(3141), - [sym_true] = ACTIONS(3141), - [sym_false] = ACTIONS(3141), - [sym_nil] = ACTIONS(3141), - [anon_sym_QMARK_DOT] = ACTIONS(3139), - [anon_sym_POUND_LBRACK] = ACTIONS(3139), - [anon_sym_if] = ACTIONS(3141), - [anon_sym_DOLLARif] = ACTIONS(3141), - [anon_sym_is] = ACTIONS(3141), - [anon_sym_BANGis] = ACTIONS(3139), - [anon_sym_in] = ACTIONS(3141), - [anon_sym_BANGin] = ACTIONS(3139), - [anon_sym_match] = ACTIONS(3141), - [anon_sym_select] = ACTIONS(3141), - [anon_sym_lock] = ACTIONS(3141), - [anon_sym_rlock] = ACTIONS(3141), - [anon_sym_unsafe] = ACTIONS(3141), - [anon_sym_sql] = ACTIONS(3141), - [sym_int_literal] = ACTIONS(3141), - [sym_float_literal] = ACTIONS(3139), - [sym_rune_literal] = ACTIONS(3139), - [anon_sym_AT] = ACTIONS(3141), - [anon_sym_shared] = ACTIONS(3141), - [anon_sym_map_LBRACK] = ACTIONS(3139), - [anon_sym_chan] = ACTIONS(3141), - [anon_sym_thread] = ACTIONS(3141), - [anon_sym_atomic] = ACTIONS(3141), - [sym___double_quote] = ACTIONS(3139), - [sym___single_quote] = ACTIONS(3139), - [sym___c_double_quote] = ACTIONS(3139), - [sym___c_single_quote] = ACTIONS(3139), - [sym___r_double_quote] = ACTIONS(3139), - [sym___r_single_quote] = ACTIONS(3139), - }, - [1364] = { - [sym_identifier] = ACTIONS(3145), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3145), - [anon_sym_as] = ACTIONS(3145), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_COMMA] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_PIPE] = ACTIONS(3145), - [anon_sym_fn] = ACTIONS(3145), - [anon_sym_PLUS] = ACTIONS(3145), - [anon_sym_DASH] = ACTIONS(3145), - [anon_sym_STAR] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3145), - [anon_sym_PERCENT] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3145), - [anon_sym_GT] = ACTIONS(3145), - [anon_sym_EQ_EQ] = ACTIONS(3143), - [anon_sym_BANG_EQ] = ACTIONS(3143), - [anon_sym_LT_EQ] = ACTIONS(3143), - [anon_sym_GT_EQ] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_struct] = ACTIONS(3145), - [anon_sym_mut] = ACTIONS(3145), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [anon_sym_QMARK] = ACTIONS(3145), - [anon_sym_BANG] = ACTIONS(3145), - [anon_sym_go] = ACTIONS(3145), - [anon_sym_spawn] = ACTIONS(3145), - [anon_sym_json_DOTdecode] = ACTIONS(3143), - [anon_sym_LBRACK2] = ACTIONS(3145), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_CARET] = ACTIONS(3143), - [anon_sym_AMP] = ACTIONS(3145), - [anon_sym_LT_DASH] = ACTIONS(3143), - [anon_sym_LT_LT] = ACTIONS(3143), - [anon_sym_GT_GT] = ACTIONS(3145), - [anon_sym_GT_GT_GT] = ACTIONS(3143), - [anon_sym_AMP_CARET] = ACTIONS(3143), - [anon_sym_AMP_AMP] = ACTIONS(3143), - [anon_sym_PIPE_PIPE] = ACTIONS(3143), - [anon_sym_or] = ACTIONS(3145), - [sym_none] = ACTIONS(3145), - [sym_true] = ACTIONS(3145), - [sym_false] = ACTIONS(3145), - [sym_nil] = ACTIONS(3145), - [anon_sym_QMARK_DOT] = ACTIONS(3143), - [anon_sym_POUND_LBRACK] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3145), - [anon_sym_DOLLARif] = ACTIONS(3145), - [anon_sym_is] = ACTIONS(3145), - [anon_sym_BANGis] = ACTIONS(3143), - [anon_sym_in] = ACTIONS(3145), - [anon_sym_BANGin] = ACTIONS(3143), - [anon_sym_match] = ACTIONS(3145), - [anon_sym_select] = ACTIONS(3145), - [anon_sym_lock] = ACTIONS(3145), - [anon_sym_rlock] = ACTIONS(3145), - [anon_sym_unsafe] = ACTIONS(3145), - [anon_sym_sql] = ACTIONS(3145), - [sym_int_literal] = ACTIONS(3145), - [sym_float_literal] = ACTIONS(3143), - [sym_rune_literal] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3145), - [anon_sym_shared] = ACTIONS(3145), - [anon_sym_map_LBRACK] = ACTIONS(3143), - [anon_sym_chan] = ACTIONS(3145), - [anon_sym_thread] = ACTIONS(3145), - [anon_sym_atomic] = ACTIONS(3145), - [sym___double_quote] = ACTIONS(3143), - [sym___single_quote] = ACTIONS(3143), - [sym___c_double_quote] = ACTIONS(3143), - [sym___c_single_quote] = ACTIONS(3143), - [sym___r_double_quote] = ACTIONS(3143), - [sym___r_single_quote] = ACTIONS(3143), - }, - [1365] = { - [sym_identifier] = ACTIONS(2943), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2943), - [anon_sym_as] = ACTIONS(2943), - [anon_sym_LBRACE] = ACTIONS(2941), - [anon_sym_COMMA] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2941), - [anon_sym_PIPE] = ACTIONS(2943), - [anon_sym_fn] = ACTIONS(2943), - [anon_sym_PLUS] = ACTIONS(2943), - [anon_sym_DASH] = ACTIONS(2943), - [anon_sym_STAR] = ACTIONS(2941), - [anon_sym_SLASH] = ACTIONS(2943), - [anon_sym_PERCENT] = ACTIONS(2941), - [anon_sym_LT] = ACTIONS(2943), - [anon_sym_GT] = ACTIONS(2943), - [anon_sym_EQ_EQ] = ACTIONS(2941), - [anon_sym_BANG_EQ] = ACTIONS(2941), - [anon_sym_LT_EQ] = ACTIONS(2941), - [anon_sym_GT_EQ] = ACTIONS(2941), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_RBRACK] = ACTIONS(2941), - [anon_sym_struct] = ACTIONS(2943), - [anon_sym_mut] = ACTIONS(2943), - [anon_sym_PLUS_PLUS] = ACTIONS(2941), - [anon_sym_DASH_DASH] = ACTIONS(2941), - [anon_sym_QMARK] = ACTIONS(2943), - [anon_sym_BANG] = ACTIONS(3670), - [anon_sym_go] = ACTIONS(2943), - [anon_sym_spawn] = ACTIONS(2943), - [anon_sym_json_DOTdecode] = ACTIONS(2941), - [anon_sym_LBRACK2] = ACTIONS(2943), - [anon_sym_TILDE] = ACTIONS(2941), - [anon_sym_CARET] = ACTIONS(2941), - [anon_sym_AMP] = ACTIONS(2943), - [anon_sym_LT_DASH] = ACTIONS(2941), - [anon_sym_LT_LT] = ACTIONS(2941), - [anon_sym_GT_GT] = ACTIONS(2943), - [anon_sym_GT_GT_GT] = ACTIONS(2941), - [anon_sym_AMP_CARET] = ACTIONS(2941), - [anon_sym_AMP_AMP] = ACTIONS(2941), - [anon_sym_PIPE_PIPE] = ACTIONS(2941), - [anon_sym_or] = ACTIONS(2943), - [sym_none] = ACTIONS(2943), - [sym_true] = ACTIONS(2943), - [sym_false] = ACTIONS(2943), - [sym_nil] = ACTIONS(2943), - [anon_sym_QMARK_DOT] = ACTIONS(2941), - [anon_sym_POUND_LBRACK] = ACTIONS(2941), - [anon_sym_if] = ACTIONS(2943), - [anon_sym_DOLLARif] = ACTIONS(2943), - [anon_sym_is] = ACTIONS(2943), - [anon_sym_BANGis] = ACTIONS(2941), - [anon_sym_in] = ACTIONS(2943), - [anon_sym_BANGin] = ACTIONS(2941), - [anon_sym_match] = ACTIONS(2943), - [anon_sym_select] = ACTIONS(2943), - [anon_sym_lock] = ACTIONS(2943), - [anon_sym_rlock] = ACTIONS(2943), - [anon_sym_unsafe] = ACTIONS(2943), - [anon_sym_sql] = ACTIONS(2943), - [sym_int_literal] = ACTIONS(2943), - [sym_float_literal] = ACTIONS(2941), - [sym_rune_literal] = ACTIONS(2941), - [anon_sym_AT] = ACTIONS(2943), - [anon_sym_shared] = ACTIONS(2943), - [anon_sym_map_LBRACK] = ACTIONS(2941), - [anon_sym_chan] = ACTIONS(2943), - [anon_sym_thread] = ACTIONS(2943), - [anon_sym_atomic] = ACTIONS(2943), - [sym___double_quote] = ACTIONS(2941), - [sym___single_quote] = ACTIONS(2941), - [sym___c_double_quote] = ACTIONS(2941), - [sym___c_single_quote] = ACTIONS(2941), - [sym___r_double_quote] = ACTIONS(2941), - [sym___r_single_quote] = ACTIONS(2941), - }, - [1366] = { - [sym_identifier] = ACTIONS(3069), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3069), - [anon_sym_as] = ACTIONS(3069), - [anon_sym_LBRACE] = ACTIONS(3067), - [anon_sym_COMMA] = ACTIONS(3067), - [anon_sym_LPAREN] = ACTIONS(3067), - [anon_sym_PIPE] = ACTIONS(3069), - [anon_sym_fn] = ACTIONS(3069), - [anon_sym_PLUS] = ACTIONS(3069), - [anon_sym_DASH] = ACTIONS(3069), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3069), - [anon_sym_PERCENT] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(3069), - [anon_sym_GT] = ACTIONS(3069), - [anon_sym_EQ_EQ] = ACTIONS(3067), - [anon_sym_BANG_EQ] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3067), - [anon_sym_LBRACK] = ACTIONS(3067), - [anon_sym_RBRACK] = ACTIONS(3067), - [anon_sym_struct] = ACTIONS(3069), - [anon_sym_mut] = ACTIONS(3069), - [anon_sym_PLUS_PLUS] = ACTIONS(3067), - [anon_sym_DASH_DASH] = ACTIONS(3067), - [anon_sym_QMARK] = ACTIONS(3069), - [anon_sym_BANG] = ACTIONS(3069), - [anon_sym_go] = ACTIONS(3069), - [anon_sym_spawn] = ACTIONS(3069), - [anon_sym_json_DOTdecode] = ACTIONS(3067), - [anon_sym_LBRACK2] = ACTIONS(3069), - [anon_sym_TILDE] = ACTIONS(3067), - [anon_sym_CARET] = ACTIONS(3067), - [anon_sym_AMP] = ACTIONS(3069), - [anon_sym_LT_DASH] = ACTIONS(3067), - [anon_sym_LT_LT] = ACTIONS(3067), - [anon_sym_GT_GT] = ACTIONS(3069), - [anon_sym_GT_GT_GT] = ACTIONS(3067), - [anon_sym_AMP_CARET] = ACTIONS(3067), - [anon_sym_AMP_AMP] = ACTIONS(3067), - [anon_sym_PIPE_PIPE] = ACTIONS(3067), - [anon_sym_or] = ACTIONS(3069), - [sym_none] = ACTIONS(3069), - [sym_true] = ACTIONS(3069), - [sym_false] = ACTIONS(3069), - [sym_nil] = ACTIONS(3069), - [anon_sym_QMARK_DOT] = ACTIONS(3067), - [anon_sym_POUND_LBRACK] = ACTIONS(3067), - [anon_sym_if] = ACTIONS(3069), - [anon_sym_DOLLARif] = ACTIONS(3069), - [anon_sym_is] = ACTIONS(3069), - [anon_sym_BANGis] = ACTIONS(3067), - [anon_sym_in] = ACTIONS(3069), - [anon_sym_BANGin] = ACTIONS(3067), - [anon_sym_match] = ACTIONS(3069), - [anon_sym_select] = ACTIONS(3069), - [anon_sym_lock] = ACTIONS(3069), - [anon_sym_rlock] = ACTIONS(3069), - [anon_sym_unsafe] = ACTIONS(3069), - [anon_sym_sql] = ACTIONS(3069), - [sym_int_literal] = ACTIONS(3069), - [sym_float_literal] = ACTIONS(3067), - [sym_rune_literal] = ACTIONS(3067), - [anon_sym_AT] = ACTIONS(3069), - [anon_sym_shared] = ACTIONS(3069), - [anon_sym_map_LBRACK] = ACTIONS(3067), - [anon_sym_chan] = ACTIONS(3069), - [anon_sym_thread] = ACTIONS(3069), - [anon_sym_atomic] = ACTIONS(3069), - [sym___double_quote] = ACTIONS(3067), - [sym___single_quote] = ACTIONS(3067), - [sym___c_double_quote] = ACTIONS(3067), - [sym___c_single_quote] = ACTIONS(3067), - [sym___r_double_quote] = ACTIONS(3067), - [sym___r_single_quote] = ACTIONS(3067), - }, - [1367] = { - [sym_identifier] = ACTIONS(2959), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_as] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2957), - [anon_sym_COMMA] = ACTIONS(2957), - [anon_sym_LPAREN] = ACTIONS(2957), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2957), - [anon_sym_SLASH] = ACTIONS(2959), - [anon_sym_PERCENT] = ACTIONS(2957), - [anon_sym_LT] = ACTIONS(2959), - [anon_sym_GT] = ACTIONS(2959), - [anon_sym_EQ_EQ] = ACTIONS(2957), - [anon_sym_BANG_EQ] = ACTIONS(2957), - [anon_sym_LT_EQ] = ACTIONS(2957), - [anon_sym_GT_EQ] = ACTIONS(2957), - [anon_sym_LBRACK] = ACTIONS(2957), - [anon_sym_RBRACK] = ACTIONS(2957), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_PLUS_PLUS] = ACTIONS(2957), - [anon_sym_DASH_DASH] = ACTIONS(2957), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2957), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2957), - [anon_sym_CARET] = ACTIONS(2957), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2957), - [anon_sym_LT_LT] = ACTIONS(2957), - [anon_sym_GT_GT] = ACTIONS(2959), - [anon_sym_GT_GT_GT] = ACTIONS(2957), - [anon_sym_AMP_CARET] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(2957), - [anon_sym_PIPE_PIPE] = ACTIONS(2957), - [anon_sym_or] = ACTIONS(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_QMARK_DOT] = ACTIONS(2957), - [anon_sym_POUND_LBRACK] = ACTIONS(2957), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_is] = ACTIONS(2959), - [anon_sym_BANGis] = ACTIONS(2957), - [anon_sym_in] = ACTIONS(2959), - [anon_sym_BANGin] = ACTIONS(2957), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2957), - [sym_rune_literal] = ACTIONS(2957), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2957), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2957), - [sym___single_quote] = ACTIONS(2957), - [sym___c_double_quote] = ACTIONS(2957), - [sym___c_single_quote] = ACTIONS(2957), - [sym___r_double_quote] = ACTIONS(2957), - [sym___r_single_quote] = ACTIONS(2957), - }, - [1368] = { - [sym_identifier] = ACTIONS(2967), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2967), - [anon_sym_as] = ACTIONS(2967), - [anon_sym_LBRACE] = ACTIONS(2965), - [anon_sym_COMMA] = ACTIONS(2965), - [anon_sym_LPAREN] = ACTIONS(2965), - [anon_sym_PIPE] = ACTIONS(2967), - [anon_sym_fn] = ACTIONS(2967), - [anon_sym_PLUS] = ACTIONS(2967), - [anon_sym_DASH] = ACTIONS(2967), - [anon_sym_STAR] = ACTIONS(2965), - [anon_sym_SLASH] = ACTIONS(2967), - [anon_sym_PERCENT] = ACTIONS(2965), - [anon_sym_LT] = ACTIONS(2967), - [anon_sym_GT] = ACTIONS(2967), - [anon_sym_EQ_EQ] = ACTIONS(2965), - [anon_sym_BANG_EQ] = ACTIONS(2965), - [anon_sym_LT_EQ] = ACTIONS(2965), - [anon_sym_GT_EQ] = ACTIONS(2965), - [anon_sym_LBRACK] = ACTIONS(2965), - [anon_sym_RBRACK] = ACTIONS(2965), - [anon_sym_struct] = ACTIONS(2967), - [anon_sym_mut] = ACTIONS(2967), - [anon_sym_PLUS_PLUS] = ACTIONS(2965), - [anon_sym_DASH_DASH] = ACTIONS(2965), - [anon_sym_QMARK] = ACTIONS(2967), - [anon_sym_BANG] = ACTIONS(2967), - [anon_sym_go] = ACTIONS(2967), - [anon_sym_spawn] = ACTIONS(2967), - [anon_sym_json_DOTdecode] = ACTIONS(2965), - [anon_sym_LBRACK2] = ACTIONS(2967), - [anon_sym_TILDE] = ACTIONS(2965), - [anon_sym_CARET] = ACTIONS(2965), - [anon_sym_AMP] = ACTIONS(2967), - [anon_sym_LT_DASH] = ACTIONS(2965), - [anon_sym_LT_LT] = ACTIONS(2965), - [anon_sym_GT_GT] = ACTIONS(2967), - [anon_sym_GT_GT_GT] = ACTIONS(2965), - [anon_sym_AMP_CARET] = ACTIONS(2965), - [anon_sym_AMP_AMP] = ACTIONS(2965), - [anon_sym_PIPE_PIPE] = ACTIONS(2965), - [anon_sym_or] = ACTIONS(2967), - [sym_none] = ACTIONS(2967), - [sym_true] = ACTIONS(2967), - [sym_false] = ACTIONS(2967), - [sym_nil] = ACTIONS(2967), - [anon_sym_QMARK_DOT] = ACTIONS(2965), - [anon_sym_POUND_LBRACK] = ACTIONS(2965), - [anon_sym_if] = ACTIONS(2967), - [anon_sym_DOLLARif] = ACTIONS(2967), - [anon_sym_is] = ACTIONS(2967), - [anon_sym_BANGis] = ACTIONS(2965), - [anon_sym_in] = ACTIONS(2967), - [anon_sym_BANGin] = ACTIONS(2965), - [anon_sym_match] = ACTIONS(2967), - [anon_sym_select] = ACTIONS(2967), - [anon_sym_lock] = ACTIONS(2967), - [anon_sym_rlock] = ACTIONS(2967), - [anon_sym_unsafe] = ACTIONS(2967), - [anon_sym_sql] = ACTIONS(2967), - [sym_int_literal] = ACTIONS(2967), - [sym_float_literal] = ACTIONS(2965), - [sym_rune_literal] = ACTIONS(2965), - [anon_sym_AT] = ACTIONS(2967), - [anon_sym_shared] = ACTIONS(2967), - [anon_sym_map_LBRACK] = ACTIONS(2965), - [anon_sym_chan] = ACTIONS(2967), - [anon_sym_thread] = ACTIONS(2967), - [anon_sym_atomic] = ACTIONS(2967), - [sym___double_quote] = ACTIONS(2965), - [sym___single_quote] = ACTIONS(2965), - [sym___c_double_quote] = ACTIONS(2965), - [sym___c_single_quote] = ACTIONS(2965), - [sym___r_double_quote] = ACTIONS(2965), - [sym___r_single_quote] = ACTIONS(2965), - }, - [1369] = { - [sym_identifier] = ACTIONS(2997), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2997), - [anon_sym_as] = ACTIONS(2997), - [anon_sym_LBRACE] = ACTIONS(2995), - [anon_sym_COMMA] = ACTIONS(2995), - [anon_sym_LPAREN] = ACTIONS(2995), - [anon_sym_PIPE] = ACTIONS(2997), - [anon_sym_fn] = ACTIONS(2997), - [anon_sym_PLUS] = ACTIONS(2997), - [anon_sym_DASH] = ACTIONS(2997), - [anon_sym_STAR] = ACTIONS(2995), - [anon_sym_SLASH] = ACTIONS(2997), - [anon_sym_PERCENT] = ACTIONS(2995), - [anon_sym_LT] = ACTIONS(2997), - [anon_sym_GT] = ACTIONS(2997), - [anon_sym_EQ_EQ] = ACTIONS(2995), - [anon_sym_BANG_EQ] = ACTIONS(2995), - [anon_sym_LT_EQ] = ACTIONS(2995), - [anon_sym_GT_EQ] = ACTIONS(2995), - [anon_sym_LBRACK] = ACTIONS(2995), - [anon_sym_RBRACK] = ACTIONS(2995), - [anon_sym_struct] = ACTIONS(2997), - [anon_sym_mut] = ACTIONS(2997), - [anon_sym_PLUS_PLUS] = ACTIONS(2995), - [anon_sym_DASH_DASH] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(2997), - [anon_sym_BANG] = ACTIONS(2997), - [anon_sym_go] = ACTIONS(2997), - [anon_sym_spawn] = ACTIONS(2997), - [anon_sym_json_DOTdecode] = ACTIONS(2995), - [anon_sym_LBRACK2] = ACTIONS(2997), - [anon_sym_TILDE] = ACTIONS(2995), - [anon_sym_CARET] = ACTIONS(2995), - [anon_sym_AMP] = ACTIONS(2997), - [anon_sym_LT_DASH] = ACTIONS(2995), - [anon_sym_LT_LT] = ACTIONS(2995), - [anon_sym_GT_GT] = ACTIONS(2997), - [anon_sym_GT_GT_GT] = ACTIONS(2995), - [anon_sym_AMP_CARET] = ACTIONS(2995), - [anon_sym_AMP_AMP] = ACTIONS(2995), - [anon_sym_PIPE_PIPE] = ACTIONS(2995), - [anon_sym_or] = ACTIONS(2997), - [sym_none] = ACTIONS(2997), - [sym_true] = ACTIONS(2997), - [sym_false] = ACTIONS(2997), - [sym_nil] = ACTIONS(2997), - [anon_sym_QMARK_DOT] = ACTIONS(2995), - [anon_sym_POUND_LBRACK] = ACTIONS(2995), - [anon_sym_if] = ACTIONS(2997), - [anon_sym_DOLLARif] = ACTIONS(2997), - [anon_sym_is] = ACTIONS(2997), - [anon_sym_BANGis] = ACTIONS(2995), - [anon_sym_in] = ACTIONS(2997), - [anon_sym_BANGin] = ACTIONS(2995), - [anon_sym_match] = ACTIONS(2997), - [anon_sym_select] = ACTIONS(2997), - [anon_sym_lock] = ACTIONS(2997), - [anon_sym_rlock] = ACTIONS(2997), - [anon_sym_unsafe] = ACTIONS(2997), - [anon_sym_sql] = ACTIONS(2997), - [sym_int_literal] = ACTIONS(2997), - [sym_float_literal] = ACTIONS(2995), - [sym_rune_literal] = ACTIONS(2995), - [anon_sym_AT] = ACTIONS(2997), - [anon_sym_shared] = ACTIONS(2997), - [anon_sym_map_LBRACK] = ACTIONS(2995), - [anon_sym_chan] = ACTIONS(2997), - [anon_sym_thread] = ACTIONS(2997), - [anon_sym_atomic] = ACTIONS(2997), - [sym___double_quote] = ACTIONS(2995), - [sym___single_quote] = ACTIONS(2995), - [sym___c_double_quote] = ACTIONS(2995), - [sym___c_single_quote] = ACTIONS(2995), - [sym___r_double_quote] = ACTIONS(2995), - [sym___r_single_quote] = ACTIONS(2995), - }, - [1370] = { - [sym_identifier] = ACTIONS(2985), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2985), - [anon_sym_as] = ACTIONS(2985), - [anon_sym_LBRACE] = ACTIONS(2983), - [anon_sym_COMMA] = ACTIONS(2983), - [anon_sym_LPAREN] = ACTIONS(2983), - [anon_sym_PIPE] = ACTIONS(2985), - [anon_sym_fn] = ACTIONS(2985), - [anon_sym_PLUS] = ACTIONS(2985), - [anon_sym_DASH] = ACTIONS(2985), - [anon_sym_STAR] = ACTIONS(2983), - [anon_sym_SLASH] = ACTIONS(2985), - [anon_sym_PERCENT] = ACTIONS(2983), - [anon_sym_LT] = ACTIONS(2985), - [anon_sym_GT] = ACTIONS(2985), - [anon_sym_EQ_EQ] = ACTIONS(2983), - [anon_sym_BANG_EQ] = ACTIONS(2983), - [anon_sym_LT_EQ] = ACTIONS(2983), - [anon_sym_GT_EQ] = ACTIONS(2983), - [anon_sym_LBRACK] = ACTIONS(2983), - [anon_sym_RBRACK] = ACTIONS(2983), - [anon_sym_struct] = ACTIONS(2985), - [anon_sym_mut] = ACTIONS(2985), - [anon_sym_PLUS_PLUS] = ACTIONS(2983), - [anon_sym_DASH_DASH] = ACTIONS(2983), - [anon_sym_QMARK] = ACTIONS(2985), - [anon_sym_BANG] = ACTIONS(2985), - [anon_sym_go] = ACTIONS(2985), - [anon_sym_spawn] = ACTIONS(2985), - [anon_sym_json_DOTdecode] = ACTIONS(2983), - [anon_sym_LBRACK2] = ACTIONS(2985), - [anon_sym_TILDE] = ACTIONS(2983), - [anon_sym_CARET] = ACTIONS(2983), - [anon_sym_AMP] = ACTIONS(2985), - [anon_sym_LT_DASH] = ACTIONS(2983), - [anon_sym_LT_LT] = ACTIONS(2983), - [anon_sym_GT_GT] = ACTIONS(2985), - [anon_sym_GT_GT_GT] = ACTIONS(2983), - [anon_sym_AMP_CARET] = ACTIONS(2983), - [anon_sym_AMP_AMP] = ACTIONS(2983), - [anon_sym_PIPE_PIPE] = ACTIONS(2983), - [anon_sym_or] = ACTIONS(2985), - [sym_none] = ACTIONS(2985), - [sym_true] = ACTIONS(2985), - [sym_false] = ACTIONS(2985), - [sym_nil] = ACTIONS(2985), - [anon_sym_QMARK_DOT] = ACTIONS(2983), - [anon_sym_POUND_LBRACK] = ACTIONS(2983), - [anon_sym_if] = ACTIONS(2985), - [anon_sym_DOLLARif] = ACTIONS(2985), - [anon_sym_is] = ACTIONS(2985), - [anon_sym_BANGis] = ACTIONS(2983), - [anon_sym_in] = ACTIONS(2985), - [anon_sym_BANGin] = ACTIONS(2983), - [anon_sym_match] = ACTIONS(2985), - [anon_sym_select] = ACTIONS(2985), - [anon_sym_lock] = ACTIONS(2985), - [anon_sym_rlock] = ACTIONS(2985), - [anon_sym_unsafe] = ACTIONS(2985), - [anon_sym_sql] = ACTIONS(2985), - [sym_int_literal] = ACTIONS(2985), - [sym_float_literal] = ACTIONS(2983), - [sym_rune_literal] = ACTIONS(2983), - [anon_sym_AT] = ACTIONS(2985), - [anon_sym_shared] = ACTIONS(2985), - [anon_sym_map_LBRACK] = ACTIONS(2983), - [anon_sym_chan] = ACTIONS(2985), - [anon_sym_thread] = ACTIONS(2985), - [anon_sym_atomic] = ACTIONS(2985), - [sym___double_quote] = ACTIONS(2983), - [sym___single_quote] = ACTIONS(2983), - [sym___c_double_quote] = ACTIONS(2983), - [sym___c_single_quote] = ACTIONS(2983), - [sym___r_double_quote] = ACTIONS(2983), - [sym___r_single_quote] = ACTIONS(2983), - }, - [1371] = { - [sym_identifier] = ACTIONS(3005), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3005), - [anon_sym_as] = ACTIONS(3005), - [anon_sym_LBRACE] = ACTIONS(3003), - [anon_sym_COMMA] = ACTIONS(3003), - [anon_sym_LPAREN] = ACTIONS(3003), - [anon_sym_PIPE] = ACTIONS(3005), - [anon_sym_fn] = ACTIONS(3005), - [anon_sym_PLUS] = ACTIONS(3005), - [anon_sym_DASH] = ACTIONS(3005), - [anon_sym_STAR] = ACTIONS(3003), - [anon_sym_SLASH] = ACTIONS(3005), - [anon_sym_PERCENT] = ACTIONS(3003), - [anon_sym_LT] = ACTIONS(3005), - [anon_sym_GT] = ACTIONS(3005), - [anon_sym_EQ_EQ] = ACTIONS(3003), - [anon_sym_BANG_EQ] = ACTIONS(3003), - [anon_sym_LT_EQ] = ACTIONS(3003), - [anon_sym_GT_EQ] = ACTIONS(3003), - [anon_sym_LBRACK] = ACTIONS(3003), - [anon_sym_RBRACK] = ACTIONS(3003), - [anon_sym_struct] = ACTIONS(3005), - [anon_sym_mut] = ACTIONS(3005), - [anon_sym_PLUS_PLUS] = ACTIONS(3003), - [anon_sym_DASH_DASH] = ACTIONS(3003), - [anon_sym_QMARK] = ACTIONS(3005), - [anon_sym_BANG] = ACTIONS(3005), - [anon_sym_go] = ACTIONS(3005), - [anon_sym_spawn] = ACTIONS(3005), - [anon_sym_json_DOTdecode] = ACTIONS(3003), - [anon_sym_LBRACK2] = ACTIONS(3005), - [anon_sym_TILDE] = ACTIONS(3003), - [anon_sym_CARET] = ACTIONS(3003), - [anon_sym_AMP] = ACTIONS(3005), - [anon_sym_LT_DASH] = ACTIONS(3003), - [anon_sym_LT_LT] = ACTIONS(3003), - [anon_sym_GT_GT] = ACTIONS(3005), - [anon_sym_GT_GT_GT] = ACTIONS(3003), - [anon_sym_AMP_CARET] = ACTIONS(3003), - [anon_sym_AMP_AMP] = ACTIONS(3003), - [anon_sym_PIPE_PIPE] = ACTIONS(3003), - [anon_sym_or] = ACTIONS(3005), - [sym_none] = ACTIONS(3005), - [sym_true] = ACTIONS(3005), - [sym_false] = ACTIONS(3005), - [sym_nil] = ACTIONS(3005), - [anon_sym_QMARK_DOT] = ACTIONS(3003), - [anon_sym_POUND_LBRACK] = ACTIONS(3003), - [anon_sym_if] = ACTIONS(3005), - [anon_sym_DOLLARif] = ACTIONS(3005), - [anon_sym_is] = ACTIONS(3005), - [anon_sym_BANGis] = ACTIONS(3003), - [anon_sym_in] = ACTIONS(3005), - [anon_sym_BANGin] = ACTIONS(3003), - [anon_sym_match] = ACTIONS(3005), - [anon_sym_select] = ACTIONS(3005), - [anon_sym_lock] = ACTIONS(3005), - [anon_sym_rlock] = ACTIONS(3005), - [anon_sym_unsafe] = ACTIONS(3005), - [anon_sym_sql] = ACTIONS(3005), - [sym_int_literal] = ACTIONS(3005), - [sym_float_literal] = ACTIONS(3003), - [sym_rune_literal] = ACTIONS(3003), - [anon_sym_AT] = ACTIONS(3005), - [anon_sym_shared] = ACTIONS(3005), - [anon_sym_map_LBRACK] = ACTIONS(3003), - [anon_sym_chan] = ACTIONS(3005), - [anon_sym_thread] = ACTIONS(3005), - [anon_sym_atomic] = ACTIONS(3005), - [sym___double_quote] = ACTIONS(3003), - [sym___single_quote] = ACTIONS(3003), - [sym___c_double_quote] = ACTIONS(3003), - [sym___c_single_quote] = ACTIONS(3003), - [sym___r_double_quote] = ACTIONS(3003), - [sym___r_single_quote] = ACTIONS(3003), - }, - [1372] = { - [sym_identifier] = ACTIONS(2981), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2981), - [anon_sym_as] = ACTIONS(2981), - [anon_sym_LBRACE] = ACTIONS(2979), - [anon_sym_COMMA] = ACTIONS(2979), - [anon_sym_LPAREN] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2981), - [anon_sym_fn] = ACTIONS(2981), - [anon_sym_PLUS] = ACTIONS(2981), - [anon_sym_DASH] = ACTIONS(2981), - [anon_sym_STAR] = ACTIONS(2979), - [anon_sym_SLASH] = ACTIONS(2981), - [anon_sym_PERCENT] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2981), - [anon_sym_GT] = ACTIONS(2981), - [anon_sym_EQ_EQ] = ACTIONS(2979), - [anon_sym_BANG_EQ] = ACTIONS(2979), - [anon_sym_LT_EQ] = ACTIONS(2979), - [anon_sym_GT_EQ] = ACTIONS(2979), - [anon_sym_LBRACK] = ACTIONS(2979), - [anon_sym_RBRACK] = ACTIONS(2979), - [anon_sym_struct] = ACTIONS(2981), - [anon_sym_mut] = ACTIONS(2981), - [anon_sym_PLUS_PLUS] = ACTIONS(2979), - [anon_sym_DASH_DASH] = ACTIONS(2979), - [anon_sym_QMARK] = ACTIONS(2981), - [anon_sym_BANG] = ACTIONS(2981), - [anon_sym_go] = ACTIONS(2981), - [anon_sym_spawn] = ACTIONS(2981), - [anon_sym_json_DOTdecode] = ACTIONS(2979), - [anon_sym_LBRACK2] = ACTIONS(2981), - [anon_sym_TILDE] = ACTIONS(2979), - [anon_sym_CARET] = ACTIONS(2979), - [anon_sym_AMP] = ACTIONS(2981), - [anon_sym_LT_DASH] = ACTIONS(2979), - [anon_sym_LT_LT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2981), - [anon_sym_GT_GT_GT] = ACTIONS(2979), - [anon_sym_AMP_CARET] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [anon_sym_or] = ACTIONS(2981), - [sym_none] = ACTIONS(2981), - [sym_true] = ACTIONS(2981), - [sym_false] = ACTIONS(2981), - [sym_nil] = ACTIONS(2981), - [anon_sym_QMARK_DOT] = ACTIONS(2979), - [anon_sym_POUND_LBRACK] = ACTIONS(2979), - [anon_sym_if] = ACTIONS(2981), - [anon_sym_DOLLARif] = ACTIONS(2981), - [anon_sym_is] = ACTIONS(2981), - [anon_sym_BANGis] = ACTIONS(2979), - [anon_sym_in] = ACTIONS(2981), - [anon_sym_BANGin] = ACTIONS(2979), - [anon_sym_match] = ACTIONS(2981), - [anon_sym_select] = ACTIONS(2981), - [anon_sym_lock] = ACTIONS(2981), - [anon_sym_rlock] = ACTIONS(2981), - [anon_sym_unsafe] = ACTIONS(2981), - [anon_sym_sql] = ACTIONS(2981), - [sym_int_literal] = ACTIONS(2981), - [sym_float_literal] = ACTIONS(2979), - [sym_rune_literal] = ACTIONS(2979), - [anon_sym_AT] = ACTIONS(2981), - [anon_sym_shared] = ACTIONS(2981), - [anon_sym_map_LBRACK] = ACTIONS(2979), - [anon_sym_chan] = ACTIONS(2981), - [anon_sym_thread] = ACTIONS(2981), - [anon_sym_atomic] = ACTIONS(2981), - [sym___double_quote] = ACTIONS(2979), - [sym___single_quote] = ACTIONS(2979), - [sym___c_double_quote] = ACTIONS(2979), - [sym___c_single_quote] = ACTIONS(2979), - [sym___r_double_quote] = ACTIONS(2979), - [sym___r_single_quote] = ACTIONS(2979), - }, - [1373] = { - [sym_reference_expression] = STATE(4566), - [sym_type_reference_expression] = STATE(2159), - [sym_plain_type] = STATE(2168), - [sym__plain_type_without_special] = STATE(2185), - [sym_anon_struct_type] = STATE(2186), - [sym_multi_return_type] = STATE(2185), - [sym_result_type] = STATE(2185), - [sym_option_type] = STATE(2185), - [sym_qualified_type] = STATE(2159), - [sym_fixed_array_type] = STATE(2186), - [sym_array_type] = STATE(2186), - [sym_pointer_type] = STATE(2186), - [sym_wrong_pointer_type] = STATE(2186), - [sym_map_type] = STATE(2186), - [sym_channel_type] = STATE(2186), - [sym_shared_type] = STATE(2186), - [sym_thread_type] = STATE(2186), - [sym_atomic_type] = STATE(2186), - [sym_generic_type] = STATE(2186), - [sym_function_type] = STATE(2186), - [sym_identifier] = ACTIONS(3672), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym___global] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_DOT_DOT_DOT] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_pub] = ACTIONS(615), - [anon_sym_mut] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_LBRACK2] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3690), - [anon_sym_map_LBRACK] = ACTIONS(3692), - [anon_sym_chan] = ACTIONS(3694), - [anon_sym_thread] = ACTIONS(3696), - [anon_sym_atomic] = ACTIONS(3698), - [anon_sym_AT_LBRACK] = ACTIONS(615), - }, - [1374] = { - [sym_identifier] = ACTIONS(2792), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2792), - [anon_sym_as] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2790), - [anon_sym_COMMA] = ACTIONS(2790), - [anon_sym_LPAREN] = ACTIONS(2790), - [anon_sym_PIPE] = ACTIONS(2792), - [anon_sym_fn] = ACTIONS(2792), - [anon_sym_PLUS] = ACTIONS(2792), - [anon_sym_DASH] = ACTIONS(2792), - [anon_sym_STAR] = ACTIONS(2790), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_PERCENT] = ACTIONS(2790), - [anon_sym_LT] = ACTIONS(2792), - [anon_sym_GT] = ACTIONS(2792), - [anon_sym_EQ_EQ] = ACTIONS(2790), - [anon_sym_BANG_EQ] = ACTIONS(2790), - [anon_sym_LT_EQ] = ACTIONS(2790), - [anon_sym_GT_EQ] = ACTIONS(2790), - [anon_sym_LBRACK] = ACTIONS(2790), - [anon_sym_RBRACK] = ACTIONS(2790), - [anon_sym_struct] = ACTIONS(2792), - [anon_sym_mut] = ACTIONS(2792), - [anon_sym_PLUS_PLUS] = ACTIONS(2790), - [anon_sym_DASH_DASH] = ACTIONS(2790), - [anon_sym_QMARK] = ACTIONS(2792), - [anon_sym_BANG] = ACTIONS(2792), - [anon_sym_go] = ACTIONS(2792), - [anon_sym_spawn] = ACTIONS(2792), - [anon_sym_json_DOTdecode] = ACTIONS(2790), - [anon_sym_LBRACK2] = ACTIONS(2792), - [anon_sym_TILDE] = ACTIONS(2790), - [anon_sym_CARET] = ACTIONS(2790), - [anon_sym_AMP] = ACTIONS(2792), - [anon_sym_LT_DASH] = ACTIONS(2790), - [anon_sym_LT_LT] = ACTIONS(2790), - [anon_sym_GT_GT] = ACTIONS(2792), - [anon_sym_GT_GT_GT] = ACTIONS(2790), - [anon_sym_AMP_CARET] = ACTIONS(2790), - [anon_sym_AMP_AMP] = ACTIONS(2790), - [anon_sym_PIPE_PIPE] = ACTIONS(2790), - [anon_sym_or] = ACTIONS(2792), - [sym_none] = ACTIONS(2792), - [sym_true] = ACTIONS(2792), - [sym_false] = ACTIONS(2792), - [sym_nil] = ACTIONS(2792), - [anon_sym_QMARK_DOT] = ACTIONS(2790), - [anon_sym_POUND_LBRACK] = ACTIONS(2790), - [anon_sym_if] = ACTIONS(2792), - [anon_sym_DOLLARif] = ACTIONS(2792), - [anon_sym_is] = ACTIONS(2792), - [anon_sym_BANGis] = ACTIONS(2790), - [anon_sym_in] = ACTIONS(2792), - [anon_sym_BANGin] = ACTIONS(2790), - [anon_sym_match] = ACTIONS(2792), - [anon_sym_select] = ACTIONS(2792), - [anon_sym_lock] = ACTIONS(2792), - [anon_sym_rlock] = ACTIONS(2792), - [anon_sym_unsafe] = ACTIONS(2792), - [anon_sym_sql] = ACTIONS(2792), - [sym_int_literal] = ACTIONS(2792), - [sym_float_literal] = ACTIONS(2790), - [sym_rune_literal] = ACTIONS(2790), - [anon_sym_AT] = ACTIONS(2792), - [anon_sym_shared] = ACTIONS(2792), - [anon_sym_map_LBRACK] = ACTIONS(2790), - [anon_sym_chan] = ACTIONS(2792), - [anon_sym_thread] = ACTIONS(2792), - [anon_sym_atomic] = ACTIONS(2792), - [sym___double_quote] = ACTIONS(2790), - [sym___single_quote] = ACTIONS(2790), - [sym___c_double_quote] = ACTIONS(2790), - [sym___c_single_quote] = ACTIONS(2790), - [sym___r_double_quote] = ACTIONS(2790), - [sym___r_single_quote] = ACTIONS(2790), - }, - [1375] = { - [sym_identifier] = ACTIONS(2836), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2836), - [anon_sym_as] = ACTIONS(2836), - [anon_sym_LBRACE] = ACTIONS(2834), - [anon_sym_COMMA] = ACTIONS(2834), - [anon_sym_LPAREN] = ACTIONS(2834), - [anon_sym_PIPE] = ACTIONS(2836), - [anon_sym_fn] = ACTIONS(2836), - [anon_sym_PLUS] = ACTIONS(2836), - [anon_sym_DASH] = ACTIONS(2836), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_SLASH] = ACTIONS(2836), - [anon_sym_PERCENT] = ACTIONS(2834), - [anon_sym_LT] = ACTIONS(2836), - [anon_sym_GT] = ACTIONS(2836), - [anon_sym_EQ_EQ] = ACTIONS(2834), - [anon_sym_BANG_EQ] = ACTIONS(2834), - [anon_sym_LT_EQ] = ACTIONS(2834), - [anon_sym_GT_EQ] = ACTIONS(2834), - [anon_sym_LBRACK] = ACTIONS(2834), - [anon_sym_RBRACK] = ACTIONS(2834), - [anon_sym_struct] = ACTIONS(2836), - [anon_sym_mut] = ACTIONS(2836), - [anon_sym_PLUS_PLUS] = ACTIONS(2834), - [anon_sym_DASH_DASH] = ACTIONS(2834), - [anon_sym_QMARK] = ACTIONS(2836), - [anon_sym_BANG] = ACTIONS(2836), - [anon_sym_go] = ACTIONS(2836), - [anon_sym_spawn] = ACTIONS(2836), - [anon_sym_json_DOTdecode] = ACTIONS(2834), - [anon_sym_LBRACK2] = ACTIONS(2836), - [anon_sym_TILDE] = ACTIONS(2834), - [anon_sym_CARET] = ACTIONS(2834), - [anon_sym_AMP] = ACTIONS(2836), - [anon_sym_LT_DASH] = ACTIONS(2834), - [anon_sym_LT_LT] = ACTIONS(2834), - [anon_sym_GT_GT] = ACTIONS(2836), - [anon_sym_GT_GT_GT] = ACTIONS(2834), - [anon_sym_AMP_CARET] = ACTIONS(2834), - [anon_sym_AMP_AMP] = ACTIONS(2834), - [anon_sym_PIPE_PIPE] = ACTIONS(2834), - [anon_sym_or] = ACTIONS(2836), - [sym_none] = ACTIONS(2836), - [sym_true] = ACTIONS(2836), - [sym_false] = ACTIONS(2836), - [sym_nil] = ACTIONS(2836), - [anon_sym_QMARK_DOT] = ACTIONS(2834), - [anon_sym_POUND_LBRACK] = ACTIONS(2834), - [anon_sym_if] = ACTIONS(2836), - [anon_sym_DOLLARif] = ACTIONS(2836), - [anon_sym_is] = ACTIONS(2836), - [anon_sym_BANGis] = ACTIONS(2834), - [anon_sym_in] = ACTIONS(2836), - [anon_sym_BANGin] = ACTIONS(2834), - [anon_sym_match] = ACTIONS(2836), - [anon_sym_select] = ACTIONS(2836), - [anon_sym_lock] = ACTIONS(2836), - [anon_sym_rlock] = ACTIONS(2836), - [anon_sym_unsafe] = ACTIONS(2836), - [anon_sym_sql] = ACTIONS(2836), - [sym_int_literal] = ACTIONS(2836), - [sym_float_literal] = ACTIONS(2834), - [sym_rune_literal] = ACTIONS(2834), - [anon_sym_AT] = ACTIONS(2836), - [anon_sym_shared] = ACTIONS(2836), - [anon_sym_map_LBRACK] = ACTIONS(2834), - [anon_sym_chan] = ACTIONS(2836), - [anon_sym_thread] = ACTIONS(2836), - [anon_sym_atomic] = ACTIONS(2836), - [sym___double_quote] = ACTIONS(2834), - [sym___single_quote] = ACTIONS(2834), - [sym___c_double_quote] = ACTIONS(2834), - [sym___c_single_quote] = ACTIONS(2834), - [sym___r_double_quote] = ACTIONS(2834), - [sym___r_single_quote] = ACTIONS(2834), - }, - [1376] = { - [sym_identifier] = ACTIONS(2864), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2864), - [anon_sym_LBRACE] = ACTIONS(2862), - [anon_sym_COMMA] = ACTIONS(2862), - [anon_sym_LPAREN] = ACTIONS(2862), - [anon_sym_PIPE] = ACTIONS(2864), - [anon_sym_fn] = ACTIONS(2864), - [anon_sym_PLUS] = ACTIONS(2864), - [anon_sym_DASH] = ACTIONS(2864), - [anon_sym_STAR] = ACTIONS(2862), - [anon_sym_SLASH] = ACTIONS(2864), - [anon_sym_PERCENT] = ACTIONS(2862), - [anon_sym_LT] = ACTIONS(2864), - [anon_sym_GT] = ACTIONS(2864), - [anon_sym_EQ_EQ] = ACTIONS(2862), - [anon_sym_BANG_EQ] = ACTIONS(2862), - [anon_sym_LT_EQ] = ACTIONS(2862), - [anon_sym_GT_EQ] = ACTIONS(2862), - [anon_sym_LBRACK] = ACTIONS(2862), - [anon_sym_RBRACK] = ACTIONS(2862), - [anon_sym_struct] = ACTIONS(2864), - [anon_sym_mut] = ACTIONS(2864), - [anon_sym_PLUS_PLUS] = ACTIONS(2862), - [anon_sym_DASH_DASH] = ACTIONS(2862), - [anon_sym_QMARK] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(2864), - [anon_sym_go] = ACTIONS(2864), - [anon_sym_spawn] = ACTIONS(2864), - [anon_sym_json_DOTdecode] = ACTIONS(2862), - [anon_sym_LBRACK2] = ACTIONS(2864), - [anon_sym_TILDE] = ACTIONS(2862), - [anon_sym_CARET] = ACTIONS(2862), - [anon_sym_AMP] = ACTIONS(2864), - [anon_sym_LT_DASH] = ACTIONS(2862), - [anon_sym_LT_LT] = ACTIONS(2862), - [anon_sym_GT_GT] = ACTIONS(2864), - [anon_sym_GT_GT_GT] = ACTIONS(2862), - [anon_sym_AMP_CARET] = ACTIONS(2862), - [anon_sym_AMP_AMP] = ACTIONS(2862), - [anon_sym_PIPE_PIPE] = ACTIONS(2862), - [anon_sym_or] = ACTIONS(2864), - [sym_none] = ACTIONS(2864), - [sym_true] = ACTIONS(2864), - [sym_false] = ACTIONS(2864), - [sym_nil] = ACTIONS(2864), - [anon_sym_QMARK_DOT] = ACTIONS(2862), - [anon_sym_POUND_LBRACK] = ACTIONS(2862), - [anon_sym_if] = ACTIONS(2864), - [anon_sym_DOLLARif] = ACTIONS(2864), - [anon_sym_is] = ACTIONS(2864), - [anon_sym_BANGis] = ACTIONS(2862), - [anon_sym_in] = ACTIONS(2864), - [anon_sym_BANGin] = ACTIONS(2862), - [anon_sym_match] = ACTIONS(2864), - [anon_sym_select] = ACTIONS(2864), - [anon_sym_lock] = ACTIONS(2864), - [anon_sym_rlock] = ACTIONS(2864), - [anon_sym_unsafe] = ACTIONS(2864), - [anon_sym_sql] = ACTIONS(2864), - [sym_int_literal] = ACTIONS(2864), - [sym_float_literal] = ACTIONS(2862), - [sym_rune_literal] = ACTIONS(2862), - [anon_sym_AT] = ACTIONS(2864), - [anon_sym_shared] = ACTIONS(2864), - [anon_sym_map_LBRACK] = ACTIONS(2862), - [anon_sym_chan] = ACTIONS(2864), - [anon_sym_thread] = ACTIONS(2864), - [anon_sym_atomic] = ACTIONS(2864), - [sym___double_quote] = ACTIONS(2862), - [sym___single_quote] = ACTIONS(2862), - [sym___c_double_quote] = ACTIONS(2862), - [sym___c_single_quote] = ACTIONS(2862), - [sym___r_double_quote] = ACTIONS(2862), - [sym___r_single_quote] = ACTIONS(2862), - }, - [1377] = { - [sym_reference_expression] = STATE(4566), - [sym_type_reference_expression] = STATE(2159), - [sym_plain_type] = STATE(2240), - [sym__plain_type_without_special] = STATE(2185), - [sym_anon_struct_type] = STATE(2186), - [sym_multi_return_type] = STATE(2185), - [sym_result_type] = STATE(2185), - [sym_option_type] = STATE(2185), - [sym_qualified_type] = STATE(2159), - [sym_fixed_array_type] = STATE(2186), - [sym_array_type] = STATE(2186), - [sym_pointer_type] = STATE(2186), - [sym_wrong_pointer_type] = STATE(2186), - [sym_map_type] = STATE(2186), - [sym_channel_type] = STATE(2186), - [sym_shared_type] = STATE(2186), - [sym_thread_type] = STATE(2186), - [sym_atomic_type] = STATE(2186), - [sym_generic_type] = STATE(2186), - [sym_function_type] = STATE(2186), - [sym_identifier] = ACTIONS(3672), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym___global] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_DOT_DOT_DOT] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_pub] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_LBRACK2] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3690), - [anon_sym_map_LBRACK] = ACTIONS(3692), - [anon_sym_chan] = ACTIONS(3694), - [anon_sym_thread] = ACTIONS(3696), - [anon_sym_atomic] = ACTIONS(3698), - [anon_sym_AT_LBRACK] = ACTIONS(589), - }, - [1378] = { - [sym_identifier] = ACTIONS(2840), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_as] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2838), - [anon_sym_COMMA] = ACTIONS(2838), - [anon_sym_LPAREN] = ACTIONS(2838), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2838), - [anon_sym_SLASH] = ACTIONS(2840), - [anon_sym_PERCENT] = ACTIONS(2838), - [anon_sym_LT] = ACTIONS(2840), - [anon_sym_GT] = ACTIONS(2840), - [anon_sym_EQ_EQ] = ACTIONS(2838), - [anon_sym_BANG_EQ] = ACTIONS(2838), - [anon_sym_LT_EQ] = ACTIONS(2838), - [anon_sym_GT_EQ] = ACTIONS(2838), - [anon_sym_LBRACK] = ACTIONS(2838), - [anon_sym_RBRACK] = ACTIONS(2838), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_PLUS_PLUS] = ACTIONS(2838), - [anon_sym_DASH_DASH] = ACTIONS(2838), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2838), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2838), - [anon_sym_CARET] = ACTIONS(2838), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2838), - [anon_sym_LT_LT] = ACTIONS(2838), - [anon_sym_GT_GT] = ACTIONS(2840), - [anon_sym_GT_GT_GT] = ACTIONS(2838), - [anon_sym_AMP_CARET] = ACTIONS(2838), - [anon_sym_AMP_AMP] = ACTIONS(2838), - [anon_sym_PIPE_PIPE] = ACTIONS(2838), - [anon_sym_or] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_QMARK_DOT] = ACTIONS(2838), - [anon_sym_POUND_LBRACK] = ACTIONS(2838), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_is] = ACTIONS(2840), - [anon_sym_BANGis] = ACTIONS(2838), - [anon_sym_in] = ACTIONS(2840), - [anon_sym_BANGin] = ACTIONS(2838), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2838), - [sym_rune_literal] = ACTIONS(2838), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2838), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2838), - [sym___single_quote] = ACTIONS(2838), - [sym___c_double_quote] = ACTIONS(2838), - [sym___c_single_quote] = ACTIONS(2838), - [sym___r_double_quote] = ACTIONS(2838), - [sym___r_single_quote] = ACTIONS(2838), - }, - [1379] = { - [sym_identifier] = ACTIONS(2931), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2931), - [anon_sym_as] = ACTIONS(2931), - [anon_sym_LBRACE] = ACTIONS(2929), - [anon_sym_COMMA] = ACTIONS(2929), - [anon_sym_LPAREN] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(2931), - [anon_sym_fn] = ACTIONS(2931), - [anon_sym_PLUS] = ACTIONS(2931), - [anon_sym_DASH] = ACTIONS(2931), - [anon_sym_STAR] = ACTIONS(2929), - [anon_sym_SLASH] = ACTIONS(2931), - [anon_sym_PERCENT] = ACTIONS(2929), - [anon_sym_LT] = ACTIONS(2931), - [anon_sym_GT] = ACTIONS(2931), - [anon_sym_EQ_EQ] = ACTIONS(2929), - [anon_sym_BANG_EQ] = ACTIONS(2929), - [anon_sym_LT_EQ] = ACTIONS(2929), - [anon_sym_GT_EQ] = ACTIONS(2929), - [anon_sym_LBRACK] = ACTIONS(2929), - [anon_sym_RBRACK] = ACTIONS(2929), - [anon_sym_struct] = ACTIONS(2931), - [anon_sym_mut] = ACTIONS(2931), - [anon_sym_PLUS_PLUS] = ACTIONS(2929), - [anon_sym_DASH_DASH] = ACTIONS(2929), - [anon_sym_QMARK] = ACTIONS(2931), - [anon_sym_BANG] = ACTIONS(2931), - [anon_sym_go] = ACTIONS(2931), - [anon_sym_spawn] = ACTIONS(2931), - [anon_sym_json_DOTdecode] = ACTIONS(2929), - [anon_sym_LBRACK2] = ACTIONS(2931), - [anon_sym_TILDE] = ACTIONS(2929), - [anon_sym_CARET] = ACTIONS(2929), - [anon_sym_AMP] = ACTIONS(2931), - [anon_sym_LT_DASH] = ACTIONS(2929), - [anon_sym_LT_LT] = ACTIONS(2929), - [anon_sym_GT_GT] = ACTIONS(2931), - [anon_sym_GT_GT_GT] = ACTIONS(2929), - [anon_sym_AMP_CARET] = ACTIONS(2929), - [anon_sym_AMP_AMP] = ACTIONS(2929), - [anon_sym_PIPE_PIPE] = ACTIONS(2929), - [anon_sym_or] = ACTIONS(2931), - [sym_none] = ACTIONS(2931), - [sym_true] = ACTIONS(2931), - [sym_false] = ACTIONS(2931), - [sym_nil] = ACTIONS(2931), - [anon_sym_QMARK_DOT] = ACTIONS(2929), - [anon_sym_POUND_LBRACK] = ACTIONS(2929), - [anon_sym_if] = ACTIONS(2931), - [anon_sym_DOLLARif] = ACTIONS(2931), - [anon_sym_is] = ACTIONS(2931), - [anon_sym_BANGis] = ACTIONS(2929), - [anon_sym_in] = ACTIONS(2931), - [anon_sym_BANGin] = ACTIONS(2929), - [anon_sym_match] = ACTIONS(2931), - [anon_sym_select] = ACTIONS(2931), - [anon_sym_lock] = ACTIONS(2931), - [anon_sym_rlock] = ACTIONS(2931), - [anon_sym_unsafe] = ACTIONS(2931), - [anon_sym_sql] = ACTIONS(2931), - [sym_int_literal] = ACTIONS(2931), - [sym_float_literal] = ACTIONS(2929), - [sym_rune_literal] = ACTIONS(2929), - [anon_sym_AT] = ACTIONS(2931), - [anon_sym_shared] = ACTIONS(2931), - [anon_sym_map_LBRACK] = ACTIONS(2929), - [anon_sym_chan] = ACTIONS(2931), - [anon_sym_thread] = ACTIONS(2931), - [anon_sym_atomic] = ACTIONS(2931), - [sym___double_quote] = ACTIONS(2929), - [sym___single_quote] = ACTIONS(2929), - [sym___c_double_quote] = ACTIONS(2929), - [sym___c_single_quote] = ACTIONS(2929), - [sym___r_double_quote] = ACTIONS(2929), - [sym___r_single_quote] = ACTIONS(2929), - }, - [1380] = { - [sym_identifier] = ACTIONS(2844), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_as] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2842), - [anon_sym_COMMA] = ACTIONS(2842), - [anon_sym_LPAREN] = ACTIONS(2842), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2842), - [anon_sym_SLASH] = ACTIONS(2844), - [anon_sym_PERCENT] = ACTIONS(2842), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(2844), - [anon_sym_EQ_EQ] = ACTIONS(2842), - [anon_sym_BANG_EQ] = ACTIONS(2842), - [anon_sym_LT_EQ] = ACTIONS(2842), - [anon_sym_GT_EQ] = ACTIONS(2842), - [anon_sym_LBRACK] = ACTIONS(2842), - [anon_sym_RBRACK] = ACTIONS(2842), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_PLUS_PLUS] = ACTIONS(2842), - [anon_sym_DASH_DASH] = ACTIONS(2842), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2842), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2842), - [anon_sym_CARET] = ACTIONS(2842), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2842), - [anon_sym_LT_LT] = ACTIONS(2842), - [anon_sym_GT_GT] = ACTIONS(2844), - [anon_sym_GT_GT_GT] = ACTIONS(2842), - [anon_sym_AMP_CARET] = ACTIONS(2842), - [anon_sym_AMP_AMP] = ACTIONS(2842), - [anon_sym_PIPE_PIPE] = ACTIONS(2842), - [anon_sym_or] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_QMARK_DOT] = ACTIONS(2842), - [anon_sym_POUND_LBRACK] = ACTIONS(2842), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_is] = ACTIONS(2844), - [anon_sym_BANGis] = ACTIONS(2842), - [anon_sym_in] = ACTIONS(2844), - [anon_sym_BANGin] = ACTIONS(2842), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2842), - [sym_rune_literal] = ACTIONS(2842), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2842), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2842), - [sym___single_quote] = ACTIONS(2842), - [sym___c_double_quote] = ACTIONS(2842), - [sym___c_single_quote] = ACTIONS(2842), - [sym___r_double_quote] = ACTIONS(2842), - [sym___r_single_quote] = ACTIONS(2842), - }, - [1381] = { - [sym_identifier] = ACTIONS(2784), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_as] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2782), - [anon_sym_COMMA] = ACTIONS(2782), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_PERCENT] = ACTIONS(2782), - [anon_sym_LT] = ACTIONS(2784), - [anon_sym_GT] = ACTIONS(2784), - [anon_sym_EQ_EQ] = ACTIONS(2782), - [anon_sym_BANG_EQ] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(2782), - [anon_sym_GT_EQ] = ACTIONS(2782), - [anon_sym_LBRACK] = ACTIONS(2782), - [anon_sym_RBRACK] = ACTIONS(2782), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_PLUS_PLUS] = ACTIONS(2782), - [anon_sym_DASH_DASH] = ACTIONS(2782), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2782), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2782), - [anon_sym_CARET] = ACTIONS(2782), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2782), - [anon_sym_LT_LT] = ACTIONS(2782), - [anon_sym_GT_GT] = ACTIONS(2784), - [anon_sym_GT_GT_GT] = ACTIONS(2782), - [anon_sym_AMP_CARET] = ACTIONS(2782), - [anon_sym_AMP_AMP] = ACTIONS(2782), - [anon_sym_PIPE_PIPE] = ACTIONS(2782), - [anon_sym_or] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_QMARK_DOT] = ACTIONS(2782), - [anon_sym_POUND_LBRACK] = ACTIONS(2782), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_is] = ACTIONS(2784), - [anon_sym_BANGis] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(2784), - [anon_sym_BANGin] = ACTIONS(2782), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2782), - [sym_rune_literal] = ACTIONS(2782), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2782), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2782), - [sym___single_quote] = ACTIONS(2782), - [sym___c_double_quote] = ACTIONS(2782), - [sym___c_single_quote] = ACTIONS(2782), - [sym___r_double_quote] = ACTIONS(2782), - [sym___r_single_quote] = ACTIONS(2782), - }, - [1382] = { - [sym_identifier] = ACTIONS(2872), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2872), - [anon_sym_as] = ACTIONS(2872), - [anon_sym_LBRACE] = ACTIONS(2870), - [anon_sym_COMMA] = ACTIONS(2870), - [anon_sym_LPAREN] = ACTIONS(2870), - [anon_sym_PIPE] = ACTIONS(2872), - [anon_sym_fn] = ACTIONS(2872), - [anon_sym_PLUS] = ACTIONS(2872), - [anon_sym_DASH] = ACTIONS(2872), - [anon_sym_STAR] = ACTIONS(2870), - [anon_sym_SLASH] = ACTIONS(2872), - [anon_sym_PERCENT] = ACTIONS(2870), - [anon_sym_LT] = ACTIONS(2872), - [anon_sym_GT] = ACTIONS(2872), - [anon_sym_EQ_EQ] = ACTIONS(2870), - [anon_sym_BANG_EQ] = ACTIONS(2870), - [anon_sym_LT_EQ] = ACTIONS(2870), - [anon_sym_GT_EQ] = ACTIONS(2870), - [anon_sym_LBRACK] = ACTIONS(2870), - [anon_sym_RBRACK] = ACTIONS(2870), - [anon_sym_struct] = ACTIONS(2872), - [anon_sym_mut] = ACTIONS(2872), - [anon_sym_PLUS_PLUS] = ACTIONS(2870), - [anon_sym_DASH_DASH] = ACTIONS(2870), - [anon_sym_QMARK] = ACTIONS(2872), - [anon_sym_BANG] = ACTIONS(2872), - [anon_sym_go] = ACTIONS(2872), - [anon_sym_spawn] = ACTIONS(2872), - [anon_sym_json_DOTdecode] = ACTIONS(2870), - [anon_sym_LBRACK2] = ACTIONS(2872), - [anon_sym_TILDE] = ACTIONS(2870), - [anon_sym_CARET] = ACTIONS(2870), - [anon_sym_AMP] = ACTIONS(2872), - [anon_sym_LT_DASH] = ACTIONS(2870), - [anon_sym_LT_LT] = ACTIONS(2870), - [anon_sym_GT_GT] = ACTIONS(2872), - [anon_sym_GT_GT_GT] = ACTIONS(2870), - [anon_sym_AMP_CARET] = ACTIONS(2870), - [anon_sym_AMP_AMP] = ACTIONS(2870), - [anon_sym_PIPE_PIPE] = ACTIONS(2870), - [anon_sym_or] = ACTIONS(2872), - [sym_none] = ACTIONS(2872), - [sym_true] = ACTIONS(2872), - [sym_false] = ACTIONS(2872), - [sym_nil] = ACTIONS(2872), - [anon_sym_QMARK_DOT] = ACTIONS(2870), - [anon_sym_POUND_LBRACK] = ACTIONS(2870), - [anon_sym_if] = ACTIONS(2872), - [anon_sym_DOLLARif] = ACTIONS(2872), - [anon_sym_is] = ACTIONS(2872), - [anon_sym_BANGis] = ACTIONS(2870), - [anon_sym_in] = ACTIONS(2872), - [anon_sym_BANGin] = ACTIONS(2870), - [anon_sym_match] = ACTIONS(2872), - [anon_sym_select] = ACTIONS(2872), - [anon_sym_lock] = ACTIONS(2872), - [anon_sym_rlock] = ACTIONS(2872), - [anon_sym_unsafe] = ACTIONS(2872), - [anon_sym_sql] = ACTIONS(2872), - [sym_int_literal] = ACTIONS(2872), - [sym_float_literal] = ACTIONS(2870), - [sym_rune_literal] = ACTIONS(2870), - [anon_sym_AT] = ACTIONS(2872), - [anon_sym_shared] = ACTIONS(2872), - [anon_sym_map_LBRACK] = ACTIONS(2870), - [anon_sym_chan] = ACTIONS(2872), - [anon_sym_thread] = ACTIONS(2872), - [anon_sym_atomic] = ACTIONS(2872), - [sym___double_quote] = ACTIONS(2870), - [sym___single_quote] = ACTIONS(2870), - [sym___c_double_quote] = ACTIONS(2870), - [sym___c_single_quote] = ACTIONS(2870), - [sym___r_double_quote] = ACTIONS(2870), - [sym___r_single_quote] = ACTIONS(2870), - }, - [1383] = { - [sym_identifier] = ACTIONS(2876), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2876), - [anon_sym_as] = ACTIONS(2876), - [anon_sym_LBRACE] = ACTIONS(2874), - [anon_sym_COMMA] = ACTIONS(2874), - [anon_sym_LPAREN] = ACTIONS(2874), - [anon_sym_PIPE] = ACTIONS(2876), - [anon_sym_fn] = ACTIONS(2876), - [anon_sym_PLUS] = ACTIONS(2876), - [anon_sym_DASH] = ACTIONS(2876), - [anon_sym_STAR] = ACTIONS(2874), - [anon_sym_SLASH] = ACTIONS(2876), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_LT] = ACTIONS(2876), - [anon_sym_GT] = ACTIONS(2876), - [anon_sym_EQ_EQ] = ACTIONS(2874), - [anon_sym_BANG_EQ] = ACTIONS(2874), - [anon_sym_LT_EQ] = ACTIONS(2874), - [anon_sym_GT_EQ] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(2874), - [anon_sym_RBRACK] = ACTIONS(2874), - [anon_sym_struct] = ACTIONS(2876), - [anon_sym_mut] = ACTIONS(2876), - [anon_sym_PLUS_PLUS] = ACTIONS(2874), - [anon_sym_DASH_DASH] = ACTIONS(2874), - [anon_sym_QMARK] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(2876), - [anon_sym_go] = ACTIONS(2876), - [anon_sym_spawn] = ACTIONS(2876), - [anon_sym_json_DOTdecode] = ACTIONS(2874), - [anon_sym_LBRACK2] = ACTIONS(2876), - [anon_sym_TILDE] = ACTIONS(2874), - [anon_sym_CARET] = ACTIONS(2874), - [anon_sym_AMP] = ACTIONS(2876), - [anon_sym_LT_DASH] = ACTIONS(2874), - [anon_sym_LT_LT] = ACTIONS(2874), - [anon_sym_GT_GT] = ACTIONS(2876), - [anon_sym_GT_GT_GT] = ACTIONS(2874), - [anon_sym_AMP_CARET] = ACTIONS(2874), - [anon_sym_AMP_AMP] = ACTIONS(2874), - [anon_sym_PIPE_PIPE] = ACTIONS(2874), - [anon_sym_or] = ACTIONS(2876), - [sym_none] = ACTIONS(2876), - [sym_true] = ACTIONS(2876), - [sym_false] = ACTIONS(2876), - [sym_nil] = ACTIONS(2876), - [anon_sym_QMARK_DOT] = ACTIONS(2874), - [anon_sym_POUND_LBRACK] = ACTIONS(2874), - [anon_sym_if] = ACTIONS(2876), - [anon_sym_DOLLARif] = ACTIONS(2876), - [anon_sym_is] = ACTIONS(2876), - [anon_sym_BANGis] = ACTIONS(2874), - [anon_sym_in] = ACTIONS(2876), - [anon_sym_BANGin] = ACTIONS(2874), - [anon_sym_match] = ACTIONS(2876), - [anon_sym_select] = ACTIONS(2876), - [anon_sym_lock] = ACTIONS(2876), - [anon_sym_rlock] = ACTIONS(2876), - [anon_sym_unsafe] = ACTIONS(2876), - [anon_sym_sql] = ACTIONS(2876), - [sym_int_literal] = ACTIONS(2876), - [sym_float_literal] = ACTIONS(2874), - [sym_rune_literal] = ACTIONS(2874), - [anon_sym_AT] = ACTIONS(2876), - [anon_sym_shared] = ACTIONS(2876), - [anon_sym_map_LBRACK] = ACTIONS(2874), - [anon_sym_chan] = ACTIONS(2876), - [anon_sym_thread] = ACTIONS(2876), - [anon_sym_atomic] = ACTIONS(2876), - [sym___double_quote] = ACTIONS(2874), - [sym___single_quote] = ACTIONS(2874), - [sym___c_double_quote] = ACTIONS(2874), - [sym___c_single_quote] = ACTIONS(2874), - [sym___r_double_quote] = ACTIONS(2874), - [sym___r_single_quote] = ACTIONS(2874), - }, - [1384] = { - [sym_identifier] = ACTIONS(2899), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2899), - [anon_sym_as] = ACTIONS(2899), - [anon_sym_LBRACE] = ACTIONS(2897), - [anon_sym_COMMA] = ACTIONS(2897), - [anon_sym_LPAREN] = ACTIONS(2897), - [anon_sym_PIPE] = ACTIONS(2899), - [anon_sym_fn] = ACTIONS(2899), - [anon_sym_PLUS] = ACTIONS(2899), - [anon_sym_DASH] = ACTIONS(2899), - [anon_sym_STAR] = ACTIONS(2897), - [anon_sym_SLASH] = ACTIONS(2899), - [anon_sym_PERCENT] = ACTIONS(2897), - [anon_sym_LT] = ACTIONS(2899), - [anon_sym_GT] = ACTIONS(2899), - [anon_sym_EQ_EQ] = ACTIONS(2897), - [anon_sym_BANG_EQ] = ACTIONS(2897), - [anon_sym_LT_EQ] = ACTIONS(2897), - [anon_sym_GT_EQ] = ACTIONS(2897), - [anon_sym_LBRACK] = ACTIONS(2897), - [anon_sym_RBRACK] = ACTIONS(2897), - [anon_sym_struct] = ACTIONS(2899), - [anon_sym_mut] = ACTIONS(2899), - [anon_sym_PLUS_PLUS] = ACTIONS(2897), - [anon_sym_DASH_DASH] = ACTIONS(2897), - [anon_sym_QMARK] = ACTIONS(2899), - [anon_sym_BANG] = ACTIONS(2899), - [anon_sym_go] = ACTIONS(2899), - [anon_sym_spawn] = ACTIONS(2899), - [anon_sym_json_DOTdecode] = ACTIONS(2897), - [anon_sym_LBRACK2] = ACTIONS(2899), - [anon_sym_TILDE] = ACTIONS(2897), - [anon_sym_CARET] = ACTIONS(2897), - [anon_sym_AMP] = ACTIONS(2899), - [anon_sym_LT_DASH] = ACTIONS(2897), - [anon_sym_LT_LT] = ACTIONS(2897), - [anon_sym_GT_GT] = ACTIONS(2899), - [anon_sym_GT_GT_GT] = ACTIONS(2897), - [anon_sym_AMP_CARET] = ACTIONS(2897), - [anon_sym_AMP_AMP] = ACTIONS(2897), - [anon_sym_PIPE_PIPE] = ACTIONS(2897), - [anon_sym_or] = ACTIONS(2899), - [sym_none] = ACTIONS(2899), - [sym_true] = ACTIONS(2899), - [sym_false] = ACTIONS(2899), - [sym_nil] = ACTIONS(2899), - [anon_sym_QMARK_DOT] = ACTIONS(2897), - [anon_sym_POUND_LBRACK] = ACTIONS(2897), - [anon_sym_if] = ACTIONS(2899), - [anon_sym_DOLLARif] = ACTIONS(2899), - [anon_sym_is] = ACTIONS(2899), - [anon_sym_BANGis] = ACTIONS(2897), - [anon_sym_in] = ACTIONS(2899), - [anon_sym_BANGin] = ACTIONS(2897), - [anon_sym_match] = ACTIONS(2899), - [anon_sym_select] = ACTIONS(2899), - [anon_sym_lock] = ACTIONS(2899), - [anon_sym_rlock] = ACTIONS(2899), - [anon_sym_unsafe] = ACTIONS(2899), - [anon_sym_sql] = ACTIONS(2899), - [sym_int_literal] = ACTIONS(2899), - [sym_float_literal] = ACTIONS(2897), - [sym_rune_literal] = ACTIONS(2897), - [anon_sym_AT] = ACTIONS(2899), - [anon_sym_shared] = ACTIONS(2899), - [anon_sym_map_LBRACK] = ACTIONS(2897), - [anon_sym_chan] = ACTIONS(2899), - [anon_sym_thread] = ACTIONS(2899), - [anon_sym_atomic] = ACTIONS(2899), - [sym___double_quote] = ACTIONS(2897), - [sym___single_quote] = ACTIONS(2897), - [sym___c_double_quote] = ACTIONS(2897), - [sym___c_single_quote] = ACTIONS(2897), - [sym___r_double_quote] = ACTIONS(2897), - [sym___r_single_quote] = ACTIONS(2897), - }, - [1385] = { - [sym_identifier] = ACTIONS(2856), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_as] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2854), - [anon_sym_COMMA] = ACTIONS(2854), - [anon_sym_LPAREN] = ACTIONS(2854), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2854), - [anon_sym_SLASH] = ACTIONS(2856), - [anon_sym_PERCENT] = ACTIONS(2854), - [anon_sym_LT] = ACTIONS(2856), - [anon_sym_GT] = ACTIONS(2856), - [anon_sym_EQ_EQ] = ACTIONS(2854), - [anon_sym_BANG_EQ] = ACTIONS(2854), - [anon_sym_LT_EQ] = ACTIONS(2854), - [anon_sym_GT_EQ] = ACTIONS(2854), - [anon_sym_LBRACK] = ACTIONS(2854), - [anon_sym_RBRACK] = ACTIONS(2854), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_PLUS_PLUS] = ACTIONS(2854), - [anon_sym_DASH_DASH] = ACTIONS(2854), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2854), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2854), - [anon_sym_CARET] = ACTIONS(2854), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2854), - [anon_sym_LT_LT] = ACTIONS(2854), - [anon_sym_GT_GT] = ACTIONS(2856), - [anon_sym_GT_GT_GT] = ACTIONS(2854), - [anon_sym_AMP_CARET] = ACTIONS(2854), - [anon_sym_AMP_AMP] = ACTIONS(2854), - [anon_sym_PIPE_PIPE] = ACTIONS(2854), - [anon_sym_or] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_QMARK_DOT] = ACTIONS(2854), - [anon_sym_POUND_LBRACK] = ACTIONS(2854), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_is] = ACTIONS(2856), - [anon_sym_BANGis] = ACTIONS(2854), - [anon_sym_in] = ACTIONS(2856), - [anon_sym_BANGin] = ACTIONS(2854), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2854), - [sym_rune_literal] = ACTIONS(2854), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2854), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2854), - [sym___single_quote] = ACTIONS(2854), - [sym___c_double_quote] = ACTIONS(2854), - [sym___c_single_quote] = ACTIONS(2854), - [sym___r_double_quote] = ACTIONS(2854), - [sym___r_single_quote] = ACTIONS(2854), - }, - [1386] = { - [sym_identifier] = ACTIONS(2927), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_as] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2925), - [anon_sym_COMMA] = ACTIONS(2925), - [anon_sym_LPAREN] = ACTIONS(2925), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2925), - [anon_sym_SLASH] = ACTIONS(2927), - [anon_sym_PERCENT] = ACTIONS(2925), - [anon_sym_LT] = ACTIONS(2927), - [anon_sym_GT] = ACTIONS(2927), - [anon_sym_EQ_EQ] = ACTIONS(2925), - [anon_sym_BANG_EQ] = ACTIONS(2925), - [anon_sym_LT_EQ] = ACTIONS(2925), - [anon_sym_GT_EQ] = ACTIONS(2925), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(2925), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_PLUS_PLUS] = ACTIONS(2925), - [anon_sym_DASH_DASH] = ACTIONS(2925), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2925), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2925), - [anon_sym_CARET] = ACTIONS(2925), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2925), - [anon_sym_LT_LT] = ACTIONS(2925), - [anon_sym_GT_GT] = ACTIONS(2927), - [anon_sym_GT_GT_GT] = ACTIONS(2925), - [anon_sym_AMP_CARET] = ACTIONS(2925), - [anon_sym_AMP_AMP] = ACTIONS(2925), - [anon_sym_PIPE_PIPE] = ACTIONS(2925), - [anon_sym_or] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_QMARK_DOT] = ACTIONS(2925), - [anon_sym_POUND_LBRACK] = ACTIONS(2925), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_is] = ACTIONS(2927), - [anon_sym_BANGis] = ACTIONS(2925), - [anon_sym_in] = ACTIONS(2927), - [anon_sym_BANGin] = ACTIONS(2925), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2925), - [sym_rune_literal] = ACTIONS(2925), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2925), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2925), - [sym___single_quote] = ACTIONS(2925), - [sym___c_double_quote] = ACTIONS(2925), - [sym___c_single_quote] = ACTIONS(2925), - [sym___r_double_quote] = ACTIONS(2925), - [sym___r_single_quote] = ACTIONS(2925), - }, - [1387] = { - [sym_identifier] = ACTIONS(2907), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2907), - [anon_sym_as] = ACTIONS(2907), - [anon_sym_LBRACE] = ACTIONS(2905), - [anon_sym_COMMA] = ACTIONS(2905), - [anon_sym_LPAREN] = ACTIONS(2905), - [anon_sym_PIPE] = ACTIONS(2907), - [anon_sym_fn] = ACTIONS(2907), - [anon_sym_PLUS] = ACTIONS(2907), - [anon_sym_DASH] = ACTIONS(2907), - [anon_sym_STAR] = ACTIONS(2905), - [anon_sym_SLASH] = ACTIONS(2907), - [anon_sym_PERCENT] = ACTIONS(2905), - [anon_sym_LT] = ACTIONS(2907), - [anon_sym_GT] = ACTIONS(2907), - [anon_sym_EQ_EQ] = ACTIONS(2905), - [anon_sym_BANG_EQ] = ACTIONS(2905), - [anon_sym_LT_EQ] = ACTIONS(2905), - [anon_sym_GT_EQ] = ACTIONS(2905), - [anon_sym_LBRACK] = ACTIONS(2905), - [anon_sym_RBRACK] = ACTIONS(2905), - [anon_sym_struct] = ACTIONS(2907), - [anon_sym_mut] = ACTIONS(2907), - [anon_sym_PLUS_PLUS] = ACTIONS(2905), - [anon_sym_DASH_DASH] = ACTIONS(2905), - [anon_sym_QMARK] = ACTIONS(2907), - [anon_sym_BANG] = ACTIONS(2907), - [anon_sym_go] = ACTIONS(2907), - [anon_sym_spawn] = ACTIONS(2907), - [anon_sym_json_DOTdecode] = ACTIONS(2905), - [anon_sym_LBRACK2] = ACTIONS(2907), - [anon_sym_TILDE] = ACTIONS(2905), - [anon_sym_CARET] = ACTIONS(2905), - [anon_sym_AMP] = ACTIONS(2907), - [anon_sym_LT_DASH] = ACTIONS(2905), - [anon_sym_LT_LT] = ACTIONS(2905), - [anon_sym_GT_GT] = ACTIONS(2907), - [anon_sym_GT_GT_GT] = ACTIONS(2905), - [anon_sym_AMP_CARET] = ACTIONS(2905), - [anon_sym_AMP_AMP] = ACTIONS(2905), - [anon_sym_PIPE_PIPE] = ACTIONS(2905), - [anon_sym_or] = ACTIONS(2907), - [sym_none] = ACTIONS(2907), - [sym_true] = ACTIONS(2907), - [sym_false] = ACTIONS(2907), - [sym_nil] = ACTIONS(2907), - [anon_sym_QMARK_DOT] = ACTIONS(2905), - [anon_sym_POUND_LBRACK] = ACTIONS(2905), - [anon_sym_if] = ACTIONS(2907), - [anon_sym_DOLLARif] = ACTIONS(2907), - [anon_sym_is] = ACTIONS(2907), - [anon_sym_BANGis] = ACTIONS(2905), - [anon_sym_in] = ACTIONS(2907), - [anon_sym_BANGin] = ACTIONS(2905), - [anon_sym_match] = ACTIONS(2907), - [anon_sym_select] = ACTIONS(2907), - [anon_sym_lock] = ACTIONS(2907), - [anon_sym_rlock] = ACTIONS(2907), - [anon_sym_unsafe] = ACTIONS(2907), - [anon_sym_sql] = ACTIONS(2907), - [sym_int_literal] = ACTIONS(2907), - [sym_float_literal] = ACTIONS(2905), - [sym_rune_literal] = ACTIONS(2905), - [anon_sym_AT] = ACTIONS(2907), - [anon_sym_shared] = ACTIONS(2907), - [anon_sym_map_LBRACK] = ACTIONS(2905), - [anon_sym_chan] = ACTIONS(2907), - [anon_sym_thread] = ACTIONS(2907), - [anon_sym_atomic] = ACTIONS(2907), - [sym___double_quote] = ACTIONS(2905), - [sym___single_quote] = ACTIONS(2905), - [sym___c_double_quote] = ACTIONS(2905), - [sym___c_single_quote] = ACTIONS(2905), - [sym___r_double_quote] = ACTIONS(2905), - [sym___r_single_quote] = ACTIONS(2905), - }, - [1388] = { - [sym_identifier] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(3667), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), - }, - [1389] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym___global] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_DOT_DOT_DOT] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_pub] = ACTIONS(595), - [anon_sym_mut] = ACTIONS(595), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3700), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_AT_LBRACK] = ACTIONS(595), - }, - [1390] = { - [sym_identifier] = ACTIONS(2923), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2923), - [anon_sym_as] = ACTIONS(2923), - [anon_sym_LBRACE] = ACTIONS(2921), - [anon_sym_COMMA] = ACTIONS(2921), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_PIPE] = ACTIONS(2923), - [anon_sym_fn] = ACTIONS(2923), - [anon_sym_PLUS] = ACTIONS(2923), - [anon_sym_DASH] = ACTIONS(2923), - [anon_sym_STAR] = ACTIONS(2921), - [anon_sym_SLASH] = ACTIONS(2923), - [anon_sym_PERCENT] = ACTIONS(2921), - [anon_sym_LT] = ACTIONS(2923), - [anon_sym_GT] = ACTIONS(2923), - [anon_sym_EQ_EQ] = ACTIONS(2921), - [anon_sym_BANG_EQ] = ACTIONS(2921), - [anon_sym_LT_EQ] = ACTIONS(2921), - [anon_sym_GT_EQ] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2921), - [anon_sym_RBRACK] = ACTIONS(2921), - [anon_sym_struct] = ACTIONS(2923), - [anon_sym_mut] = ACTIONS(2923), - [anon_sym_PLUS_PLUS] = ACTIONS(2921), - [anon_sym_DASH_DASH] = ACTIONS(2921), - [anon_sym_QMARK] = ACTIONS(2923), - [anon_sym_BANG] = ACTIONS(2923), - [anon_sym_go] = ACTIONS(2923), - [anon_sym_spawn] = ACTIONS(2923), - [anon_sym_json_DOTdecode] = ACTIONS(2921), - [anon_sym_LBRACK2] = ACTIONS(2923), - [anon_sym_TILDE] = ACTIONS(2921), - [anon_sym_CARET] = ACTIONS(2921), - [anon_sym_AMP] = ACTIONS(2923), - [anon_sym_LT_DASH] = ACTIONS(2921), - [anon_sym_LT_LT] = ACTIONS(2921), - [anon_sym_GT_GT] = ACTIONS(2923), - [anon_sym_GT_GT_GT] = ACTIONS(2921), - [anon_sym_AMP_CARET] = ACTIONS(2921), - [anon_sym_AMP_AMP] = ACTIONS(2921), - [anon_sym_PIPE_PIPE] = ACTIONS(2921), - [anon_sym_or] = ACTIONS(2923), - [sym_none] = ACTIONS(2923), - [sym_true] = ACTIONS(2923), - [sym_false] = ACTIONS(2923), - [sym_nil] = ACTIONS(2923), - [anon_sym_QMARK_DOT] = ACTIONS(2921), - [anon_sym_POUND_LBRACK] = ACTIONS(2921), - [anon_sym_if] = ACTIONS(2923), - [anon_sym_DOLLARif] = ACTIONS(2923), - [anon_sym_is] = ACTIONS(2923), - [anon_sym_BANGis] = ACTIONS(2921), - [anon_sym_in] = ACTIONS(2923), - [anon_sym_BANGin] = ACTIONS(2921), - [anon_sym_match] = ACTIONS(2923), - [anon_sym_select] = ACTIONS(2923), - [anon_sym_lock] = ACTIONS(2923), - [anon_sym_rlock] = ACTIONS(2923), - [anon_sym_unsafe] = ACTIONS(2923), - [anon_sym_sql] = ACTIONS(2923), - [sym_int_literal] = ACTIONS(2923), - [sym_float_literal] = ACTIONS(2921), - [sym_rune_literal] = ACTIONS(2921), - [anon_sym_AT] = ACTIONS(2923), - [anon_sym_shared] = ACTIONS(2923), - [anon_sym_map_LBRACK] = ACTIONS(2921), - [anon_sym_chan] = ACTIONS(2923), - [anon_sym_thread] = ACTIONS(2923), - [anon_sym_atomic] = ACTIONS(2923), - [sym___double_quote] = ACTIONS(2921), - [sym___single_quote] = ACTIONS(2921), - [sym___c_double_quote] = ACTIONS(2921), - [sym___c_single_quote] = ACTIONS(2921), - [sym___r_double_quote] = ACTIONS(2921), - [sym___r_single_quote] = ACTIONS(2921), - }, - [1391] = { - [sym_reference_expression] = STATE(4566), - [sym_type_reference_expression] = STATE(2159), - [sym_plain_type] = STATE(2198), - [sym__plain_type_without_special] = STATE(2185), - [sym_anon_struct_type] = STATE(2186), - [sym_multi_return_type] = STATE(2185), - [sym_result_type] = STATE(2185), - [sym_option_type] = STATE(2185), - [sym_qualified_type] = STATE(2159), - [sym_fixed_array_type] = STATE(2186), - [sym_array_type] = STATE(2186), - [sym_pointer_type] = STATE(2186), - [sym_wrong_pointer_type] = STATE(2186), - [sym_map_type] = STATE(2186), - [sym_channel_type] = STATE(2186), - [sym_shared_type] = STATE(2186), - [sym_thread_type] = STATE(2186), - [sym_atomic_type] = STATE(2186), - [sym_generic_type] = STATE(2186), - [sym_function_type] = STATE(2186), - [sym_identifier] = ACTIONS(3672), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3674), - [anon_sym___global] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3676), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3678), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_DOT_DOT_DOT] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3680), - [anon_sym_pub] = ACTIONS(555), - [anon_sym_mut] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3682), - [anon_sym_BANG] = ACTIONS(3684), - [anon_sym_LBRACK2] = ACTIONS(3686), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3688), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3690), - [anon_sym_map_LBRACK] = ACTIONS(3692), - [anon_sym_chan] = ACTIONS(3694), - [anon_sym_thread] = ACTIONS(3696), - [anon_sym_atomic] = ACTIONS(3698), - [anon_sym_AT_LBRACK] = ACTIONS(555), - }, - [1392] = { - [sym_identifier] = ACTIONS(2868), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2868), - [anon_sym_as] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2866), - [anon_sym_COMMA] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2866), - [anon_sym_PIPE] = ACTIONS(2868), - [anon_sym_fn] = ACTIONS(2868), - [anon_sym_PLUS] = ACTIONS(2868), - [anon_sym_DASH] = ACTIONS(2868), - [anon_sym_STAR] = ACTIONS(2866), - [anon_sym_SLASH] = ACTIONS(2868), - [anon_sym_PERCENT] = ACTIONS(2866), - [anon_sym_LT] = ACTIONS(2868), - [anon_sym_GT] = ACTIONS(2868), - [anon_sym_EQ_EQ] = ACTIONS(2866), - [anon_sym_BANG_EQ] = ACTIONS(2866), - [anon_sym_LT_EQ] = ACTIONS(2866), - [anon_sym_GT_EQ] = ACTIONS(2866), - [anon_sym_LBRACK] = ACTIONS(2866), - [anon_sym_RBRACK] = ACTIONS(2866), - [anon_sym_struct] = ACTIONS(2868), - [anon_sym_mut] = ACTIONS(2868), - [anon_sym_PLUS_PLUS] = ACTIONS(2866), - [anon_sym_DASH_DASH] = ACTIONS(2866), - [anon_sym_QMARK] = ACTIONS(2868), - [anon_sym_BANG] = ACTIONS(2868), - [anon_sym_go] = ACTIONS(2868), - [anon_sym_spawn] = ACTIONS(2868), - [anon_sym_json_DOTdecode] = ACTIONS(2866), - [anon_sym_LBRACK2] = ACTIONS(2868), - [anon_sym_TILDE] = ACTIONS(2866), - [anon_sym_CARET] = ACTIONS(2866), - [anon_sym_AMP] = ACTIONS(2868), - [anon_sym_LT_DASH] = ACTIONS(2866), - [anon_sym_LT_LT] = ACTIONS(2866), - [anon_sym_GT_GT] = ACTIONS(2868), - [anon_sym_GT_GT_GT] = ACTIONS(2866), - [anon_sym_AMP_CARET] = ACTIONS(2866), - [anon_sym_AMP_AMP] = ACTIONS(2866), - [anon_sym_PIPE_PIPE] = ACTIONS(2866), - [anon_sym_or] = ACTIONS(2868), - [sym_none] = ACTIONS(2868), - [sym_true] = ACTIONS(2868), - [sym_false] = ACTIONS(2868), - [sym_nil] = ACTIONS(2868), - [anon_sym_QMARK_DOT] = ACTIONS(2866), - [anon_sym_POUND_LBRACK] = ACTIONS(2866), - [anon_sym_if] = ACTIONS(2868), - [anon_sym_DOLLARif] = ACTIONS(2868), - [anon_sym_is] = ACTIONS(2868), - [anon_sym_BANGis] = ACTIONS(2866), - [anon_sym_in] = ACTIONS(2868), - [anon_sym_BANGin] = ACTIONS(2866), - [anon_sym_match] = ACTIONS(2868), - [anon_sym_select] = ACTIONS(2868), - [anon_sym_lock] = ACTIONS(2868), - [anon_sym_rlock] = ACTIONS(2868), - [anon_sym_unsafe] = ACTIONS(2868), - [anon_sym_sql] = ACTIONS(2868), - [sym_int_literal] = ACTIONS(2868), - [sym_float_literal] = ACTIONS(2866), - [sym_rune_literal] = ACTIONS(2866), - [anon_sym_AT] = ACTIONS(2868), - [anon_sym_shared] = ACTIONS(2868), - [anon_sym_map_LBRACK] = ACTIONS(2866), - [anon_sym_chan] = ACTIONS(2868), - [anon_sym_thread] = ACTIONS(2868), - [anon_sym_atomic] = ACTIONS(2868), - [sym___double_quote] = ACTIONS(2866), - [sym___single_quote] = ACTIONS(2866), - [sym___c_double_quote] = ACTIONS(2866), - [sym___c_single_quote] = ACTIONS(2866), - [sym___r_double_quote] = ACTIONS(2866), - [sym___r_single_quote] = ACTIONS(2866), - }, - [1393] = { - [sym_identifier] = ACTIONS(2852), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2852), - [anon_sym_as] = ACTIONS(2852), - [anon_sym_LBRACE] = ACTIONS(2850), - [anon_sym_COMMA] = ACTIONS(2850), - [anon_sym_LPAREN] = ACTIONS(2850), - [anon_sym_PIPE] = ACTIONS(2852), - [anon_sym_fn] = ACTIONS(2852), - [anon_sym_PLUS] = ACTIONS(2852), - [anon_sym_DASH] = ACTIONS(2852), - [anon_sym_STAR] = ACTIONS(2850), - [anon_sym_SLASH] = ACTIONS(2852), - [anon_sym_PERCENT] = ACTIONS(2850), - [anon_sym_LT] = ACTIONS(2852), - [anon_sym_GT] = ACTIONS(2852), - [anon_sym_EQ_EQ] = ACTIONS(2850), - [anon_sym_BANG_EQ] = ACTIONS(2850), - [anon_sym_LT_EQ] = ACTIONS(2850), - [anon_sym_GT_EQ] = ACTIONS(2850), - [anon_sym_LBRACK] = ACTIONS(2850), - [anon_sym_RBRACK] = ACTIONS(2850), - [anon_sym_struct] = ACTIONS(2852), - [anon_sym_mut] = ACTIONS(2852), - [anon_sym_PLUS_PLUS] = ACTIONS(2850), - [anon_sym_DASH_DASH] = ACTIONS(2850), - [anon_sym_QMARK] = ACTIONS(2852), - [anon_sym_BANG] = ACTIONS(2852), - [anon_sym_go] = ACTIONS(2852), - [anon_sym_spawn] = ACTIONS(2852), - [anon_sym_json_DOTdecode] = ACTIONS(2850), - [anon_sym_LBRACK2] = ACTIONS(2852), - [anon_sym_TILDE] = ACTIONS(2850), - [anon_sym_CARET] = ACTIONS(2850), - [anon_sym_AMP] = ACTIONS(2852), - [anon_sym_LT_DASH] = ACTIONS(2850), - [anon_sym_LT_LT] = ACTIONS(2850), - [anon_sym_GT_GT] = ACTIONS(2852), - [anon_sym_GT_GT_GT] = ACTIONS(2850), - [anon_sym_AMP_CARET] = ACTIONS(2850), - [anon_sym_AMP_AMP] = ACTIONS(2850), - [anon_sym_PIPE_PIPE] = ACTIONS(2850), - [anon_sym_or] = ACTIONS(2852), - [sym_none] = ACTIONS(2852), - [sym_true] = ACTIONS(2852), - [sym_false] = ACTIONS(2852), - [sym_nil] = ACTIONS(2852), - [anon_sym_QMARK_DOT] = ACTIONS(2850), - [anon_sym_POUND_LBRACK] = ACTIONS(2850), - [anon_sym_if] = ACTIONS(2852), - [anon_sym_DOLLARif] = ACTIONS(2852), - [anon_sym_is] = ACTIONS(2852), - [anon_sym_BANGis] = ACTIONS(2850), - [anon_sym_in] = ACTIONS(2852), - [anon_sym_BANGin] = ACTIONS(2850), - [anon_sym_match] = ACTIONS(2852), - [anon_sym_select] = ACTIONS(2852), - [anon_sym_lock] = ACTIONS(2852), - [anon_sym_rlock] = ACTIONS(2852), - [anon_sym_unsafe] = ACTIONS(2852), - [anon_sym_sql] = ACTIONS(2852), - [sym_int_literal] = ACTIONS(2852), - [sym_float_literal] = ACTIONS(2850), - [sym_rune_literal] = ACTIONS(2850), - [anon_sym_AT] = ACTIONS(2852), - [anon_sym_shared] = ACTIONS(2852), - [anon_sym_map_LBRACK] = ACTIONS(2850), - [anon_sym_chan] = ACTIONS(2852), - [anon_sym_thread] = ACTIONS(2852), - [anon_sym_atomic] = ACTIONS(2852), - [sym___double_quote] = ACTIONS(2850), - [sym___single_quote] = ACTIONS(2850), - [sym___c_double_quote] = ACTIONS(2850), - [sym___c_single_quote] = ACTIONS(2850), - [sym___r_double_quote] = ACTIONS(2850), - [sym___r_single_quote] = ACTIONS(2850), - }, - [1394] = { - [sym_identifier] = ACTIONS(3153), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3153), - [anon_sym_as] = ACTIONS(3153), - [anon_sym_LBRACE] = ACTIONS(3151), - [anon_sym_COMMA] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3151), - [anon_sym_PIPE] = ACTIONS(3153), - [anon_sym_fn] = ACTIONS(3153), - [anon_sym_PLUS] = ACTIONS(3153), - [anon_sym_DASH] = ACTIONS(3153), - [anon_sym_STAR] = ACTIONS(3151), - [anon_sym_SLASH] = ACTIONS(3153), - [anon_sym_PERCENT] = ACTIONS(3151), - [anon_sym_LT] = ACTIONS(3153), - [anon_sym_GT] = ACTIONS(3153), - [anon_sym_EQ_EQ] = ACTIONS(3151), - [anon_sym_BANG_EQ] = ACTIONS(3151), - [anon_sym_LT_EQ] = ACTIONS(3151), - [anon_sym_GT_EQ] = ACTIONS(3151), - [anon_sym_LBRACK] = ACTIONS(3151), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_struct] = ACTIONS(3153), - [anon_sym_mut] = ACTIONS(3153), - [anon_sym_PLUS_PLUS] = ACTIONS(3151), - [anon_sym_DASH_DASH] = ACTIONS(3151), - [anon_sym_QMARK] = ACTIONS(3153), - [anon_sym_BANG] = ACTIONS(3153), - [anon_sym_go] = ACTIONS(3153), - [anon_sym_spawn] = ACTIONS(3153), - [anon_sym_json_DOTdecode] = ACTIONS(3151), - [anon_sym_LBRACK2] = ACTIONS(3153), - [anon_sym_TILDE] = ACTIONS(3151), - [anon_sym_CARET] = ACTIONS(3151), - [anon_sym_AMP] = ACTIONS(3153), - [anon_sym_LT_DASH] = ACTIONS(3151), - [anon_sym_LT_LT] = ACTIONS(3151), - [anon_sym_GT_GT] = ACTIONS(3153), - [anon_sym_GT_GT_GT] = ACTIONS(3151), - [anon_sym_AMP_CARET] = ACTIONS(3151), - [anon_sym_AMP_AMP] = ACTIONS(3151), - [anon_sym_PIPE_PIPE] = ACTIONS(3151), - [anon_sym_or] = ACTIONS(3153), - [sym_none] = ACTIONS(3153), - [sym_true] = ACTIONS(3153), - [sym_false] = ACTIONS(3153), - [sym_nil] = ACTIONS(3153), - [anon_sym_QMARK_DOT] = ACTIONS(3151), - [anon_sym_POUND_LBRACK] = ACTIONS(3151), - [anon_sym_if] = ACTIONS(3153), - [anon_sym_DOLLARif] = ACTIONS(3153), - [anon_sym_is] = ACTIONS(3153), - [anon_sym_BANGis] = ACTIONS(3151), - [anon_sym_in] = ACTIONS(3153), - [anon_sym_BANGin] = ACTIONS(3151), - [anon_sym_match] = ACTIONS(3153), - [anon_sym_select] = ACTIONS(3153), - [anon_sym_lock] = ACTIONS(3153), - [anon_sym_rlock] = ACTIONS(3153), - [anon_sym_unsafe] = ACTIONS(3153), - [anon_sym_sql] = ACTIONS(3153), - [sym_int_literal] = ACTIONS(3153), - [sym_float_literal] = ACTIONS(3151), - [sym_rune_literal] = ACTIONS(3151), - [anon_sym_AT] = ACTIONS(3153), - [anon_sym_shared] = ACTIONS(3153), - [anon_sym_map_LBRACK] = ACTIONS(3151), - [anon_sym_chan] = ACTIONS(3153), - [anon_sym_thread] = ACTIONS(3153), - [anon_sym_atomic] = ACTIONS(3153), - [sym___double_quote] = ACTIONS(3151), - [sym___single_quote] = ACTIONS(3151), - [sym___c_double_quote] = ACTIONS(3151), - [sym___c_single_quote] = ACTIONS(3151), - [sym___r_double_quote] = ACTIONS(3151), - [sym___r_single_quote] = ACTIONS(3151), - }, - [1395] = { - [sym_identifier] = ACTIONS(2828), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2826), - [anon_sym_COMMA] = ACTIONS(2826), - [anon_sym_LPAREN] = ACTIONS(2826), - [anon_sym_PIPE] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2826), - [anon_sym_SLASH] = ACTIONS(2828), - [anon_sym_PERCENT] = ACTIONS(2826), - [anon_sym_LT] = ACTIONS(2828), - [anon_sym_GT] = ACTIONS(2828), - [anon_sym_EQ_EQ] = ACTIONS(2826), - [anon_sym_BANG_EQ] = ACTIONS(2826), - [anon_sym_LT_EQ] = ACTIONS(2826), - [anon_sym_GT_EQ] = ACTIONS(2826), - [anon_sym_LBRACK] = ACTIONS(2826), - [anon_sym_RBRACK] = ACTIONS(2826), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_PLUS_PLUS] = ACTIONS(2826), - [anon_sym_DASH_DASH] = ACTIONS(2826), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2826), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2826), - [anon_sym_CARET] = ACTIONS(2826), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2826), - [anon_sym_LT_LT] = ACTIONS(2826), - [anon_sym_GT_GT] = ACTIONS(2828), - [anon_sym_GT_GT_GT] = ACTIONS(2826), - [anon_sym_AMP_CARET] = ACTIONS(2826), - [anon_sym_AMP_AMP] = ACTIONS(2826), - [anon_sym_PIPE_PIPE] = ACTIONS(2826), - [anon_sym_or] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_QMARK_DOT] = ACTIONS(2826), - [anon_sym_POUND_LBRACK] = ACTIONS(2826), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_is] = ACTIONS(2828), - [anon_sym_BANGis] = ACTIONS(2826), - [anon_sym_in] = ACTIONS(2828), - [anon_sym_BANGin] = ACTIONS(2826), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2826), - [sym_rune_literal] = ACTIONS(2826), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2826), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2826), - [sym___single_quote] = ACTIONS(2826), - [sym___c_double_quote] = ACTIONS(2826), - [sym___c_single_quote] = ACTIONS(2826), - [sym___r_double_quote] = ACTIONS(2826), - [sym___r_single_quote] = ACTIONS(2826), - }, - [1396] = { - [sym_identifier] = ACTIONS(2848), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2848), - [anon_sym_as] = ACTIONS(2848), - [anon_sym_LBRACE] = ACTIONS(2846), - [anon_sym_COMMA] = ACTIONS(2846), - [anon_sym_LPAREN] = ACTIONS(2846), - [anon_sym_PIPE] = ACTIONS(2848), - [anon_sym_fn] = ACTIONS(2848), - [anon_sym_PLUS] = ACTIONS(2848), - [anon_sym_DASH] = ACTIONS(2848), - [anon_sym_STAR] = ACTIONS(2846), - [anon_sym_SLASH] = ACTIONS(2848), - [anon_sym_PERCENT] = ACTIONS(2846), - [anon_sym_LT] = ACTIONS(2848), - [anon_sym_GT] = ACTIONS(2848), - [anon_sym_EQ_EQ] = ACTIONS(2846), - [anon_sym_BANG_EQ] = ACTIONS(2846), - [anon_sym_LT_EQ] = ACTIONS(2846), - [anon_sym_GT_EQ] = ACTIONS(2846), - [anon_sym_LBRACK] = ACTIONS(2846), - [anon_sym_RBRACK] = ACTIONS(2846), - [anon_sym_struct] = ACTIONS(2848), - [anon_sym_mut] = ACTIONS(2848), - [anon_sym_PLUS_PLUS] = ACTIONS(2846), - [anon_sym_DASH_DASH] = ACTIONS(2846), - [anon_sym_QMARK] = ACTIONS(2848), - [anon_sym_BANG] = ACTIONS(2848), - [anon_sym_go] = ACTIONS(2848), - [anon_sym_spawn] = ACTIONS(2848), - [anon_sym_json_DOTdecode] = ACTIONS(2846), - [anon_sym_LBRACK2] = ACTIONS(2848), - [anon_sym_TILDE] = ACTIONS(2846), - [anon_sym_CARET] = ACTIONS(2846), - [anon_sym_AMP] = ACTIONS(2848), - [anon_sym_LT_DASH] = ACTIONS(2846), - [anon_sym_LT_LT] = ACTIONS(2846), - [anon_sym_GT_GT] = ACTIONS(2848), - [anon_sym_GT_GT_GT] = ACTIONS(2846), - [anon_sym_AMP_CARET] = ACTIONS(2846), - [anon_sym_AMP_AMP] = ACTIONS(2846), - [anon_sym_PIPE_PIPE] = ACTIONS(2846), - [anon_sym_or] = ACTIONS(2848), - [sym_none] = ACTIONS(2848), - [sym_true] = ACTIONS(2848), - [sym_false] = ACTIONS(2848), - [sym_nil] = ACTIONS(2848), - [anon_sym_QMARK_DOT] = ACTIONS(2846), - [anon_sym_POUND_LBRACK] = ACTIONS(2846), - [anon_sym_if] = ACTIONS(2848), - [anon_sym_DOLLARif] = ACTIONS(2848), - [anon_sym_is] = ACTIONS(2848), - [anon_sym_BANGis] = ACTIONS(2846), - [anon_sym_in] = ACTIONS(2848), - [anon_sym_BANGin] = ACTIONS(2846), - [anon_sym_match] = ACTIONS(2848), - [anon_sym_select] = ACTIONS(2848), - [anon_sym_lock] = ACTIONS(2848), - [anon_sym_rlock] = ACTIONS(2848), - [anon_sym_unsafe] = ACTIONS(2848), - [anon_sym_sql] = ACTIONS(2848), - [sym_int_literal] = ACTIONS(2848), - [sym_float_literal] = ACTIONS(2846), - [sym_rune_literal] = ACTIONS(2846), - [anon_sym_AT] = ACTIONS(2848), - [anon_sym_shared] = ACTIONS(2848), - [anon_sym_map_LBRACK] = ACTIONS(2846), - [anon_sym_chan] = ACTIONS(2848), - [anon_sym_thread] = ACTIONS(2848), - [anon_sym_atomic] = ACTIONS(2848), - [sym___double_quote] = ACTIONS(2846), - [sym___single_quote] = ACTIONS(2846), - [sym___c_double_quote] = ACTIONS(2846), - [sym___c_single_quote] = ACTIONS(2846), - [sym___r_double_quote] = ACTIONS(2846), - [sym___r_single_quote] = ACTIONS(2846), - }, - [1397] = { - [sym_identifier] = ACTIONS(3193), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3193), - [anon_sym_as] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3191), - [anon_sym_COMMA] = ACTIONS(3191), - [anon_sym_LPAREN] = ACTIONS(3191), - [anon_sym_PIPE] = ACTIONS(3193), - [anon_sym_fn] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_PERCENT] = ACTIONS(3191), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_GT] = ACTIONS(3193), - [anon_sym_EQ_EQ] = ACTIONS(3191), - [anon_sym_BANG_EQ] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3191), - [anon_sym_LBRACK] = ACTIONS(3191), - [anon_sym_RBRACK] = ACTIONS(3191), - [anon_sym_struct] = ACTIONS(3193), - [anon_sym_mut] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3191), - [anon_sym_DASH_DASH] = ACTIONS(3191), - [anon_sym_QMARK] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_go] = ACTIONS(3193), - [anon_sym_spawn] = ACTIONS(3193), - [anon_sym_json_DOTdecode] = ACTIONS(3191), - [anon_sym_LBRACK2] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3191), - [anon_sym_CARET] = ACTIONS(3191), - [anon_sym_AMP] = ACTIONS(3193), - [anon_sym_LT_DASH] = ACTIONS(3191), - [anon_sym_LT_LT] = ACTIONS(3191), - [anon_sym_GT_GT] = ACTIONS(3193), - [anon_sym_GT_GT_GT] = ACTIONS(3191), - [anon_sym_AMP_CARET] = ACTIONS(3191), - [anon_sym_AMP_AMP] = ACTIONS(3191), - [anon_sym_PIPE_PIPE] = ACTIONS(3191), - [anon_sym_or] = ACTIONS(3193), - [sym_none] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_nil] = ACTIONS(3193), - [anon_sym_QMARK_DOT] = ACTIONS(3191), - [anon_sym_POUND_LBRACK] = ACTIONS(3191), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_DOLLARif] = ACTIONS(3193), - [anon_sym_is] = ACTIONS(3193), - [anon_sym_BANGis] = ACTIONS(3191), - [anon_sym_in] = ACTIONS(3193), - [anon_sym_BANGin] = ACTIONS(3191), - [anon_sym_match] = ACTIONS(3193), - [anon_sym_select] = ACTIONS(3193), - [anon_sym_lock] = ACTIONS(3193), - [anon_sym_rlock] = ACTIONS(3193), - [anon_sym_unsafe] = ACTIONS(3193), - [anon_sym_sql] = ACTIONS(3193), - [sym_int_literal] = ACTIONS(3193), - [sym_float_literal] = ACTIONS(3191), - [sym_rune_literal] = ACTIONS(3191), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_shared] = ACTIONS(3193), - [anon_sym_map_LBRACK] = ACTIONS(3191), - [anon_sym_chan] = ACTIONS(3193), - [anon_sym_thread] = ACTIONS(3193), - [anon_sym_atomic] = ACTIONS(3193), - [sym___double_quote] = ACTIONS(3191), - [sym___single_quote] = ACTIONS(3191), - [sym___c_double_quote] = ACTIONS(3191), - [sym___c_single_quote] = ACTIONS(3191), - [sym___r_double_quote] = ACTIONS(3191), - [sym___r_single_quote] = ACTIONS(3191), - }, - [1398] = { - [sym_identifier] = ACTIONS(2816), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2816), - [anon_sym_as] = ACTIONS(2816), - [anon_sym_LBRACE] = ACTIONS(2814), - [anon_sym_COMMA] = ACTIONS(2814), - [anon_sym_LPAREN] = ACTIONS(2814), - [anon_sym_PIPE] = ACTIONS(2816), - [anon_sym_fn] = ACTIONS(2816), - [anon_sym_PLUS] = ACTIONS(2816), - [anon_sym_DASH] = ACTIONS(2816), - [anon_sym_STAR] = ACTIONS(2814), - [anon_sym_SLASH] = ACTIONS(2816), - [anon_sym_PERCENT] = ACTIONS(2814), - [anon_sym_LT] = ACTIONS(2816), - [anon_sym_GT] = ACTIONS(2816), - [anon_sym_EQ_EQ] = ACTIONS(2814), - [anon_sym_BANG_EQ] = ACTIONS(2814), - [anon_sym_LT_EQ] = ACTIONS(2814), - [anon_sym_GT_EQ] = ACTIONS(2814), - [anon_sym_LBRACK] = ACTIONS(2814), - [anon_sym_RBRACK] = ACTIONS(2814), - [anon_sym_struct] = ACTIONS(2816), - [anon_sym_mut] = ACTIONS(2816), - [anon_sym_PLUS_PLUS] = ACTIONS(2814), - [anon_sym_DASH_DASH] = ACTIONS(2814), - [anon_sym_QMARK] = ACTIONS(2816), - [anon_sym_BANG] = ACTIONS(2816), - [anon_sym_go] = ACTIONS(2816), - [anon_sym_spawn] = ACTIONS(2816), - [anon_sym_json_DOTdecode] = ACTIONS(2814), - [anon_sym_LBRACK2] = ACTIONS(2816), - [anon_sym_TILDE] = ACTIONS(2814), - [anon_sym_CARET] = ACTIONS(2814), - [anon_sym_AMP] = ACTIONS(2816), - [anon_sym_LT_DASH] = ACTIONS(2814), - [anon_sym_LT_LT] = ACTIONS(2814), - [anon_sym_GT_GT] = ACTIONS(2816), - [anon_sym_GT_GT_GT] = ACTIONS(2814), - [anon_sym_AMP_CARET] = ACTIONS(2814), - [anon_sym_AMP_AMP] = ACTIONS(2814), - [anon_sym_PIPE_PIPE] = ACTIONS(2814), - [anon_sym_or] = ACTIONS(2816), - [sym_none] = ACTIONS(2816), - [sym_true] = ACTIONS(2816), - [sym_false] = ACTIONS(2816), - [sym_nil] = ACTIONS(2816), - [anon_sym_QMARK_DOT] = ACTIONS(2814), - [anon_sym_POUND_LBRACK] = ACTIONS(2814), - [anon_sym_if] = ACTIONS(2816), - [anon_sym_DOLLARif] = ACTIONS(2816), - [anon_sym_is] = ACTIONS(2816), - [anon_sym_BANGis] = ACTIONS(2814), - [anon_sym_in] = ACTIONS(2816), - [anon_sym_BANGin] = ACTIONS(2814), - [anon_sym_match] = ACTIONS(2816), - [anon_sym_select] = ACTIONS(2816), - [anon_sym_lock] = ACTIONS(2816), - [anon_sym_rlock] = ACTIONS(2816), - [anon_sym_unsafe] = ACTIONS(2816), - [anon_sym_sql] = ACTIONS(2816), - [sym_int_literal] = ACTIONS(2816), - [sym_float_literal] = ACTIONS(2814), - [sym_rune_literal] = ACTIONS(2814), - [anon_sym_AT] = ACTIONS(2816), - [anon_sym_shared] = ACTIONS(2816), - [anon_sym_map_LBRACK] = ACTIONS(2814), - [anon_sym_chan] = ACTIONS(2816), - [anon_sym_thread] = ACTIONS(2816), - [anon_sym_atomic] = ACTIONS(2816), - [sym___double_quote] = ACTIONS(2814), - [sym___single_quote] = ACTIONS(2814), - [sym___c_double_quote] = ACTIONS(2814), - [sym___c_single_quote] = ACTIONS(2814), - [sym___r_double_quote] = ACTIONS(2814), - [sym___r_single_quote] = ACTIONS(2814), - }, - [1399] = { - [sym_identifier] = ACTIONS(3025), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3025), - [anon_sym_as] = ACTIONS(3025), - [anon_sym_LBRACE] = ACTIONS(3023), - [anon_sym_COMMA] = ACTIONS(3023), - [anon_sym_LPAREN] = ACTIONS(3023), - [anon_sym_PIPE] = ACTIONS(3025), - [anon_sym_fn] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3025), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3023), - [anon_sym_SLASH] = ACTIONS(3025), - [anon_sym_PERCENT] = ACTIONS(3023), - [anon_sym_LT] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3023), - [anon_sym_BANG_EQ] = ACTIONS(3023), - [anon_sym_LT_EQ] = ACTIONS(3023), - [anon_sym_GT_EQ] = ACTIONS(3023), - [anon_sym_LBRACK] = ACTIONS(3023), - [anon_sym_RBRACK] = ACTIONS(3023), - [anon_sym_struct] = ACTIONS(3025), - [anon_sym_mut] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3023), - [anon_sym_DASH_DASH] = ACTIONS(3023), - [anon_sym_QMARK] = ACTIONS(3025), - [anon_sym_BANG] = ACTIONS(3025), - [anon_sym_go] = ACTIONS(3025), - [anon_sym_spawn] = ACTIONS(3025), - [anon_sym_json_DOTdecode] = ACTIONS(3023), - [anon_sym_LBRACK2] = ACTIONS(3025), - [anon_sym_TILDE] = ACTIONS(3023), - [anon_sym_CARET] = ACTIONS(3023), - [anon_sym_AMP] = ACTIONS(3025), - [anon_sym_LT_DASH] = ACTIONS(3023), - [anon_sym_LT_LT] = ACTIONS(3023), - [anon_sym_GT_GT] = ACTIONS(3025), - [anon_sym_GT_GT_GT] = ACTIONS(3023), - [anon_sym_AMP_CARET] = ACTIONS(3023), - [anon_sym_AMP_AMP] = ACTIONS(3023), - [anon_sym_PIPE_PIPE] = ACTIONS(3023), - [anon_sym_or] = ACTIONS(3025), - [sym_none] = ACTIONS(3025), - [sym_true] = ACTIONS(3025), - [sym_false] = ACTIONS(3025), - [sym_nil] = ACTIONS(3025), - [anon_sym_QMARK_DOT] = ACTIONS(3023), - [anon_sym_POUND_LBRACK] = ACTIONS(3023), - [anon_sym_if] = ACTIONS(3025), - [anon_sym_DOLLARif] = ACTIONS(3025), - [anon_sym_is] = ACTIONS(3025), - [anon_sym_BANGis] = ACTIONS(3023), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_BANGin] = ACTIONS(3023), - [anon_sym_match] = ACTIONS(3025), - [anon_sym_select] = ACTIONS(3025), - [anon_sym_lock] = ACTIONS(3025), - [anon_sym_rlock] = ACTIONS(3025), - [anon_sym_unsafe] = ACTIONS(3025), - [anon_sym_sql] = ACTIONS(3025), - [sym_int_literal] = ACTIONS(3025), - [sym_float_literal] = ACTIONS(3023), - [sym_rune_literal] = ACTIONS(3023), - [anon_sym_AT] = ACTIONS(3025), - [anon_sym_shared] = ACTIONS(3025), - [anon_sym_map_LBRACK] = ACTIONS(3023), - [anon_sym_chan] = ACTIONS(3025), - [anon_sym_thread] = ACTIONS(3025), - [anon_sym_atomic] = ACTIONS(3025), - [sym___double_quote] = ACTIONS(3023), - [sym___single_quote] = ACTIONS(3023), - [sym___c_double_quote] = ACTIONS(3023), - [sym___c_single_quote] = ACTIONS(3023), - [sym___r_double_quote] = ACTIONS(3023), - [sym___r_single_quote] = ACTIONS(3023), - }, - [1400] = { - [sym_identifier] = ACTIONS(2766), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2766), - [anon_sym_as] = ACTIONS(2766), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_COMMA] = ACTIONS(2768), - [anon_sym_LPAREN] = ACTIONS(2768), - [anon_sym_PIPE] = ACTIONS(2766), - [anon_sym_fn] = ACTIONS(2766), - [anon_sym_PLUS] = ACTIONS(2766), - [anon_sym_DASH] = ACTIONS(2766), - [anon_sym_STAR] = ACTIONS(2768), - [anon_sym_SLASH] = ACTIONS(2766), - [anon_sym_PERCENT] = ACTIONS(2768), - [anon_sym_LT] = ACTIONS(2766), - [anon_sym_GT] = ACTIONS(2766), - [anon_sym_EQ_EQ] = ACTIONS(2768), - [anon_sym_BANG_EQ] = ACTIONS(2768), - [anon_sym_LT_EQ] = ACTIONS(2768), - [anon_sym_GT_EQ] = ACTIONS(2768), - [anon_sym_LBRACK] = ACTIONS(2768), - [anon_sym_RBRACK] = ACTIONS(2768), - [anon_sym_struct] = ACTIONS(2766), - [anon_sym_mut] = ACTIONS(2766), - [anon_sym_PLUS_PLUS] = ACTIONS(2768), - [anon_sym_DASH_DASH] = ACTIONS(2768), - [anon_sym_QMARK] = ACTIONS(2766), - [anon_sym_BANG] = ACTIONS(2766), - [anon_sym_go] = ACTIONS(2766), - [anon_sym_spawn] = ACTIONS(2766), - [anon_sym_json_DOTdecode] = ACTIONS(2768), - [anon_sym_LBRACK2] = ACTIONS(2766), - [anon_sym_TILDE] = ACTIONS(2768), - [anon_sym_CARET] = ACTIONS(2768), - [anon_sym_AMP] = ACTIONS(2766), - [anon_sym_LT_DASH] = ACTIONS(2768), - [anon_sym_LT_LT] = ACTIONS(2768), - [anon_sym_GT_GT] = ACTIONS(2766), - [anon_sym_GT_GT_GT] = ACTIONS(2768), - [anon_sym_AMP_CARET] = ACTIONS(2768), - [anon_sym_AMP_AMP] = ACTIONS(2768), - [anon_sym_PIPE_PIPE] = ACTIONS(2768), - [anon_sym_or] = ACTIONS(2766), - [sym_none] = ACTIONS(2766), - [sym_true] = ACTIONS(2766), - [sym_false] = ACTIONS(2766), - [sym_nil] = ACTIONS(2766), - [anon_sym_QMARK_DOT] = ACTIONS(2768), - [anon_sym_POUND_LBRACK] = ACTIONS(2768), - [anon_sym_if] = ACTIONS(2766), - [anon_sym_DOLLARif] = ACTIONS(2766), - [anon_sym_is] = ACTIONS(2766), - [anon_sym_BANGis] = ACTIONS(2768), - [anon_sym_in] = ACTIONS(2766), - [anon_sym_BANGin] = ACTIONS(2768), - [anon_sym_match] = ACTIONS(2766), - [anon_sym_select] = ACTIONS(2766), - [anon_sym_lock] = ACTIONS(2766), - [anon_sym_rlock] = ACTIONS(2766), - [anon_sym_unsafe] = ACTIONS(2766), - [anon_sym_sql] = ACTIONS(2766), - [sym_int_literal] = ACTIONS(2766), - [sym_float_literal] = ACTIONS(2768), - [sym_rune_literal] = ACTIONS(2768), - [anon_sym_AT] = ACTIONS(2766), - [anon_sym_shared] = ACTIONS(2766), - [anon_sym_map_LBRACK] = ACTIONS(2768), - [anon_sym_chan] = ACTIONS(2766), - [anon_sym_thread] = ACTIONS(2766), - [anon_sym_atomic] = ACTIONS(2766), - [sym___double_quote] = ACTIONS(2768), - [sym___single_quote] = ACTIONS(2768), - [sym___c_double_quote] = ACTIONS(2768), - [sym___c_single_quote] = ACTIONS(2768), - [sym___r_double_quote] = ACTIONS(2768), - [sym___r_single_quote] = ACTIONS(2768), - }, - [1401] = { - [sym_identifier] = ACTIONS(3021), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3021), - [anon_sym_as] = ACTIONS(3021), - [anon_sym_LBRACE] = ACTIONS(3019), - [anon_sym_COMMA] = ACTIONS(3019), - [anon_sym_LPAREN] = ACTIONS(3019), - [anon_sym_PIPE] = ACTIONS(3021), - [anon_sym_fn] = ACTIONS(3021), - [anon_sym_PLUS] = ACTIONS(3021), - [anon_sym_DASH] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(3019), - [anon_sym_SLASH] = ACTIONS(3021), - [anon_sym_PERCENT] = ACTIONS(3019), - [anon_sym_LT] = ACTIONS(3021), - [anon_sym_GT] = ACTIONS(3021), - [anon_sym_EQ_EQ] = ACTIONS(3019), - [anon_sym_BANG_EQ] = ACTIONS(3019), - [anon_sym_LT_EQ] = ACTIONS(3019), - [anon_sym_GT_EQ] = ACTIONS(3019), - [anon_sym_LBRACK] = ACTIONS(3019), - [anon_sym_RBRACK] = ACTIONS(3019), - [anon_sym_struct] = ACTIONS(3021), - [anon_sym_mut] = ACTIONS(3021), - [anon_sym_PLUS_PLUS] = ACTIONS(3019), - [anon_sym_DASH_DASH] = ACTIONS(3019), - [anon_sym_QMARK] = ACTIONS(3021), - [anon_sym_BANG] = ACTIONS(3021), - [anon_sym_go] = ACTIONS(3021), - [anon_sym_spawn] = ACTIONS(3021), - [anon_sym_json_DOTdecode] = ACTIONS(3019), - [anon_sym_LBRACK2] = ACTIONS(3021), - [anon_sym_TILDE] = ACTIONS(3019), - [anon_sym_CARET] = ACTIONS(3019), - [anon_sym_AMP] = ACTIONS(3021), - [anon_sym_LT_DASH] = ACTIONS(3019), - [anon_sym_LT_LT] = ACTIONS(3019), - [anon_sym_GT_GT] = ACTIONS(3021), - [anon_sym_GT_GT_GT] = ACTIONS(3019), - [anon_sym_AMP_CARET] = ACTIONS(3019), - [anon_sym_AMP_AMP] = ACTIONS(3019), - [anon_sym_PIPE_PIPE] = ACTIONS(3019), - [anon_sym_or] = ACTIONS(3021), - [sym_none] = ACTIONS(3021), - [sym_true] = ACTIONS(3021), - [sym_false] = ACTIONS(3021), - [sym_nil] = ACTIONS(3021), - [anon_sym_QMARK_DOT] = ACTIONS(3019), - [anon_sym_POUND_LBRACK] = ACTIONS(3019), - [anon_sym_if] = ACTIONS(3021), - [anon_sym_DOLLARif] = ACTIONS(3021), - [anon_sym_is] = ACTIONS(3021), - [anon_sym_BANGis] = ACTIONS(3019), - [anon_sym_in] = ACTIONS(3021), - [anon_sym_BANGin] = ACTIONS(3019), - [anon_sym_match] = ACTIONS(3021), - [anon_sym_select] = ACTIONS(3021), - [anon_sym_lock] = ACTIONS(3021), - [anon_sym_rlock] = ACTIONS(3021), - [anon_sym_unsafe] = ACTIONS(3021), - [anon_sym_sql] = ACTIONS(3021), - [sym_int_literal] = ACTIONS(3021), - [sym_float_literal] = ACTIONS(3019), - [sym_rune_literal] = ACTIONS(3019), - [anon_sym_AT] = ACTIONS(3021), - [anon_sym_shared] = ACTIONS(3021), - [anon_sym_map_LBRACK] = ACTIONS(3019), - [anon_sym_chan] = ACTIONS(3021), - [anon_sym_thread] = ACTIONS(3021), - [anon_sym_atomic] = ACTIONS(3021), - [sym___double_quote] = ACTIONS(3019), - [sym___single_quote] = ACTIONS(3019), - [sym___c_double_quote] = ACTIONS(3019), - [sym___c_single_quote] = ACTIONS(3019), - [sym___r_double_quote] = ACTIONS(3019), - [sym___r_single_quote] = ACTIONS(3019), - }, - [1402] = { - [sym_identifier] = ACTIONS(2884), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2886), - [anon_sym_as] = ACTIONS(2884), - [anon_sym_LBRACE] = ACTIONS(2882), - [anon_sym_COMMA] = ACTIONS(2882), - [anon_sym_LPAREN] = ACTIONS(2882), - [anon_sym_PIPE] = ACTIONS(2884), - [anon_sym_fn] = ACTIONS(2884), - [anon_sym_PLUS] = ACTIONS(2884), - [anon_sym_DASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_SLASH] = ACTIONS(2884), - [anon_sym_PERCENT] = ACTIONS(2882), - [anon_sym_LT] = ACTIONS(2884), - [anon_sym_GT] = ACTIONS(2884), - [anon_sym_EQ_EQ] = ACTIONS(2882), - [anon_sym_BANG_EQ] = ACTIONS(2882), - [anon_sym_LT_EQ] = ACTIONS(2882), - [anon_sym_GT_EQ] = ACTIONS(2882), - [anon_sym_LBRACK] = ACTIONS(2882), - [anon_sym_RBRACK] = ACTIONS(2882), - [anon_sym_struct] = ACTIONS(2884), - [anon_sym_mut] = ACTIONS(2884), - [anon_sym_PLUS_PLUS] = ACTIONS(2882), - [anon_sym_DASH_DASH] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2884), - [anon_sym_BANG] = ACTIONS(2884), - [anon_sym_go] = ACTIONS(2884), - [anon_sym_spawn] = ACTIONS(2884), - [anon_sym_json_DOTdecode] = ACTIONS(2882), - [anon_sym_LBRACK2] = ACTIONS(2884), - [anon_sym_TILDE] = ACTIONS(2882), - [anon_sym_CARET] = ACTIONS(2882), - [anon_sym_AMP] = ACTIONS(2884), - [anon_sym_LT_DASH] = ACTIONS(2882), - [anon_sym_LT_LT] = ACTIONS(2882), - [anon_sym_GT_GT] = ACTIONS(2884), - [anon_sym_GT_GT_GT] = ACTIONS(2882), - [anon_sym_AMP_CARET] = ACTIONS(2882), - [anon_sym_AMP_AMP] = ACTIONS(2882), - [anon_sym_PIPE_PIPE] = ACTIONS(2882), - [anon_sym_or] = ACTIONS(2884), - [sym_none] = ACTIONS(2884), - [sym_true] = ACTIONS(2884), - [sym_false] = ACTIONS(2884), - [sym_nil] = ACTIONS(2884), - [anon_sym_QMARK_DOT] = ACTIONS(2882), - [anon_sym_POUND_LBRACK] = ACTIONS(2882), - [anon_sym_if] = ACTIONS(2884), - [anon_sym_DOLLARif] = ACTIONS(2884), - [anon_sym_is] = ACTIONS(2884), - [anon_sym_BANGis] = ACTIONS(2882), - [anon_sym_in] = ACTIONS(2884), - [anon_sym_BANGin] = ACTIONS(2882), - [anon_sym_match] = ACTIONS(2884), - [anon_sym_select] = ACTIONS(2884), - [anon_sym_lock] = ACTIONS(2884), - [anon_sym_rlock] = ACTIONS(2884), - [anon_sym_unsafe] = ACTIONS(2884), - [anon_sym_sql] = ACTIONS(2884), - [sym_int_literal] = ACTIONS(2884), - [sym_float_literal] = ACTIONS(2882), - [sym_rune_literal] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2884), - [anon_sym_shared] = ACTIONS(2884), - [anon_sym_map_LBRACK] = ACTIONS(2882), - [anon_sym_chan] = ACTIONS(2884), - [anon_sym_thread] = ACTIONS(2884), - [anon_sym_atomic] = ACTIONS(2884), - [sym___double_quote] = ACTIONS(2882), - [sym___single_quote] = ACTIONS(2882), - [sym___c_double_quote] = ACTIONS(2882), - [sym___c_single_quote] = ACTIONS(2882), - [sym___r_double_quote] = ACTIONS(2882), - [sym___r_single_quote] = ACTIONS(2882), - }, - [1403] = { - [sym_identifier] = ACTIONS(3001), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3001), - [anon_sym_as] = ACTIONS(3001), - [anon_sym_LBRACE] = ACTIONS(2999), - [anon_sym_COMMA] = ACTIONS(2999), - [anon_sym_LPAREN] = ACTIONS(2999), - [anon_sym_PIPE] = ACTIONS(3001), - [anon_sym_fn] = ACTIONS(3001), - [anon_sym_PLUS] = ACTIONS(3001), - [anon_sym_DASH] = ACTIONS(3001), - [anon_sym_STAR] = ACTIONS(2999), - [anon_sym_SLASH] = ACTIONS(3001), - [anon_sym_PERCENT] = ACTIONS(2999), - [anon_sym_LT] = ACTIONS(3001), - [anon_sym_GT] = ACTIONS(3001), - [anon_sym_EQ_EQ] = ACTIONS(2999), - [anon_sym_BANG_EQ] = ACTIONS(2999), - [anon_sym_LT_EQ] = ACTIONS(2999), - [anon_sym_GT_EQ] = ACTIONS(2999), - [anon_sym_LBRACK] = ACTIONS(2999), - [anon_sym_RBRACK] = ACTIONS(2999), - [anon_sym_struct] = ACTIONS(3001), - [anon_sym_mut] = ACTIONS(3001), - [anon_sym_PLUS_PLUS] = ACTIONS(2999), - [anon_sym_DASH_DASH] = ACTIONS(2999), - [anon_sym_QMARK] = ACTIONS(3001), - [anon_sym_BANG] = ACTIONS(3001), - [anon_sym_go] = ACTIONS(3001), - [anon_sym_spawn] = ACTIONS(3001), - [anon_sym_json_DOTdecode] = ACTIONS(2999), - [anon_sym_LBRACK2] = ACTIONS(3001), - [anon_sym_TILDE] = ACTIONS(2999), - [anon_sym_CARET] = ACTIONS(2999), - [anon_sym_AMP] = ACTIONS(3001), - [anon_sym_LT_DASH] = ACTIONS(2999), - [anon_sym_LT_LT] = ACTIONS(2999), - [anon_sym_GT_GT] = ACTIONS(3001), - [anon_sym_GT_GT_GT] = ACTIONS(2999), - [anon_sym_AMP_CARET] = ACTIONS(2999), - [anon_sym_AMP_AMP] = ACTIONS(2999), - [anon_sym_PIPE_PIPE] = ACTIONS(2999), - [anon_sym_or] = ACTIONS(3001), - [sym_none] = ACTIONS(3001), - [sym_true] = ACTIONS(3001), - [sym_false] = ACTIONS(3001), - [sym_nil] = ACTIONS(3001), - [anon_sym_QMARK_DOT] = ACTIONS(2999), - [anon_sym_POUND_LBRACK] = ACTIONS(2999), - [anon_sym_if] = ACTIONS(3001), - [anon_sym_DOLLARif] = ACTIONS(3001), - [anon_sym_is] = ACTIONS(3001), - [anon_sym_BANGis] = ACTIONS(2999), - [anon_sym_in] = ACTIONS(3001), - [anon_sym_BANGin] = ACTIONS(2999), - [anon_sym_match] = ACTIONS(3001), - [anon_sym_select] = ACTIONS(3001), - [anon_sym_lock] = ACTIONS(3001), - [anon_sym_rlock] = ACTIONS(3001), - [anon_sym_unsafe] = ACTIONS(3001), - [anon_sym_sql] = ACTIONS(3001), - [sym_int_literal] = ACTIONS(3001), - [sym_float_literal] = ACTIONS(2999), - [sym_rune_literal] = ACTIONS(2999), - [anon_sym_AT] = ACTIONS(3001), - [anon_sym_shared] = ACTIONS(3001), - [anon_sym_map_LBRACK] = ACTIONS(2999), - [anon_sym_chan] = ACTIONS(3001), - [anon_sym_thread] = ACTIONS(3001), - [anon_sym_atomic] = ACTIONS(3001), - [sym___double_quote] = ACTIONS(2999), - [sym___single_quote] = ACTIONS(2999), - [sym___c_double_quote] = ACTIONS(2999), - [sym___c_single_quote] = ACTIONS(2999), - [sym___r_double_quote] = ACTIONS(2999), - [sym___r_single_quote] = ACTIONS(2999), - }, - [1404] = { - [sym_identifier] = ACTIONS(3085), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(3085), - [anon_sym_as] = ACTIONS(3085), - [anon_sym_LBRACE] = ACTIONS(3083), - [anon_sym_COMMA] = ACTIONS(3083), - [anon_sym_LPAREN] = ACTIONS(3083), - [anon_sym_PIPE] = ACTIONS(3085), - [anon_sym_fn] = ACTIONS(3085), - [anon_sym_PLUS] = ACTIONS(3085), - [anon_sym_DASH] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(3083), - [anon_sym_SLASH] = ACTIONS(3085), - [anon_sym_PERCENT] = ACTIONS(3083), - [anon_sym_LT] = ACTIONS(3085), - [anon_sym_GT] = ACTIONS(3085), - [anon_sym_EQ_EQ] = ACTIONS(3083), - [anon_sym_BANG_EQ] = ACTIONS(3083), - [anon_sym_LT_EQ] = ACTIONS(3083), - [anon_sym_GT_EQ] = ACTIONS(3083), - [anon_sym_LBRACK] = ACTIONS(3083), - [anon_sym_RBRACK] = ACTIONS(3083), - [anon_sym_struct] = ACTIONS(3085), - [anon_sym_mut] = ACTIONS(3085), - [anon_sym_PLUS_PLUS] = ACTIONS(3083), - [anon_sym_DASH_DASH] = ACTIONS(3083), - [anon_sym_QMARK] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(3085), - [anon_sym_go] = ACTIONS(3085), - [anon_sym_spawn] = ACTIONS(3085), - [anon_sym_json_DOTdecode] = ACTIONS(3083), - [anon_sym_LBRACK2] = ACTIONS(3085), - [anon_sym_TILDE] = ACTIONS(3083), - [anon_sym_CARET] = ACTIONS(3083), - [anon_sym_AMP] = ACTIONS(3085), - [anon_sym_LT_DASH] = ACTIONS(3083), - [anon_sym_LT_LT] = ACTIONS(3083), - [anon_sym_GT_GT] = ACTIONS(3085), - [anon_sym_GT_GT_GT] = ACTIONS(3083), - [anon_sym_AMP_CARET] = ACTIONS(3083), - [anon_sym_AMP_AMP] = ACTIONS(3083), - [anon_sym_PIPE_PIPE] = ACTIONS(3083), - [anon_sym_or] = ACTIONS(3085), - [sym_none] = ACTIONS(3085), - [sym_true] = ACTIONS(3085), - [sym_false] = ACTIONS(3085), - [sym_nil] = ACTIONS(3085), - [anon_sym_QMARK_DOT] = ACTIONS(3083), - [anon_sym_POUND_LBRACK] = ACTIONS(3083), - [anon_sym_if] = ACTIONS(3085), - [anon_sym_DOLLARif] = ACTIONS(3085), - [anon_sym_is] = ACTIONS(3085), - [anon_sym_BANGis] = ACTIONS(3083), - [anon_sym_in] = ACTIONS(3085), - [anon_sym_BANGin] = ACTIONS(3083), - [anon_sym_match] = ACTIONS(3085), - [anon_sym_select] = ACTIONS(3085), - [anon_sym_lock] = ACTIONS(3085), - [anon_sym_rlock] = ACTIONS(3085), - [anon_sym_unsafe] = ACTIONS(3085), - [anon_sym_sql] = ACTIONS(3085), - [sym_int_literal] = ACTIONS(3085), - [sym_float_literal] = ACTIONS(3083), - [sym_rune_literal] = ACTIONS(3083), - [anon_sym_AT] = ACTIONS(3085), - [anon_sym_shared] = ACTIONS(3085), - [anon_sym_map_LBRACK] = ACTIONS(3083), - [anon_sym_chan] = ACTIONS(3085), - [anon_sym_thread] = ACTIONS(3085), - [anon_sym_atomic] = ACTIONS(3085), - [sym___double_quote] = ACTIONS(3083), - [sym___single_quote] = ACTIONS(3083), - [sym___c_double_quote] = ACTIONS(3083), - [sym___c_single_quote] = ACTIONS(3083), - [sym___r_double_quote] = ACTIONS(3083), - [sym___r_single_quote] = ACTIONS(3083), - }, - [1405] = { - [sym_identifier] = ACTIONS(2804), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2804), - [anon_sym_as] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(2802), - [anon_sym_COMMA] = ACTIONS(2802), - [anon_sym_LPAREN] = ACTIONS(2802), - [anon_sym_PIPE] = ACTIONS(2804), - [anon_sym_fn] = ACTIONS(2804), - [anon_sym_PLUS] = ACTIONS(2804), - [anon_sym_DASH] = ACTIONS(2804), - [anon_sym_STAR] = ACTIONS(2802), - [anon_sym_SLASH] = ACTIONS(2804), - [anon_sym_PERCENT] = ACTIONS(2802), - [anon_sym_LT] = ACTIONS(2804), - [anon_sym_GT] = ACTIONS(2804), - [anon_sym_EQ_EQ] = ACTIONS(2802), - [anon_sym_BANG_EQ] = ACTIONS(2802), - [anon_sym_LT_EQ] = ACTIONS(2802), - [anon_sym_GT_EQ] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(2802), - [anon_sym_RBRACK] = ACTIONS(2802), - [anon_sym_struct] = ACTIONS(2804), - [anon_sym_mut] = ACTIONS(2804), - [anon_sym_PLUS_PLUS] = ACTIONS(2802), - [anon_sym_DASH_DASH] = ACTIONS(2802), - [anon_sym_QMARK] = ACTIONS(2804), - [anon_sym_BANG] = ACTIONS(2804), - [anon_sym_go] = ACTIONS(2804), - [anon_sym_spawn] = ACTIONS(2804), - [anon_sym_json_DOTdecode] = ACTIONS(2802), - [anon_sym_LBRACK2] = ACTIONS(2804), - [anon_sym_TILDE] = ACTIONS(2802), - [anon_sym_CARET] = ACTIONS(2802), - [anon_sym_AMP] = ACTIONS(2804), - [anon_sym_LT_DASH] = ACTIONS(2802), - [anon_sym_LT_LT] = ACTIONS(2802), - [anon_sym_GT_GT] = ACTIONS(2804), - [anon_sym_GT_GT_GT] = ACTIONS(2802), - [anon_sym_AMP_CARET] = ACTIONS(2802), - [anon_sym_AMP_AMP] = ACTIONS(2802), - [anon_sym_PIPE_PIPE] = ACTIONS(2802), - [anon_sym_or] = ACTIONS(2804), - [sym_none] = ACTIONS(2804), - [sym_true] = ACTIONS(2804), - [sym_false] = ACTIONS(2804), - [sym_nil] = ACTIONS(2804), - [anon_sym_QMARK_DOT] = ACTIONS(2802), - [anon_sym_POUND_LBRACK] = ACTIONS(2802), - [anon_sym_if] = ACTIONS(2804), - [anon_sym_DOLLARif] = ACTIONS(2804), - [anon_sym_is] = ACTIONS(2804), - [anon_sym_BANGis] = ACTIONS(2802), - [anon_sym_in] = ACTIONS(2804), - [anon_sym_BANGin] = ACTIONS(2802), - [anon_sym_match] = ACTIONS(2804), - [anon_sym_select] = ACTIONS(2804), - [anon_sym_lock] = ACTIONS(2804), - [anon_sym_rlock] = ACTIONS(2804), - [anon_sym_unsafe] = ACTIONS(2804), - [anon_sym_sql] = ACTIONS(2804), - [sym_int_literal] = ACTIONS(2804), - [sym_float_literal] = ACTIONS(2802), - [sym_rune_literal] = ACTIONS(2802), - [anon_sym_AT] = ACTIONS(2804), - [anon_sym_shared] = ACTIONS(2804), - [anon_sym_map_LBRACK] = ACTIONS(2802), - [anon_sym_chan] = ACTIONS(2804), - [anon_sym_thread] = ACTIONS(2804), - [anon_sym_atomic] = ACTIONS(2804), - [sym___double_quote] = ACTIONS(2802), - [sym___single_quote] = ACTIONS(2802), - [sym___c_double_quote] = ACTIONS(2802), - [sym___c_single_quote] = ACTIONS(2802), - [sym___r_double_quote] = ACTIONS(2802), - [sym___r_single_quote] = ACTIONS(2802), - }, - [1406] = { - [sym_identifier] = ACTIONS(2800), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(2800), - [anon_sym_as] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(2798), - [anon_sym_COMMA] = ACTIONS(2798), - [anon_sym_LPAREN] = ACTIONS(2798), - [anon_sym_PIPE] = ACTIONS(2800), - [anon_sym_fn] = ACTIONS(2800), - [anon_sym_PLUS] = ACTIONS(2800), - [anon_sym_DASH] = ACTIONS(2800), - [anon_sym_STAR] = ACTIONS(2798), - [anon_sym_SLASH] = ACTIONS(2800), - [anon_sym_PERCENT] = ACTIONS(2798), - [anon_sym_LT] = ACTIONS(2800), - [anon_sym_GT] = ACTIONS(2800), - [anon_sym_EQ_EQ] = ACTIONS(2798), - [anon_sym_BANG_EQ] = ACTIONS(2798), - [anon_sym_LT_EQ] = ACTIONS(2798), - [anon_sym_GT_EQ] = ACTIONS(2798), - [anon_sym_LBRACK] = ACTIONS(2798), - [anon_sym_RBRACK] = ACTIONS(2798), - [anon_sym_struct] = ACTIONS(2800), - [anon_sym_mut] = ACTIONS(2800), - [anon_sym_PLUS_PLUS] = ACTIONS(2798), - [anon_sym_DASH_DASH] = ACTIONS(2798), - [anon_sym_QMARK] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(2800), - [anon_sym_go] = ACTIONS(2800), - [anon_sym_spawn] = ACTIONS(2800), - [anon_sym_json_DOTdecode] = ACTIONS(2798), - [anon_sym_LBRACK2] = ACTIONS(2800), - [anon_sym_TILDE] = ACTIONS(2798), - [anon_sym_CARET] = ACTIONS(2798), - [anon_sym_AMP] = ACTIONS(2800), - [anon_sym_LT_DASH] = ACTIONS(2798), - [anon_sym_LT_LT] = ACTIONS(2798), - [anon_sym_GT_GT] = ACTIONS(2800), - [anon_sym_GT_GT_GT] = ACTIONS(2798), - [anon_sym_AMP_CARET] = ACTIONS(2798), - [anon_sym_AMP_AMP] = ACTIONS(2798), - [anon_sym_PIPE_PIPE] = ACTIONS(2798), - [anon_sym_or] = ACTIONS(2800), - [sym_none] = ACTIONS(2800), - [sym_true] = ACTIONS(2800), - [sym_false] = ACTIONS(2800), - [sym_nil] = ACTIONS(2800), - [anon_sym_QMARK_DOT] = ACTIONS(2798), - [anon_sym_POUND_LBRACK] = ACTIONS(2798), - [anon_sym_if] = ACTIONS(2800), - [anon_sym_DOLLARif] = ACTIONS(2800), - [anon_sym_is] = ACTIONS(2800), - [anon_sym_BANGis] = ACTIONS(2798), - [anon_sym_in] = ACTIONS(2800), - [anon_sym_BANGin] = ACTIONS(2798), - [anon_sym_match] = ACTIONS(2800), - [anon_sym_select] = ACTIONS(2800), - [anon_sym_lock] = ACTIONS(2800), - [anon_sym_rlock] = ACTIONS(2800), - [anon_sym_unsafe] = ACTIONS(2800), - [anon_sym_sql] = ACTIONS(2800), - [sym_int_literal] = ACTIONS(2800), - [sym_float_literal] = ACTIONS(2798), - [sym_rune_literal] = ACTIONS(2798), - [anon_sym_AT] = ACTIONS(2800), - [anon_sym_shared] = ACTIONS(2800), - [anon_sym_map_LBRACK] = ACTIONS(2798), - [anon_sym_chan] = ACTIONS(2800), - [anon_sym_thread] = ACTIONS(2800), - [anon_sym_atomic] = ACTIONS(2800), - [sym___double_quote] = ACTIONS(2798), - [sym___single_quote] = ACTIONS(2798), - [sym___c_double_quote] = ACTIONS(2798), - [sym___c_single_quote] = ACTIONS(2798), - [sym___r_double_quote] = ACTIONS(2798), - [sym___r_single_quote] = ACTIONS(2798), - }, - [1407] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(2318), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(2318), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(3702), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(613), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(613), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_RBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(615), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_COLON_EQ] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), - [anon_sym_DOT_DOT] = ACTIONS(613), - }, - [1408] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(2318), - [sym_plain_type] = STATE(2383), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(2318), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(3702), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(587), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_RBRACE] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(587), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_RBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(589), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_AMP_CARET] = ACTIONS(587), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_COLON_EQ] = ACTIONS(587), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), - [anon_sym_DOT_DOT] = ACTIONS(587), - }, - [1409] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(2318), - [sym_plain_type] = STATE(2330), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(2318), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(3702), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(551), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_RBRACE] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(551), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3704), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3706), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_RBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(555), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(3708), - [anon_sym_BANG] = ACTIONS(3710), - [anon_sym_LBRACK2] = ACTIONS(3712), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(3714), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(551), - [anon_sym_AMP_CARET] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_COLON_EQ] = ACTIONS(551), - [anon_sym_shared] = ACTIONS(3716), - [anon_sym_map_LBRACK] = ACTIONS(3718), - [anon_sym_chan] = ACTIONS(3720), - [anon_sym_thread] = ACTIONS(3722), - [anon_sym_atomic] = ACTIONS(3724), - [anon_sym_DOT_DOT] = ACTIONS(551), - }, - [1410] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_RBRACE] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_RPAREN] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_RBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(583), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_AMP_CARET] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(583), - }, - [1411] = { - [sym_type_parameters] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_LBRACK] = ACTIONS(3726), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [1412] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(585), - [anon_sym_CR] = ACTIONS(585), - [anon_sym_CR_LF] = ACTIONS(585), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(585), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(585), - [anon_sym_RBRACE] = ACTIONS(585), - [anon_sym_LPAREN] = ACTIONS(585), - [anon_sym_RPAREN] = ACTIONS(585), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(585), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(585), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(585), - [anon_sym_BANG_EQ] = ACTIONS(585), - [anon_sym_LT_EQ] = ACTIONS(585), - [anon_sym_GT_EQ] = ACTIONS(585), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(585), - [anon_sym_DASH_DASH] = ACTIONS(585), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(585), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(585), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(585), - [anon_sym_AMP_CARET] = ACTIONS(585), - [anon_sym_AMP_AMP] = ACTIONS(585), - [anon_sym_PIPE_PIPE] = ACTIONS(585), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(585), - [anon_sym_POUND_LBRACK] = ACTIONS(585), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(585), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(585), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1413] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [anon_sym_LF] = ACTIONS(595), - [anon_sym_CR] = ACTIONS(595), - [anon_sym_CR_LF] = ACTIONS(595), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(595), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(595), - [anon_sym_LPAREN] = ACTIONS(597), - [anon_sym_RPAREN] = ACTIONS(595), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(601), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(595), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(595), - [anon_sym_BANG_EQ] = ACTIONS(595), - [anon_sym_LT_EQ] = ACTIONS(595), - [anon_sym_GT_EQ] = ACTIONS(595), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(595), - [anon_sym_DASH_DASH] = ACTIONS(595), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3728), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(595), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(595), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(595), - [anon_sym_AMP_CARET] = ACTIONS(595), - [anon_sym_AMP_AMP] = ACTIONS(595), - [anon_sym_PIPE_PIPE] = ACTIONS(595), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(595), - [anon_sym_POUND_LBRACK] = ACTIONS(595), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(595), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(595), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(537), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1414] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(2457), - [sym_plain_type] = STATE(2550), - [sym__plain_type_without_special] = STATE(2570), - [sym_anon_struct_type] = STATE(2569), - [sym_multi_return_type] = STATE(2570), - [sym_result_type] = STATE(2570), - [sym_option_type] = STATE(2570), - [sym_qualified_type] = STATE(2457), - [sym_fixed_array_type] = STATE(2569), - [sym_array_type] = STATE(2569), - [sym_pointer_type] = STATE(2569), - [sym_wrong_pointer_type] = STATE(2569), - [sym_map_type] = STATE(2569), - [sym_channel_type] = STATE(2569), - [sym_shared_type] = STATE(2569), - [sym_thread_type] = STATE(2569), - [sym_atomic_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_function_type] = STATE(2569), - [sym_identifier] = ACTIONS(3730), - [anon_sym_LF] = ACTIONS(555), - [anon_sym_CR] = ACTIONS(555), - [anon_sym_CR_LF] = ACTIONS(555), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(555), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_RBRACE] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(555), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(555), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(555), - [anon_sym_DASH_DASH] = ACTIONS(555), - [anon_sym_QMARK] = ACTIONS(3740), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(555), - [anon_sym_AMP] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(555), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(555), - [anon_sym_AMP_CARET] = ACTIONS(555), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(555), - [anon_sym_POUND_LBRACK] = ACTIONS(555), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(555), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(555), - [anon_sym_shared] = ACTIONS(3748), - [anon_sym_map_LBRACK] = ACTIONS(3750), - [anon_sym_chan] = ACTIONS(3752), - [anon_sym_thread] = ACTIONS(3754), - [anon_sym_atomic] = ACTIONS(3756), - }, - [1415] = { - [aux_sym__type_union_list_repeat1] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(3758), - [sym_identifier] = ACTIONS(3760), - [anon_sym_LF] = ACTIONS(3762), - [anon_sym_CR] = ACTIONS(3762), - [anon_sym_CR_LF] = ACTIONS(3762), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3760), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_const] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3760), - [anon_sym___global] = ACTIONS(3760), - [anon_sym_type] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_fn] = ACTIONS(3760), - [anon_sym_PLUS] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3760), - [anon_sym_STAR] = ACTIONS(3760), - [anon_sym_struct] = ACTIONS(3760), - [anon_sym_union] = ACTIONS(3760), - [anon_sym_pub] = ACTIONS(3760), - [anon_sym_mut] = ACTIONS(3760), - [anon_sym_enum] = ACTIONS(3760), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_BANG] = ACTIONS(3760), - [anon_sym_go] = ACTIONS(3760), - [anon_sym_spawn] = ACTIONS(3760), - [anon_sym_json_DOTdecode] = ACTIONS(3760), - [anon_sym_LBRACK2] = ACTIONS(3760), - [anon_sym_TILDE] = ACTIONS(3760), - [anon_sym_CARET] = ACTIONS(3760), - [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(3760), - [sym_none] = ACTIONS(3760), - [sym_true] = ACTIONS(3760), - [sym_false] = ACTIONS(3760), - [sym_nil] = ACTIONS(3760), - [anon_sym_if] = ACTIONS(3760), - [anon_sym_DOLLARif] = ACTIONS(3760), - [anon_sym_match] = ACTIONS(3760), - [anon_sym_select] = ACTIONS(3760), - [anon_sym_lock] = ACTIONS(3760), - [anon_sym_rlock] = ACTIONS(3760), - [anon_sym_unsafe] = ACTIONS(3760), - [anon_sym_sql] = ACTIONS(3760), - [sym_int_literal] = ACTIONS(3760), - [sym_float_literal] = ACTIONS(3760), - [sym_rune_literal] = ACTIONS(3760), - [anon_sym_AT] = ACTIONS(3760), - [anon_sym_shared] = ACTIONS(3760), - [anon_sym_map_LBRACK] = ACTIONS(3760), - [anon_sym_chan] = ACTIONS(3760), - [anon_sym_thread] = ACTIONS(3760), - [anon_sym_atomic] = ACTIONS(3760), - [anon_sym_assert] = ACTIONS(3760), - [anon_sym_defer] = ACTIONS(3760), - [anon_sym_goto] = ACTIONS(3760), - [anon_sym_break] = ACTIONS(3760), - [anon_sym_continue] = ACTIONS(3760), - [anon_sym_return] = ACTIONS(3760), - [anon_sym_DOLLARfor] = ACTIONS(3760), - [anon_sym_for] = ACTIONS(3760), - [anon_sym_POUND] = ACTIONS(3760), - [anon_sym_asm] = ACTIONS(3760), - [anon_sym_AT_LBRACK] = ACTIONS(3760), - [sym___double_quote] = ACTIONS(3760), - [sym___single_quote] = ACTIONS(3760), - [sym___c_double_quote] = ACTIONS(3760), - [sym___c_single_quote] = ACTIONS(3760), - [sym___r_double_quote] = ACTIONS(3760), - [sym___r_single_quote] = ACTIONS(3760), - }, - [1416] = { - [aux_sym__type_union_list_repeat1] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(3768), - [sym_identifier] = ACTIONS(3770), - [anon_sym_LF] = ACTIONS(3772), - [anon_sym_CR] = ACTIONS(3772), - [anon_sym_CR_LF] = ACTIONS(3772), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3770), - [anon_sym_LBRACE] = ACTIONS(3770), - [anon_sym_const] = ACTIONS(3770), - [anon_sym_LPAREN] = ACTIONS(3770), - [anon_sym___global] = ACTIONS(3770), - [anon_sym_type] = ACTIONS(3770), - [anon_sym_PIPE] = ACTIONS(3775), - [anon_sym_fn] = ACTIONS(3770), - [anon_sym_PLUS] = ACTIONS(3770), - [anon_sym_DASH] = ACTIONS(3770), - [anon_sym_STAR] = ACTIONS(3770), - [anon_sym_struct] = ACTIONS(3770), - [anon_sym_union] = ACTIONS(3770), - [anon_sym_pub] = ACTIONS(3770), - [anon_sym_mut] = ACTIONS(3770), - [anon_sym_enum] = ACTIONS(3770), - [anon_sym_interface] = ACTIONS(3770), - [anon_sym_QMARK] = ACTIONS(3770), - [anon_sym_BANG] = ACTIONS(3770), - [anon_sym_go] = ACTIONS(3770), - [anon_sym_spawn] = ACTIONS(3770), - [anon_sym_json_DOTdecode] = ACTIONS(3770), - [anon_sym_LBRACK2] = ACTIONS(3770), - [anon_sym_TILDE] = ACTIONS(3770), - [anon_sym_CARET] = ACTIONS(3770), - [anon_sym_AMP] = ACTIONS(3770), - [anon_sym_LT_DASH] = ACTIONS(3770), - [sym_none] = ACTIONS(3770), - [sym_true] = ACTIONS(3770), - [sym_false] = ACTIONS(3770), - [sym_nil] = ACTIONS(3770), - [anon_sym_if] = ACTIONS(3770), - [anon_sym_DOLLARif] = ACTIONS(3770), - [anon_sym_match] = ACTIONS(3770), - [anon_sym_select] = ACTIONS(3770), - [anon_sym_lock] = ACTIONS(3770), - [anon_sym_rlock] = ACTIONS(3770), - [anon_sym_unsafe] = ACTIONS(3770), - [anon_sym_sql] = ACTIONS(3770), - [sym_int_literal] = ACTIONS(3770), - [sym_float_literal] = ACTIONS(3770), - [sym_rune_literal] = ACTIONS(3770), - [anon_sym_AT] = ACTIONS(3770), - [anon_sym_shared] = ACTIONS(3770), - [anon_sym_map_LBRACK] = ACTIONS(3770), - [anon_sym_chan] = ACTIONS(3770), - [anon_sym_thread] = ACTIONS(3770), - [anon_sym_atomic] = ACTIONS(3770), - [anon_sym_assert] = ACTIONS(3770), - [anon_sym_defer] = ACTIONS(3770), - [anon_sym_goto] = ACTIONS(3770), - [anon_sym_break] = ACTIONS(3770), - [anon_sym_continue] = ACTIONS(3770), - [anon_sym_return] = ACTIONS(3770), - [anon_sym_DOLLARfor] = ACTIONS(3770), - [anon_sym_for] = ACTIONS(3770), - [anon_sym_POUND] = ACTIONS(3770), - [anon_sym_asm] = ACTIONS(3770), - [anon_sym_AT_LBRACK] = ACTIONS(3770), - [sym___double_quote] = ACTIONS(3770), - [sym___single_quote] = ACTIONS(3770), - [sym___c_double_quote] = ACTIONS(3770), - [sym___c_single_quote] = ACTIONS(3770), - [sym___r_double_quote] = ACTIONS(3770), - [sym___r_single_quote] = ACTIONS(3770), - }, - [1417] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_CR] = ACTIONS(1690), - [anon_sym_CR_LF] = ACTIONS(1690), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(3777), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym___global] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_interface] = ACTIONS(1690), - [anon_sym_QMARK] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_go] = ACTIONS(1690), - [anon_sym_spawn] = ACTIONS(1690), - [anon_sym_json_DOTdecode] = ACTIONS(1690), - [anon_sym_LBRACK2] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_LT_DASH] = ACTIONS(1690), - [sym_none] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_nil] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_DOLLARif] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_select] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1690), - [anon_sym_rlock] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_sql] = ACTIONS(1690), - [sym_int_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), - [sym_rune_literal] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_shared] = ACTIONS(1690), - [anon_sym_map_LBRACK] = ACTIONS(1690), - [anon_sym_chan] = ACTIONS(1690), - [anon_sym_thread] = ACTIONS(1690), - [anon_sym_atomic] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_defer] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_DOLLARfor] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_asm] = ACTIONS(1690), - [anon_sym_AT_LBRACK] = ACTIONS(1690), - [sym___double_quote] = ACTIONS(1690), - [sym___single_quote] = ACTIONS(1690), - [sym___c_double_quote] = ACTIONS(1690), - [sym___c_single_quote] = ACTIONS(1690), - [sym___r_double_quote] = ACTIONS(1690), - [sym___r_single_quote] = ACTIONS(1690), - }, - [1418] = { - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3029), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [1419] = { - [ts_builtin_sym_end] = ACTIONS(3167), - [sym_identifier] = ACTIONS(3169), - [anon_sym_LF] = ACTIONS(3169), - [anon_sym_CR] = ACTIONS(3169), - [anon_sym_CR_LF] = ACTIONS(3169), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3169), - [anon_sym_LBRACE] = ACTIONS(3169), - [anon_sym_const] = ACTIONS(3169), - [anon_sym_LPAREN] = ACTIONS(3169), - [anon_sym___global] = ACTIONS(3169), - [anon_sym_type] = ACTIONS(3169), - [anon_sym_PIPE] = ACTIONS(3169), - [anon_sym_fn] = ACTIONS(3169), - [anon_sym_PLUS] = ACTIONS(3169), - [anon_sym_DASH] = ACTIONS(3169), - [anon_sym_STAR] = ACTIONS(3169), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_struct] = ACTIONS(3169), - [anon_sym_union] = ACTIONS(3169), - [anon_sym_pub] = ACTIONS(3169), - [anon_sym_mut] = ACTIONS(3169), - [anon_sym_enum] = ACTIONS(3169), - [anon_sym_interface] = ACTIONS(3169), - [anon_sym_QMARK] = ACTIONS(3169), - [anon_sym_BANG] = ACTIONS(3169), - [anon_sym_go] = ACTIONS(3169), - [anon_sym_spawn] = ACTIONS(3169), - [anon_sym_json_DOTdecode] = ACTIONS(3169), - [anon_sym_LBRACK2] = ACTIONS(3169), - [anon_sym_TILDE] = ACTIONS(3169), - [anon_sym_CARET] = ACTIONS(3169), - [anon_sym_AMP] = ACTIONS(3169), - [anon_sym_LT_DASH] = ACTIONS(3169), - [sym_none] = ACTIONS(3169), - [sym_true] = ACTIONS(3169), - [sym_false] = ACTIONS(3169), - [sym_nil] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3169), - [anon_sym_DOLLARif] = ACTIONS(3169), - [anon_sym_match] = ACTIONS(3169), - [anon_sym_select] = ACTIONS(3169), - [anon_sym_lock] = ACTIONS(3169), - [anon_sym_rlock] = ACTIONS(3169), - [anon_sym_unsafe] = ACTIONS(3169), - [anon_sym_sql] = ACTIONS(3169), - [sym_int_literal] = ACTIONS(3169), - [sym_float_literal] = ACTIONS(3169), - [sym_rune_literal] = ACTIONS(3169), - [anon_sym_AT] = ACTIONS(3169), - [anon_sym_shared] = ACTIONS(3169), - [anon_sym_map_LBRACK] = ACTIONS(3169), - [anon_sym_chan] = ACTIONS(3169), - [anon_sym_thread] = ACTIONS(3169), - [anon_sym_atomic] = ACTIONS(3169), - [anon_sym_assert] = ACTIONS(3169), - [anon_sym_defer] = ACTIONS(3169), - [anon_sym_goto] = ACTIONS(3169), - [anon_sym_break] = ACTIONS(3169), - [anon_sym_continue] = ACTIONS(3169), - [anon_sym_return] = ACTIONS(3169), - [anon_sym_DOLLARfor] = ACTIONS(3169), - [anon_sym_for] = ACTIONS(3169), - [anon_sym_POUND] = ACTIONS(3169), - [anon_sym_asm] = ACTIONS(3169), - [anon_sym_AT_LBRACK] = ACTIONS(3169), - [sym___double_quote] = ACTIONS(3169), - [sym___single_quote] = ACTIONS(3169), - [sym___c_double_quote] = ACTIONS(3169), - [sym___c_single_quote] = ACTIONS(3169), - [sym___r_double_quote] = ACTIONS(3169), - [sym___r_single_quote] = ACTIONS(3169), - }, - [1420] = { - [aux_sym__type_union_list_repeat1] = STATE(1416), - [ts_builtin_sym_end] = ACTIONS(3780), - [sym_identifier] = ACTIONS(3782), - [anon_sym_LF] = ACTIONS(3784), - [anon_sym_CR] = ACTIONS(3784), - [anon_sym_CR_LF] = ACTIONS(3784), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3782), - [anon_sym_LBRACE] = ACTIONS(3782), - [anon_sym_const] = ACTIONS(3782), - [anon_sym_LPAREN] = ACTIONS(3782), - [anon_sym___global] = ACTIONS(3782), - [anon_sym_type] = ACTIONS(3782), - [anon_sym_PIPE] = ACTIONS(3775), - [anon_sym_fn] = ACTIONS(3782), - [anon_sym_PLUS] = ACTIONS(3782), - [anon_sym_DASH] = ACTIONS(3782), - [anon_sym_STAR] = ACTIONS(3782), - [anon_sym_struct] = ACTIONS(3782), - [anon_sym_union] = ACTIONS(3782), - [anon_sym_pub] = ACTIONS(3782), - [anon_sym_mut] = ACTIONS(3782), - [anon_sym_enum] = ACTIONS(3782), - [anon_sym_interface] = ACTIONS(3782), - [anon_sym_QMARK] = ACTIONS(3782), - [anon_sym_BANG] = ACTIONS(3782), - [anon_sym_go] = ACTIONS(3782), - [anon_sym_spawn] = ACTIONS(3782), - [anon_sym_json_DOTdecode] = ACTIONS(3782), - [anon_sym_LBRACK2] = ACTIONS(3782), - [anon_sym_TILDE] = ACTIONS(3782), - [anon_sym_CARET] = ACTIONS(3782), - [anon_sym_AMP] = ACTIONS(3782), - [anon_sym_LT_DASH] = ACTIONS(3782), - [sym_none] = ACTIONS(3782), - [sym_true] = ACTIONS(3782), - [sym_false] = ACTIONS(3782), - [sym_nil] = ACTIONS(3782), - [anon_sym_if] = ACTIONS(3782), - [anon_sym_DOLLARif] = ACTIONS(3782), - [anon_sym_match] = ACTIONS(3782), - [anon_sym_select] = ACTIONS(3782), - [anon_sym_lock] = ACTIONS(3782), - [anon_sym_rlock] = ACTIONS(3782), - [anon_sym_unsafe] = ACTIONS(3782), - [anon_sym_sql] = ACTIONS(3782), - [sym_int_literal] = ACTIONS(3782), - [sym_float_literal] = ACTIONS(3782), - [sym_rune_literal] = ACTIONS(3782), - [anon_sym_AT] = ACTIONS(3782), - [anon_sym_shared] = ACTIONS(3782), - [anon_sym_map_LBRACK] = ACTIONS(3782), - [anon_sym_chan] = ACTIONS(3782), - [anon_sym_thread] = ACTIONS(3782), - [anon_sym_atomic] = ACTIONS(3782), - [anon_sym_assert] = ACTIONS(3782), - [anon_sym_defer] = ACTIONS(3782), - [anon_sym_goto] = ACTIONS(3782), - [anon_sym_break] = ACTIONS(3782), - [anon_sym_continue] = ACTIONS(3782), - [anon_sym_return] = ACTIONS(3782), - [anon_sym_DOLLARfor] = ACTIONS(3782), - [anon_sym_for] = ACTIONS(3782), - [anon_sym_POUND] = ACTIONS(3782), - [anon_sym_asm] = ACTIONS(3782), - [anon_sym_AT_LBRACK] = ACTIONS(3782), - [sym___double_quote] = ACTIONS(3782), - [sym___single_quote] = ACTIONS(3782), - [sym___c_double_quote] = ACTIONS(3782), - [sym___c_single_quote] = ACTIONS(3782), - [sym___r_double_quote] = ACTIONS(3782), - [sym___r_single_quote] = ACTIONS(3782), - }, - [1421] = { - [ts_builtin_sym_end] = ACTIONS(3027), - [sym_identifier] = ACTIONS(3029), - [anon_sym_LF] = ACTIONS(3029), - [anon_sym_CR] = ACTIONS(3029), - [anon_sym_CR_LF] = ACTIONS(3029), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2774), - [anon_sym_LBRACE] = ACTIONS(3029), - [anon_sym_const] = ACTIONS(3029), - [anon_sym_LPAREN] = ACTIONS(3029), - [anon_sym___global] = ACTIONS(3029), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_PIPE] = ACTIONS(3029), - [anon_sym_fn] = ACTIONS(3029), - [anon_sym_PLUS] = ACTIONS(3029), - [anon_sym_DASH] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(3029), - [anon_sym_LBRACK] = ACTIONS(3027), - [anon_sym_struct] = ACTIONS(3029), - [anon_sym_union] = ACTIONS(3029), - [anon_sym_pub] = ACTIONS(3029), - [anon_sym_mut] = ACTIONS(3029), - [anon_sym_enum] = ACTIONS(3029), - [anon_sym_interface] = ACTIONS(3029), - [anon_sym_QMARK] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(3029), - [anon_sym_go] = ACTIONS(3029), - [anon_sym_spawn] = ACTIONS(3029), - [anon_sym_json_DOTdecode] = ACTIONS(3029), - [anon_sym_LBRACK2] = ACTIONS(3029), - [anon_sym_TILDE] = ACTIONS(3029), - [anon_sym_CARET] = ACTIONS(3029), - [anon_sym_AMP] = ACTIONS(3029), - [anon_sym_LT_DASH] = ACTIONS(3029), - [sym_none] = ACTIONS(3029), - [sym_true] = ACTIONS(3029), - [sym_false] = ACTIONS(3029), - [sym_nil] = ACTIONS(3029), - [anon_sym_if] = ACTIONS(3029), - [anon_sym_DOLLARif] = ACTIONS(3029), - [anon_sym_match] = ACTIONS(3029), - [anon_sym_select] = ACTIONS(3029), - [anon_sym_lock] = ACTIONS(3029), - [anon_sym_rlock] = ACTIONS(3029), - [anon_sym_unsafe] = ACTIONS(3029), - [anon_sym_sql] = ACTIONS(3029), - [sym_int_literal] = ACTIONS(3029), - [sym_float_literal] = ACTIONS(3029), - [sym_rune_literal] = ACTIONS(3029), - [anon_sym_AT] = ACTIONS(3029), - [anon_sym_shared] = ACTIONS(3029), - [anon_sym_map_LBRACK] = ACTIONS(3029), - [anon_sym_chan] = ACTIONS(3029), - [anon_sym_thread] = ACTIONS(3029), - [anon_sym_atomic] = ACTIONS(3029), - [anon_sym_assert] = ACTIONS(3029), - [anon_sym_defer] = ACTIONS(3029), - [anon_sym_goto] = ACTIONS(3029), - [anon_sym_break] = ACTIONS(3029), - [anon_sym_continue] = ACTIONS(3029), - [anon_sym_return] = ACTIONS(3029), - [anon_sym_DOLLARfor] = ACTIONS(3029), - [anon_sym_for] = ACTIONS(3029), - [anon_sym_POUND] = ACTIONS(3029), - [anon_sym_asm] = ACTIONS(3029), - [anon_sym_AT_LBRACK] = ACTIONS(3029), - [sym___double_quote] = ACTIONS(3029), - [sym___single_quote] = ACTIONS(3029), - [sym___c_double_quote] = ACTIONS(3029), - [sym___c_single_quote] = ACTIONS(3029), - [sym___r_double_quote] = ACTIONS(3029), - [sym___r_single_quote] = ACTIONS(3029), - }, - [1422] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3227), - [sym_identifier] = ACTIONS(1770), - [anon_sym_LF] = ACTIONS(1770), - [anon_sym_CR] = ACTIONS(1770), - [anon_sym_CR_LF] = ACTIONS(1770), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1770), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(1770), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym___global] = ACTIONS(1770), - [anon_sym_type] = ACTIONS(1770), - [anon_sym_fn] = ACTIONS(1770), - [anon_sym_PLUS] = ACTIONS(1770), - [anon_sym_DASH] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_struct] = ACTIONS(1770), - [anon_sym_union] = ACTIONS(1770), - [anon_sym_pub] = ACTIONS(1770), - [anon_sym_mut] = ACTIONS(1770), - [anon_sym_enum] = ACTIONS(1770), - [anon_sym_interface] = ACTIONS(1770), - [anon_sym_QMARK] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1770), - [anon_sym_go] = ACTIONS(1770), - [anon_sym_spawn] = ACTIONS(1770), - [anon_sym_json_DOTdecode] = ACTIONS(1770), - [anon_sym_LBRACK2] = ACTIONS(1770), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1770), - [anon_sym_LT_DASH] = ACTIONS(1770), - [sym_none] = ACTIONS(1770), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [sym_nil] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1770), - [anon_sym_DOLLARif] = ACTIONS(1770), - [anon_sym_match] = ACTIONS(1770), - [anon_sym_select] = ACTIONS(1770), - [anon_sym_lock] = ACTIONS(1770), - [anon_sym_rlock] = ACTIONS(1770), - [anon_sym_unsafe] = ACTIONS(1770), - [anon_sym_sql] = ACTIONS(1770), - [sym_int_literal] = ACTIONS(1770), - [sym_float_literal] = ACTIONS(1770), - [sym_rune_literal] = ACTIONS(1770), - [anon_sym_AT] = ACTIONS(1770), - [anon_sym_shared] = ACTIONS(1770), - [anon_sym_map_LBRACK] = ACTIONS(1770), - [anon_sym_chan] = ACTIONS(1770), - [anon_sym_thread] = ACTIONS(1770), - [anon_sym_atomic] = ACTIONS(1770), - [anon_sym_assert] = ACTIONS(1770), - [anon_sym_defer] = ACTIONS(1770), - [anon_sym_goto] = ACTIONS(1770), - [anon_sym_break] = ACTIONS(1770), - [anon_sym_continue] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1770), - [anon_sym_DOLLARfor] = ACTIONS(1770), - [anon_sym_for] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_asm] = ACTIONS(1770), - [anon_sym_AT_LBRACK] = ACTIONS(1770), - [sym___double_quote] = ACTIONS(1770), - [sym___single_quote] = ACTIONS(1770), - [sym___c_double_quote] = ACTIONS(1770), - [sym___c_single_quote] = ACTIONS(1770), - [sym___r_double_quote] = ACTIONS(1770), - [sym___r_single_quote] = ACTIONS(1770), - }, - [1423] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(3787), - [sym_identifier] = ACTIONS(3789), - [anon_sym_LF] = ACTIONS(3789), - [anon_sym_CR] = ACTIONS(3789), - [anon_sym_CR_LF] = ACTIONS(3789), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3789), - [anon_sym_LBRACE] = ACTIONS(3789), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3789), - [anon_sym_LPAREN] = ACTIONS(3789), - [anon_sym___global] = ACTIONS(3789), - [anon_sym_type] = ACTIONS(3789), - [anon_sym_fn] = ACTIONS(3789), - [anon_sym_PLUS] = ACTIONS(3789), - [anon_sym_DASH] = ACTIONS(3789), - [anon_sym_STAR] = ACTIONS(3789), - [anon_sym_struct] = ACTIONS(3789), - [anon_sym_union] = ACTIONS(3789), - [anon_sym_pub] = ACTIONS(3789), - [anon_sym_mut] = ACTIONS(3789), - [anon_sym_enum] = ACTIONS(3789), - [anon_sym_interface] = ACTIONS(3789), - [anon_sym_QMARK] = ACTIONS(3789), - [anon_sym_BANG] = ACTIONS(3789), - [anon_sym_go] = ACTIONS(3789), - [anon_sym_spawn] = ACTIONS(3789), - [anon_sym_json_DOTdecode] = ACTIONS(3789), - [anon_sym_LBRACK2] = ACTIONS(3789), - [anon_sym_TILDE] = ACTIONS(3789), - [anon_sym_CARET] = ACTIONS(3789), - [anon_sym_AMP] = ACTIONS(3789), - [anon_sym_LT_DASH] = ACTIONS(3789), - [sym_none] = ACTIONS(3789), - [sym_true] = ACTIONS(3789), - [sym_false] = ACTIONS(3789), - [sym_nil] = ACTIONS(3789), - [anon_sym_if] = ACTIONS(3789), - [anon_sym_DOLLARif] = ACTIONS(3789), - [anon_sym_match] = ACTIONS(3789), - [anon_sym_select] = ACTIONS(3789), - [anon_sym_lock] = ACTIONS(3789), - [anon_sym_rlock] = ACTIONS(3789), - [anon_sym_unsafe] = ACTIONS(3789), - [anon_sym_sql] = ACTIONS(3789), - [sym_int_literal] = ACTIONS(3789), - [sym_float_literal] = ACTIONS(3789), - [sym_rune_literal] = ACTIONS(3789), - [anon_sym_AT] = ACTIONS(3789), - [anon_sym_shared] = ACTIONS(3789), - [anon_sym_map_LBRACK] = ACTIONS(3789), - [anon_sym_chan] = ACTIONS(3789), - [anon_sym_thread] = ACTIONS(3789), - [anon_sym_atomic] = ACTIONS(3789), - [anon_sym_assert] = ACTIONS(3789), - [anon_sym_defer] = ACTIONS(3789), - [anon_sym_goto] = ACTIONS(3789), - [anon_sym_break] = ACTIONS(3789), - [anon_sym_continue] = ACTIONS(3789), - [anon_sym_return] = ACTIONS(3789), - [anon_sym_DOLLARfor] = ACTIONS(3789), - [anon_sym_for] = ACTIONS(3789), - [anon_sym_POUND] = ACTIONS(3789), - [anon_sym_asm] = ACTIONS(3789), - [anon_sym_AT_LBRACK] = ACTIONS(3789), - [sym___double_quote] = ACTIONS(3789), - [sym___single_quote] = ACTIONS(3789), - [sym___c_double_quote] = ACTIONS(3789), - [sym___c_single_quote] = ACTIONS(3789), - [sym___r_double_quote] = ACTIONS(3789), - [sym___r_single_quote] = ACTIONS(3789), - }, - [1424] = { - [aux_sym_strictly_expression_list_repeat1] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(3791), - [sym_identifier] = ACTIONS(3793), - [anon_sym_LF] = ACTIONS(3793), - [anon_sym_CR] = ACTIONS(3793), - [anon_sym_CR_LF] = ACTIONS(3793), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3793), - [anon_sym_LBRACE] = ACTIONS(3793), - [anon_sym_COMMA] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3793), - [anon_sym_LPAREN] = ACTIONS(3793), - [anon_sym___global] = ACTIONS(3793), - [anon_sym_type] = ACTIONS(3793), - [anon_sym_fn] = ACTIONS(3793), - [anon_sym_PLUS] = ACTIONS(3793), - [anon_sym_DASH] = ACTIONS(3793), - [anon_sym_STAR] = ACTIONS(3793), - [anon_sym_struct] = ACTIONS(3793), - [anon_sym_union] = ACTIONS(3793), - [anon_sym_pub] = ACTIONS(3793), - [anon_sym_mut] = ACTIONS(3793), - [anon_sym_enum] = ACTIONS(3793), - [anon_sym_interface] = ACTIONS(3793), - [anon_sym_QMARK] = ACTIONS(3793), - [anon_sym_BANG] = ACTIONS(3793), - [anon_sym_go] = ACTIONS(3793), - [anon_sym_spawn] = ACTIONS(3793), - [anon_sym_json_DOTdecode] = ACTIONS(3793), - [anon_sym_LBRACK2] = ACTIONS(3793), - [anon_sym_TILDE] = ACTIONS(3793), - [anon_sym_CARET] = ACTIONS(3793), - [anon_sym_AMP] = ACTIONS(3793), - [anon_sym_LT_DASH] = ACTIONS(3793), - [sym_none] = ACTIONS(3793), - [sym_true] = ACTIONS(3793), - [sym_false] = ACTIONS(3793), - [sym_nil] = ACTIONS(3793), - [anon_sym_if] = ACTIONS(3793), - [anon_sym_DOLLARif] = ACTIONS(3793), - [anon_sym_match] = ACTIONS(3793), - [anon_sym_select] = ACTIONS(3793), - [anon_sym_lock] = ACTIONS(3793), - [anon_sym_rlock] = ACTIONS(3793), - [anon_sym_unsafe] = ACTIONS(3793), - [anon_sym_sql] = ACTIONS(3793), - [sym_int_literal] = ACTIONS(3793), - [sym_float_literal] = ACTIONS(3793), - [sym_rune_literal] = ACTIONS(3793), - [anon_sym_AT] = ACTIONS(3793), - [anon_sym_shared] = ACTIONS(3793), - [anon_sym_map_LBRACK] = ACTIONS(3793), - [anon_sym_chan] = ACTIONS(3793), - [anon_sym_thread] = ACTIONS(3793), - [anon_sym_atomic] = ACTIONS(3793), - [anon_sym_assert] = ACTIONS(3793), - [anon_sym_defer] = ACTIONS(3793), - [anon_sym_goto] = ACTIONS(3793), - [anon_sym_break] = ACTIONS(3793), - [anon_sym_continue] = ACTIONS(3793), - [anon_sym_return] = ACTIONS(3793), - [anon_sym_DOLLARfor] = ACTIONS(3793), - [anon_sym_for] = ACTIONS(3793), - [anon_sym_POUND] = ACTIONS(3793), - [anon_sym_asm] = ACTIONS(3793), - [anon_sym_AT_LBRACK] = ACTIONS(3793), - [sym___double_quote] = ACTIONS(3793), - [sym___single_quote] = ACTIONS(3793), - [sym___c_double_quote] = ACTIONS(3793), - [sym___c_single_quote] = ACTIONS(3793), - [sym___r_double_quote] = ACTIONS(3793), - [sym___r_single_quote] = ACTIONS(3793), - }, - [1425] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(2457), - [sym_plain_type] = STATE(2504), - [sym__plain_type_without_special] = STATE(2570), - [sym_anon_struct_type] = STATE(2569), - [sym_multi_return_type] = STATE(2570), - [sym_result_type] = STATE(2570), - [sym_option_type] = STATE(2570), - [sym_qualified_type] = STATE(2457), - [sym_fixed_array_type] = STATE(2569), - [sym_array_type] = STATE(2569), - [sym_pointer_type] = STATE(2569), - [sym_wrong_pointer_type] = STATE(2569), - [sym_map_type] = STATE(2569), - [sym_channel_type] = STATE(2569), - [sym_shared_type] = STATE(2569), - [sym_thread_type] = STATE(2569), - [sym_atomic_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_function_type] = STATE(2569), - [sym_identifier] = ACTIONS(3730), - [anon_sym_LF] = ACTIONS(589), - [anon_sym_CR] = ACTIONS(589), - [anon_sym_CR_LF] = ACTIONS(589), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(589), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_COMMA] = ACTIONS(589), - [anon_sym_RBRACE] = ACTIONS(589), - [anon_sym_LPAREN] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(589), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(589), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(589), - [anon_sym_BANG_EQ] = ACTIONS(589), - [anon_sym_LT_EQ] = ACTIONS(589), - [anon_sym_GT_EQ] = ACTIONS(589), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(589), - [anon_sym_DASH_DASH] = ACTIONS(589), - [anon_sym_QMARK] = ACTIONS(3740), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(589), - [anon_sym_AMP] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(589), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(589), - [anon_sym_AMP_CARET] = ACTIONS(589), - [anon_sym_AMP_AMP] = ACTIONS(589), - [anon_sym_PIPE_PIPE] = ACTIONS(589), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(589), - [anon_sym_POUND_LBRACK] = ACTIONS(589), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(589), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(589), - [anon_sym_shared] = ACTIONS(3748), - [anon_sym_map_LBRACK] = ACTIONS(3750), - [anon_sym_chan] = ACTIONS(3752), - [anon_sym_thread] = ACTIONS(3754), - [anon_sym_atomic] = ACTIONS(3756), - }, - [1426] = { - [sym_reference_expression] = STATE(4486), - [sym_type_reference_expression] = STATE(2457), - [sym_plain_type] = STATE(2492), - [sym__plain_type_without_special] = STATE(2570), - [sym_anon_struct_type] = STATE(2569), - [sym_multi_return_type] = STATE(2570), - [sym_result_type] = STATE(2570), - [sym_option_type] = STATE(2570), - [sym_qualified_type] = STATE(2457), - [sym_fixed_array_type] = STATE(2569), - [sym_array_type] = STATE(2569), - [sym_pointer_type] = STATE(2569), - [sym_wrong_pointer_type] = STATE(2569), - [sym_map_type] = STATE(2569), - [sym_channel_type] = STATE(2569), - [sym_shared_type] = STATE(2569), - [sym_thread_type] = STATE(2569), - [sym_atomic_type] = STATE(2569), - [sym_generic_type] = STATE(2569), - [sym_function_type] = STATE(2569), - [sym_identifier] = ACTIONS(3730), - [anon_sym_LF] = ACTIONS(615), - [anon_sym_CR] = ACTIONS(615), - [anon_sym_CR_LF] = ACTIONS(615), - [sym_comment] = ACTIONS(487), - [anon_sym_SEMI] = ACTIONS(615), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_COMMA] = ACTIONS(615), - [anon_sym_RBRACE] = ACTIONS(615), - [anon_sym_LPAREN] = ACTIONS(3732), - [anon_sym_RPAREN] = ACTIONS(615), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(3734), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(3736), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(615), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(615), - [anon_sym_BANG_EQ] = ACTIONS(615), - [anon_sym_LT_EQ] = ACTIONS(615), - [anon_sym_GT_EQ] = ACTIONS(615), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(3738), - [anon_sym_PLUS_PLUS] = ACTIONS(615), - [anon_sym_DASH_DASH] = ACTIONS(615), - [anon_sym_QMARK] = ACTIONS(3740), - [anon_sym_BANG] = ACTIONS(3742), - [anon_sym_LBRACK2] = ACTIONS(3744), - [anon_sym_CARET] = ACTIONS(615), - [anon_sym_AMP] = ACTIONS(3746), - [anon_sym_LT_LT] = ACTIONS(615), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(615), - [anon_sym_AMP_CARET] = ACTIONS(615), - [anon_sym_AMP_AMP] = ACTIONS(615), - [anon_sym_PIPE_PIPE] = ACTIONS(615), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(615), - [anon_sym_POUND_LBRACK] = ACTIONS(615), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(615), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(615), - [anon_sym_shared] = ACTIONS(3748), - [anon_sym_map_LBRACK] = ACTIONS(3750), - [anon_sym_chan] = ACTIONS(3752), - [anon_sym_thread] = ACTIONS(3754), - [anon_sym_atomic] = ACTIONS(3756), - }, - [1427] = { - [ts_builtin_sym_end] = ACTIONS(2702), - [sym_identifier] = ACTIONS(2704), - [anon_sym_LF] = ACTIONS(2704), - [anon_sym_CR] = ACTIONS(2704), - [anon_sym_CR_LF] = ACTIONS(2704), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(2704), - [anon_sym_const] = ACTIONS(2704), - [anon_sym_LPAREN] = ACTIONS(2704), - [anon_sym___global] = ACTIONS(2704), - [anon_sym_type] = ACTIONS(2704), - [anon_sym_PIPE] = ACTIONS(2704), - [anon_sym_fn] = ACTIONS(2704), - [anon_sym_PLUS] = ACTIONS(2704), - [anon_sym_DASH] = ACTIONS(2704), - [anon_sym_STAR] = ACTIONS(2704), - [anon_sym_struct] = ACTIONS(2704), - [anon_sym_union] = ACTIONS(2704), - [anon_sym_pub] = ACTIONS(2704), - [anon_sym_mut] = ACTIONS(2704), - [anon_sym_enum] = ACTIONS(2704), - [anon_sym_interface] = ACTIONS(2704), - [anon_sym_QMARK] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(2704), - [anon_sym_go] = ACTIONS(2704), - [anon_sym_spawn] = ACTIONS(2704), - [anon_sym_json_DOTdecode] = ACTIONS(2704), - [anon_sym_LBRACK2] = ACTIONS(2704), - [anon_sym_TILDE] = ACTIONS(2704), - [anon_sym_CARET] = ACTIONS(2704), - [anon_sym_AMP] = ACTIONS(2704), - [anon_sym_LT_DASH] = ACTIONS(2704), - [sym_none] = ACTIONS(2704), - [sym_true] = ACTIONS(2704), - [sym_false] = ACTIONS(2704), - [sym_nil] = ACTIONS(2704), - [anon_sym_if] = ACTIONS(2704), - [anon_sym_DOLLARif] = ACTIONS(2704), - [anon_sym_match] = ACTIONS(2704), - [anon_sym_select] = ACTIONS(2704), - [anon_sym_lock] = ACTIONS(2704), - [anon_sym_rlock] = ACTIONS(2704), - [anon_sym_unsafe] = ACTIONS(2704), - [anon_sym_sql] = ACTIONS(2704), - [sym_int_literal] = ACTIONS(2704), - [sym_float_literal] = ACTIONS(2704), - [sym_rune_literal] = ACTIONS(2704), - [anon_sym_AT] = ACTIONS(2704), - [anon_sym_shared] = ACTIONS(2704), - [anon_sym_map_LBRACK] = ACTIONS(2704), - [anon_sym_chan] = ACTIONS(2704), - [anon_sym_thread] = ACTIONS(2704), - [anon_sym_atomic] = ACTIONS(2704), - [anon_sym_assert] = ACTIONS(2704), - [anon_sym_defer] = ACTIONS(2704), - [anon_sym_goto] = ACTIONS(2704), - [anon_sym_break] = ACTIONS(2704), - [anon_sym_continue] = ACTIONS(2704), - [anon_sym_return] = ACTIONS(2704), - [anon_sym_DOLLARfor] = ACTIONS(2704), - [anon_sym_for] = ACTIONS(2704), - [anon_sym_POUND] = ACTIONS(2704), - [anon_sym_asm] = ACTIONS(2704), - [anon_sym_AT_LBRACK] = ACTIONS(2704), - [sym___double_quote] = ACTIONS(2704), - [sym___single_quote] = ACTIONS(2704), - [sym___c_double_quote] = ACTIONS(2704), - [sym___c_single_quote] = ACTIONS(2704), - [sym___r_double_quote] = ACTIONS(2704), - [sym___r_single_quote] = ACTIONS(2704), - }, - [1428] = { - [ts_builtin_sym_end] = ACTIONS(3305), - [sym_identifier] = ACTIONS(1690), - [anon_sym_LF] = ACTIONS(1690), - [anon_sym_CR] = ACTIONS(1690), - [anon_sym_CR_LF] = ACTIONS(1690), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1690), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_COMMA] = ACTIONS(1690), - [anon_sym_const] = ACTIONS(1690), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym___global] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1690), - [anon_sym_fn] = ACTIONS(1690), - [anon_sym_PLUS] = ACTIONS(1690), - [anon_sym_DASH] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_struct] = ACTIONS(1690), - [anon_sym_union] = ACTIONS(1690), - [anon_sym_pub] = ACTIONS(1690), - [anon_sym_mut] = ACTIONS(1690), - [anon_sym_enum] = ACTIONS(1690), - [anon_sym_interface] = ACTIONS(1690), - [anon_sym_QMARK] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1690), - [anon_sym_go] = ACTIONS(1690), - [anon_sym_spawn] = ACTIONS(1690), - [anon_sym_json_DOTdecode] = ACTIONS(1690), - [anon_sym_LBRACK2] = ACTIONS(1690), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1690), - [anon_sym_LT_DASH] = ACTIONS(1690), - [sym_none] = ACTIONS(1690), - [sym_true] = ACTIONS(1690), - [sym_false] = ACTIONS(1690), - [sym_nil] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1690), - [anon_sym_DOLLARif] = ACTIONS(1690), - [anon_sym_match] = ACTIONS(1690), - [anon_sym_select] = ACTIONS(1690), - [anon_sym_lock] = ACTIONS(1690), - [anon_sym_rlock] = ACTIONS(1690), - [anon_sym_unsafe] = ACTIONS(1690), - [anon_sym_sql] = ACTIONS(1690), - [sym_int_literal] = ACTIONS(1690), - [sym_float_literal] = ACTIONS(1690), - [sym_rune_literal] = ACTIONS(1690), - [anon_sym_AT] = ACTIONS(1690), - [anon_sym_shared] = ACTIONS(1690), - [anon_sym_map_LBRACK] = ACTIONS(1690), - [anon_sym_chan] = ACTIONS(1690), - [anon_sym_thread] = ACTIONS(1690), - [anon_sym_atomic] = ACTIONS(1690), - [anon_sym_assert] = ACTIONS(1690), - [anon_sym_defer] = ACTIONS(1690), - [anon_sym_goto] = ACTIONS(1690), - [anon_sym_break] = ACTIONS(1690), - [anon_sym_continue] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1690), - [anon_sym_DOLLARfor] = ACTIONS(1690), - [anon_sym_for] = ACTIONS(1690), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_asm] = ACTIONS(1690), - [anon_sym_AT_LBRACK] = ACTIONS(1690), - [sym___double_quote] = ACTIONS(1690), - [sym___single_quote] = ACTIONS(1690), - [sym___c_double_quote] = ACTIONS(1690), - [sym___c_single_quote] = ACTIONS(1690), - [sym___r_double_quote] = ACTIONS(1690), - [sym___r_single_quote] = ACTIONS(1690), - }, - [1429] = { - [sym_block] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(3795), - [sym_identifier] = ACTIONS(3797), - [anon_sym_LF] = ACTIONS(3797), - [anon_sym_CR] = ACTIONS(3797), - [anon_sym_CR_LF] = ACTIONS(3797), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3797), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3797), - [anon_sym_LPAREN] = ACTIONS(3797), - [anon_sym___global] = ACTIONS(3797), - [anon_sym_type] = ACTIONS(3797), - [anon_sym_fn] = ACTIONS(3797), - [anon_sym_PLUS] = ACTIONS(3797), - [anon_sym_DASH] = ACTIONS(3797), - [anon_sym_STAR] = ACTIONS(3797), - [anon_sym_struct] = ACTIONS(3797), - [anon_sym_union] = ACTIONS(3797), - [anon_sym_pub] = ACTIONS(3797), - [anon_sym_mut] = ACTIONS(3797), - [anon_sym_enum] = ACTIONS(3797), - [anon_sym_interface] = ACTIONS(3797), - [anon_sym_QMARK] = ACTIONS(3797), - [anon_sym_BANG] = ACTIONS(3797), - [anon_sym_go] = ACTIONS(3797), - [anon_sym_spawn] = ACTIONS(3797), - [anon_sym_json_DOTdecode] = ACTIONS(3797), - [anon_sym_LBRACK2] = ACTIONS(3797), - [anon_sym_TILDE] = ACTIONS(3797), - [anon_sym_CARET] = ACTIONS(3797), - [anon_sym_AMP] = ACTIONS(3797), - [anon_sym_LT_DASH] = ACTIONS(3797), - [sym_none] = ACTIONS(3797), - [sym_true] = ACTIONS(3797), - [sym_false] = ACTIONS(3797), - [sym_nil] = ACTIONS(3797), - [anon_sym_if] = ACTIONS(3797), - [anon_sym_DOLLARif] = ACTIONS(3797), - [anon_sym_match] = ACTIONS(3797), - [anon_sym_select] = ACTIONS(3797), - [anon_sym_lock] = ACTIONS(3797), - [anon_sym_rlock] = ACTIONS(3797), - [anon_sym_unsafe] = ACTIONS(3797), - [anon_sym_sql] = ACTIONS(3797), - [sym_int_literal] = ACTIONS(3797), - [sym_float_literal] = ACTIONS(3797), - [sym_rune_literal] = ACTIONS(3797), - [anon_sym_AT] = ACTIONS(3797), - [anon_sym_shared] = ACTIONS(3797), - [anon_sym_map_LBRACK] = ACTIONS(3797), - [anon_sym_chan] = ACTIONS(3797), - [anon_sym_thread] = ACTIONS(3797), - [anon_sym_atomic] = ACTIONS(3797), - [anon_sym_assert] = ACTIONS(3797), - [anon_sym_defer] = ACTIONS(3797), - [anon_sym_goto] = ACTIONS(3797), - [anon_sym_break] = ACTIONS(3797), - [anon_sym_continue] = ACTIONS(3797), - [anon_sym_return] = ACTIONS(3797), - [anon_sym_DOLLARfor] = ACTIONS(3797), - [anon_sym_for] = ACTIONS(3797), - [anon_sym_POUND] = ACTIONS(3797), - [anon_sym_asm] = ACTIONS(3797), - [anon_sym_AT_LBRACK] = ACTIONS(3797), - [sym___double_quote] = ACTIONS(3797), - [sym___single_quote] = ACTIONS(3797), - [sym___c_double_quote] = ACTIONS(3797), - [sym___c_single_quote] = ACTIONS(3797), - [sym___r_double_quote] = ACTIONS(3797), - [sym___r_single_quote] = ACTIONS(3797), - }, - [1430] = { - [ts_builtin_sym_end] = ACTIONS(3131), - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_LBRACE] = ACTIONS(3133), - [anon_sym_const] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym___global] = ACTIONS(3133), - [anon_sym_type] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_union] = ACTIONS(3133), - [anon_sym_pub] = ACTIONS(3133), - [anon_sym_mut] = ACTIONS(3133), - [anon_sym_enum] = ACTIONS(3133), - [anon_sym_interface] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_go] = ACTIONS(3133), - [anon_sym_spawn] = ACTIONS(3133), - [anon_sym_json_DOTdecode] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_TILDE] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [sym_none] = ACTIONS(3133), - [sym_true] = ACTIONS(3133), - [sym_false] = ACTIONS(3133), - [sym_nil] = ACTIONS(3133), - [anon_sym_if] = ACTIONS(3133), - [anon_sym_DOLLARif] = ACTIONS(3133), - [anon_sym_match] = ACTIONS(3133), - [anon_sym_select] = ACTIONS(3133), - [anon_sym_lock] = ACTIONS(3133), - [anon_sym_rlock] = ACTIONS(3133), - [anon_sym_unsafe] = ACTIONS(3133), - [anon_sym_sql] = ACTIONS(3133), - [sym_int_literal] = ACTIONS(3133), - [sym_float_literal] = ACTIONS(3133), - [sym_rune_literal] = ACTIONS(3133), - [anon_sym_AT] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - [anon_sym_assert] = ACTIONS(3133), - [anon_sym_defer] = ACTIONS(3133), - [anon_sym_goto] = ACTIONS(3133), - [anon_sym_break] = ACTIONS(3133), - [anon_sym_continue] = ACTIONS(3133), - [anon_sym_return] = ACTIONS(3133), - [anon_sym_DOLLARfor] = ACTIONS(3133), - [anon_sym_for] = ACTIONS(3133), - [anon_sym_POUND] = ACTIONS(3133), - [anon_sym_asm] = ACTIONS(3133), - [anon_sym_AT_LBRACK] = ACTIONS(3133), - [sym___double_quote] = ACTIONS(3133), - [sym___single_quote] = ACTIONS(3133), - [sym___c_double_quote] = ACTIONS(3133), - [sym___c_single_quote] = ACTIONS(3133), - [sym___r_double_quote] = ACTIONS(3133), - [sym___r_single_quote] = ACTIONS(3133), - }, - [1431] = { - [sym_block] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(3801), - [sym_identifier] = ACTIONS(3803), - [anon_sym_LF] = ACTIONS(3803), - [anon_sym_CR] = ACTIONS(3803), - [anon_sym_CR_LF] = ACTIONS(3803), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3803), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3803), - [anon_sym_LPAREN] = ACTIONS(3803), - [anon_sym___global] = ACTIONS(3803), - [anon_sym_type] = ACTIONS(3803), - [anon_sym_fn] = ACTIONS(3803), - [anon_sym_PLUS] = ACTIONS(3803), - [anon_sym_DASH] = ACTIONS(3803), - [anon_sym_STAR] = ACTIONS(3803), - [anon_sym_struct] = ACTIONS(3803), - [anon_sym_union] = ACTIONS(3803), - [anon_sym_pub] = ACTIONS(3803), - [anon_sym_mut] = ACTIONS(3803), - [anon_sym_enum] = ACTIONS(3803), - [anon_sym_interface] = ACTIONS(3803), - [anon_sym_QMARK] = ACTIONS(3803), - [anon_sym_BANG] = ACTIONS(3803), - [anon_sym_go] = ACTIONS(3803), - [anon_sym_spawn] = ACTIONS(3803), - [anon_sym_json_DOTdecode] = ACTIONS(3803), - [anon_sym_LBRACK2] = ACTIONS(3803), - [anon_sym_TILDE] = ACTIONS(3803), - [anon_sym_CARET] = ACTIONS(3803), - [anon_sym_AMP] = ACTIONS(3803), - [anon_sym_LT_DASH] = ACTIONS(3803), - [sym_none] = ACTIONS(3803), - [sym_true] = ACTIONS(3803), - [sym_false] = ACTIONS(3803), - [sym_nil] = ACTIONS(3803), - [anon_sym_if] = ACTIONS(3803), - [anon_sym_DOLLARif] = ACTIONS(3803), - [anon_sym_match] = ACTIONS(3803), - [anon_sym_select] = ACTIONS(3803), - [anon_sym_lock] = ACTIONS(3803), - [anon_sym_rlock] = ACTIONS(3803), - [anon_sym_unsafe] = ACTIONS(3803), - [anon_sym_sql] = ACTIONS(3803), - [sym_int_literal] = ACTIONS(3803), - [sym_float_literal] = ACTIONS(3803), - [sym_rune_literal] = ACTIONS(3803), - [anon_sym_AT] = ACTIONS(3803), - [anon_sym_shared] = ACTIONS(3803), - [anon_sym_map_LBRACK] = ACTIONS(3803), - [anon_sym_chan] = ACTIONS(3803), - [anon_sym_thread] = ACTIONS(3803), - [anon_sym_atomic] = ACTIONS(3803), - [anon_sym_assert] = ACTIONS(3803), - [anon_sym_defer] = ACTIONS(3803), - [anon_sym_goto] = ACTIONS(3803), - [anon_sym_break] = ACTIONS(3803), - [anon_sym_continue] = ACTIONS(3803), - [anon_sym_return] = ACTIONS(3803), - [anon_sym_DOLLARfor] = ACTIONS(3803), - [anon_sym_for] = ACTIONS(3803), - [anon_sym_POUND] = ACTIONS(3803), - [anon_sym_asm] = ACTIONS(3803), - [anon_sym_AT_LBRACK] = ACTIONS(3803), - [sym___double_quote] = ACTIONS(3803), - [sym___single_quote] = ACTIONS(3803), - [sym___c_double_quote] = ACTIONS(3803), - [sym___c_single_quote] = ACTIONS(3803), - [sym___r_double_quote] = ACTIONS(3803), - [sym___r_single_quote] = ACTIONS(3803), - }, - [1432] = { - [ts_builtin_sym_end] = ACTIONS(2957), - [sym_identifier] = ACTIONS(2959), - [anon_sym_LF] = ACTIONS(2959), - [anon_sym_CR] = ACTIONS(2959), - [anon_sym_CR_LF] = ACTIONS(2959), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2959), - [anon_sym_LBRACE] = ACTIONS(2959), - [anon_sym_const] = ACTIONS(2959), - [anon_sym_LPAREN] = ACTIONS(2959), - [anon_sym___global] = ACTIONS(2959), - [anon_sym_type] = ACTIONS(2959), - [anon_sym_PIPE] = ACTIONS(2959), - [anon_sym_fn] = ACTIONS(2959), - [anon_sym_PLUS] = ACTIONS(2959), - [anon_sym_DASH] = ACTIONS(2959), - [anon_sym_STAR] = ACTIONS(2959), - [anon_sym_struct] = ACTIONS(2959), - [anon_sym_union] = ACTIONS(2959), - [anon_sym_pub] = ACTIONS(2959), - [anon_sym_mut] = ACTIONS(2959), - [anon_sym_enum] = ACTIONS(2959), - [anon_sym_interface] = ACTIONS(2959), - [anon_sym_QMARK] = ACTIONS(2959), - [anon_sym_BANG] = ACTIONS(2959), - [anon_sym_go] = ACTIONS(2959), - [anon_sym_spawn] = ACTIONS(2959), - [anon_sym_json_DOTdecode] = ACTIONS(2959), - [anon_sym_LBRACK2] = ACTIONS(2959), - [anon_sym_TILDE] = ACTIONS(2959), - [anon_sym_CARET] = ACTIONS(2959), - [anon_sym_AMP] = ACTIONS(2959), - [anon_sym_LT_DASH] = ACTIONS(2959), - [sym_none] = ACTIONS(2959), - [sym_true] = ACTIONS(2959), - [sym_false] = ACTIONS(2959), - [sym_nil] = ACTIONS(2959), - [anon_sym_if] = ACTIONS(2959), - [anon_sym_DOLLARif] = ACTIONS(2959), - [anon_sym_match] = ACTIONS(2959), - [anon_sym_select] = ACTIONS(2959), - [anon_sym_lock] = ACTIONS(2959), - [anon_sym_rlock] = ACTIONS(2959), - [anon_sym_unsafe] = ACTIONS(2959), - [anon_sym_sql] = ACTIONS(2959), - [sym_int_literal] = ACTIONS(2959), - [sym_float_literal] = ACTIONS(2959), - [sym_rune_literal] = ACTIONS(2959), - [anon_sym_AT] = ACTIONS(2959), - [anon_sym_shared] = ACTIONS(2959), - [anon_sym_map_LBRACK] = ACTIONS(2959), - [anon_sym_chan] = ACTIONS(2959), - [anon_sym_thread] = ACTIONS(2959), - [anon_sym_atomic] = ACTIONS(2959), - [anon_sym_assert] = ACTIONS(2959), - [anon_sym_defer] = ACTIONS(2959), - [anon_sym_goto] = ACTIONS(2959), - [anon_sym_break] = ACTIONS(2959), - [anon_sym_continue] = ACTIONS(2959), - [anon_sym_return] = ACTIONS(2959), - [anon_sym_DOLLARfor] = ACTIONS(2959), - [anon_sym_for] = ACTIONS(2959), - [anon_sym_POUND] = ACTIONS(2959), - [anon_sym_asm] = ACTIONS(2959), - [anon_sym_AT_LBRACK] = ACTIONS(2959), - [sym___double_quote] = ACTIONS(2959), - [sym___single_quote] = ACTIONS(2959), - [sym___c_double_quote] = ACTIONS(2959), - [sym___c_single_quote] = ACTIONS(2959), - [sym___r_double_quote] = ACTIONS(2959), - [sym___r_single_quote] = ACTIONS(2959), - }, - [1433] = { - [ts_builtin_sym_end] = ACTIONS(2991), - [sym_identifier] = ACTIONS(2993), - [anon_sym_LF] = ACTIONS(2993), - [anon_sym_CR] = ACTIONS(2993), - [anon_sym_CR_LF] = ACTIONS(2993), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2993), - [anon_sym_LBRACE] = ACTIONS(2993), - [anon_sym_const] = ACTIONS(2993), - [anon_sym_LPAREN] = ACTIONS(2993), - [anon_sym___global] = ACTIONS(2993), - [anon_sym_type] = ACTIONS(2993), - [anon_sym_PIPE] = ACTIONS(2993), - [anon_sym_fn] = ACTIONS(2993), - [anon_sym_PLUS] = ACTIONS(2993), - [anon_sym_DASH] = ACTIONS(2993), - [anon_sym_STAR] = ACTIONS(2993), - [anon_sym_struct] = ACTIONS(2993), - [anon_sym_union] = ACTIONS(2993), - [anon_sym_pub] = ACTIONS(2993), - [anon_sym_mut] = ACTIONS(2993), - [anon_sym_enum] = ACTIONS(2993), - [anon_sym_interface] = ACTIONS(2993), - [anon_sym_QMARK] = ACTIONS(2993), - [anon_sym_BANG] = ACTIONS(2993), - [anon_sym_go] = ACTIONS(2993), - [anon_sym_spawn] = ACTIONS(2993), - [anon_sym_json_DOTdecode] = ACTIONS(2993), - [anon_sym_LBRACK2] = ACTIONS(2993), - [anon_sym_TILDE] = ACTIONS(2993), - [anon_sym_CARET] = ACTIONS(2993), - [anon_sym_AMP] = ACTIONS(2993), - [anon_sym_LT_DASH] = ACTIONS(2993), - [sym_none] = ACTIONS(2993), - [sym_true] = ACTIONS(2993), - [sym_false] = ACTIONS(2993), - [sym_nil] = ACTIONS(2993), - [anon_sym_if] = ACTIONS(2993), - [anon_sym_DOLLARif] = ACTIONS(2993), - [anon_sym_match] = ACTIONS(2993), - [anon_sym_select] = ACTIONS(2993), - [anon_sym_lock] = ACTIONS(2993), - [anon_sym_rlock] = ACTIONS(2993), - [anon_sym_unsafe] = ACTIONS(2993), - [anon_sym_sql] = ACTIONS(2993), - [sym_int_literal] = ACTIONS(2993), - [sym_float_literal] = ACTIONS(2993), - [sym_rune_literal] = ACTIONS(2993), - [anon_sym_AT] = ACTIONS(2993), - [anon_sym_shared] = ACTIONS(2993), - [anon_sym_map_LBRACK] = ACTIONS(2993), - [anon_sym_chan] = ACTIONS(2993), - [anon_sym_thread] = ACTIONS(2993), - [anon_sym_atomic] = ACTIONS(2993), - [anon_sym_assert] = ACTIONS(2993), - [anon_sym_defer] = ACTIONS(2993), - [anon_sym_goto] = ACTIONS(2993), - [anon_sym_break] = ACTIONS(2993), - [anon_sym_continue] = ACTIONS(2993), - [anon_sym_return] = ACTIONS(2993), - [anon_sym_DOLLARfor] = ACTIONS(2993), - [anon_sym_for] = ACTIONS(2993), - [anon_sym_POUND] = ACTIONS(2993), - [anon_sym_asm] = ACTIONS(2993), - [anon_sym_AT_LBRACK] = ACTIONS(2993), - [sym___double_quote] = ACTIONS(2993), - [sym___single_quote] = ACTIONS(2993), - [sym___c_double_quote] = ACTIONS(2993), - [sym___c_single_quote] = ACTIONS(2993), - [sym___r_double_quote] = ACTIONS(2993), - [sym___r_single_quote] = ACTIONS(2993), - }, - [1434] = { - [sym_block] = STATE(1518), - [ts_builtin_sym_end] = ACTIONS(3805), - [sym_identifier] = ACTIONS(3807), - [anon_sym_LF] = ACTIONS(3807), - [anon_sym_CR] = ACTIONS(3807), - [anon_sym_CR_LF] = ACTIONS(3807), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3807), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3807), - [anon_sym_LPAREN] = ACTIONS(3807), - [anon_sym___global] = ACTIONS(3807), - [anon_sym_type] = ACTIONS(3807), - [anon_sym_fn] = ACTIONS(3807), - [anon_sym_PLUS] = ACTIONS(3807), - [anon_sym_DASH] = ACTIONS(3807), - [anon_sym_STAR] = ACTIONS(3807), - [anon_sym_struct] = ACTIONS(3807), - [anon_sym_union] = ACTIONS(3807), - [anon_sym_pub] = ACTIONS(3807), - [anon_sym_mut] = ACTIONS(3807), - [anon_sym_enum] = ACTIONS(3807), - [anon_sym_interface] = ACTIONS(3807), - [anon_sym_QMARK] = ACTIONS(3807), - [anon_sym_BANG] = ACTIONS(3807), - [anon_sym_go] = ACTIONS(3807), - [anon_sym_spawn] = ACTIONS(3807), - [anon_sym_json_DOTdecode] = ACTIONS(3807), - [anon_sym_LBRACK2] = ACTIONS(3807), - [anon_sym_TILDE] = ACTIONS(3807), - [anon_sym_CARET] = ACTIONS(3807), - [anon_sym_AMP] = ACTIONS(3807), - [anon_sym_LT_DASH] = ACTIONS(3807), - [sym_none] = ACTIONS(3807), - [sym_true] = ACTIONS(3807), - [sym_false] = ACTIONS(3807), - [sym_nil] = ACTIONS(3807), - [anon_sym_if] = ACTIONS(3807), - [anon_sym_DOLLARif] = ACTIONS(3807), - [anon_sym_match] = ACTIONS(3807), - [anon_sym_select] = ACTIONS(3807), - [anon_sym_lock] = ACTIONS(3807), - [anon_sym_rlock] = ACTIONS(3807), - [anon_sym_unsafe] = ACTIONS(3807), - [anon_sym_sql] = ACTIONS(3807), - [sym_int_literal] = ACTIONS(3807), - [sym_float_literal] = ACTIONS(3807), - [sym_rune_literal] = ACTIONS(3807), - [anon_sym_AT] = ACTIONS(3807), - [anon_sym_shared] = ACTIONS(3807), - [anon_sym_map_LBRACK] = ACTIONS(3807), - [anon_sym_chan] = ACTIONS(3807), - [anon_sym_thread] = ACTIONS(3807), - [anon_sym_atomic] = ACTIONS(3807), - [anon_sym_assert] = ACTIONS(3807), - [anon_sym_defer] = ACTIONS(3807), - [anon_sym_goto] = ACTIONS(3807), - [anon_sym_break] = ACTIONS(3807), - [anon_sym_continue] = ACTIONS(3807), - [anon_sym_return] = ACTIONS(3807), - [anon_sym_DOLLARfor] = ACTIONS(3807), - [anon_sym_for] = ACTIONS(3807), - [anon_sym_POUND] = ACTIONS(3807), - [anon_sym_asm] = ACTIONS(3807), - [anon_sym_AT_LBRACK] = ACTIONS(3807), - [sym___double_quote] = ACTIONS(3807), - [sym___single_quote] = ACTIONS(3807), - [sym___c_double_quote] = ACTIONS(3807), - [sym___c_single_quote] = ACTIONS(3807), - [sym___r_double_quote] = ACTIONS(3807), - [sym___r_single_quote] = ACTIONS(3807), - }, - [1435] = { - [ts_builtin_sym_end] = ACTIONS(2917), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LF] = ACTIONS(2919), - [anon_sym_CR] = ACTIONS(2919), - [anon_sym_CR_LF] = ACTIONS(2919), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2919), - [anon_sym_LBRACE] = ACTIONS(2919), - [anon_sym_const] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2919), - [anon_sym___global] = ACTIONS(2919), - [anon_sym_type] = ACTIONS(2919), - [anon_sym_PIPE] = ACTIONS(2919), - [anon_sym_fn] = ACTIONS(2919), - [anon_sym_PLUS] = ACTIONS(2919), - [anon_sym_DASH] = ACTIONS(2919), - [anon_sym_STAR] = ACTIONS(2919), - [anon_sym_struct] = ACTIONS(2919), - [anon_sym_union] = ACTIONS(2919), - [anon_sym_pub] = ACTIONS(2919), - [anon_sym_mut] = ACTIONS(2919), - [anon_sym_enum] = ACTIONS(2919), - [anon_sym_interface] = ACTIONS(2919), - [anon_sym_QMARK] = ACTIONS(2919), - [anon_sym_BANG] = ACTIONS(2919), - [anon_sym_go] = ACTIONS(2919), - [anon_sym_spawn] = ACTIONS(2919), - [anon_sym_json_DOTdecode] = ACTIONS(2919), - [anon_sym_LBRACK2] = ACTIONS(2919), - [anon_sym_TILDE] = ACTIONS(2919), - [anon_sym_CARET] = ACTIONS(2919), - [anon_sym_AMP] = ACTIONS(2919), - [anon_sym_LT_DASH] = ACTIONS(2919), - [sym_none] = ACTIONS(2919), - [sym_true] = ACTIONS(2919), - [sym_false] = ACTIONS(2919), - [sym_nil] = ACTIONS(2919), - [anon_sym_if] = ACTIONS(2919), - [anon_sym_DOLLARif] = ACTIONS(2919), - [anon_sym_match] = ACTIONS(2919), - [anon_sym_select] = ACTIONS(2919), - [anon_sym_lock] = ACTIONS(2919), - [anon_sym_rlock] = ACTIONS(2919), - [anon_sym_unsafe] = ACTIONS(2919), - [anon_sym_sql] = ACTIONS(2919), - [sym_int_literal] = ACTIONS(2919), - [sym_float_literal] = ACTIONS(2919), - [sym_rune_literal] = ACTIONS(2919), - [anon_sym_AT] = ACTIONS(2919), - [anon_sym_shared] = ACTIONS(2919), - [anon_sym_map_LBRACK] = ACTIONS(2919), - [anon_sym_chan] = ACTIONS(2919), - [anon_sym_thread] = ACTIONS(2919), - [anon_sym_atomic] = ACTIONS(2919), - [anon_sym_assert] = ACTIONS(2919), - [anon_sym_defer] = ACTIONS(2919), - [anon_sym_goto] = ACTIONS(2919), - [anon_sym_break] = ACTIONS(2919), - [anon_sym_continue] = ACTIONS(2919), - [anon_sym_return] = ACTIONS(2919), - [anon_sym_DOLLARfor] = ACTIONS(2919), - [anon_sym_for] = ACTIONS(2919), - [anon_sym_POUND] = ACTIONS(2919), - [anon_sym_asm] = ACTIONS(2919), - [anon_sym_AT_LBRACK] = ACTIONS(2919), - [sym___double_quote] = ACTIONS(2919), - [sym___single_quote] = ACTIONS(2919), - [sym___c_double_quote] = ACTIONS(2919), - [sym___c_single_quote] = ACTIONS(2919), - [sym___r_double_quote] = ACTIONS(2919), - [sym___r_single_quote] = ACTIONS(2919), - }, - [1436] = { - [ts_builtin_sym_end] = ACTIONS(3039), - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_LBRACE] = ACTIONS(3041), - [anon_sym_const] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym___global] = ACTIONS(3041), - [anon_sym_type] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_union] = ACTIONS(3041), - [anon_sym_pub] = ACTIONS(3041), - [anon_sym_mut] = ACTIONS(3041), - [anon_sym_enum] = ACTIONS(3041), - [anon_sym_interface] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_go] = ACTIONS(3041), - [anon_sym_spawn] = ACTIONS(3041), - [anon_sym_json_DOTdecode] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_TILDE] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [sym_none] = ACTIONS(3041), - [sym_true] = ACTIONS(3041), - [sym_false] = ACTIONS(3041), - [sym_nil] = ACTIONS(3041), - [anon_sym_if] = ACTIONS(3041), - [anon_sym_DOLLARif] = ACTIONS(3041), - [anon_sym_match] = ACTIONS(3041), - [anon_sym_select] = ACTIONS(3041), - [anon_sym_lock] = ACTIONS(3041), - [anon_sym_rlock] = ACTIONS(3041), - [anon_sym_unsafe] = ACTIONS(3041), - [anon_sym_sql] = ACTIONS(3041), - [sym_int_literal] = ACTIONS(3041), - [sym_float_literal] = ACTIONS(3041), - [sym_rune_literal] = ACTIONS(3041), - [anon_sym_AT] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - [anon_sym_assert] = ACTIONS(3041), - [anon_sym_defer] = ACTIONS(3041), - [anon_sym_goto] = ACTIONS(3041), - [anon_sym_break] = ACTIONS(3041), - [anon_sym_continue] = ACTIONS(3041), - [anon_sym_return] = ACTIONS(3041), - [anon_sym_DOLLARfor] = ACTIONS(3041), - [anon_sym_for] = ACTIONS(3041), - [anon_sym_POUND] = ACTIONS(3041), - [anon_sym_asm] = ACTIONS(3041), - [anon_sym_AT_LBRACK] = ACTIONS(3041), - [sym___double_quote] = ACTIONS(3041), - [sym___single_quote] = ACTIONS(3041), - [sym___c_double_quote] = ACTIONS(3041), - [sym___c_single_quote] = ACTIONS(3041), - [sym___r_double_quote] = ACTIONS(3041), - [sym___r_single_quote] = ACTIONS(3041), - }, - [1437] = { - [ts_builtin_sym_end] = ACTIONS(2925), - [sym_identifier] = ACTIONS(2927), - [anon_sym_LF] = ACTIONS(2927), - [anon_sym_CR] = ACTIONS(2927), - [anon_sym_CR_LF] = ACTIONS(2927), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2927), - [anon_sym_LBRACE] = ACTIONS(2927), - [anon_sym_const] = ACTIONS(2927), - [anon_sym_LPAREN] = ACTIONS(2927), - [anon_sym___global] = ACTIONS(2927), - [anon_sym_type] = ACTIONS(2927), - [anon_sym_PIPE] = ACTIONS(2927), - [anon_sym_fn] = ACTIONS(2927), - [anon_sym_PLUS] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(2927), - [anon_sym_STAR] = ACTIONS(2927), - [anon_sym_struct] = ACTIONS(2927), - [anon_sym_union] = ACTIONS(2927), - [anon_sym_pub] = ACTIONS(2927), - [anon_sym_mut] = ACTIONS(2927), - [anon_sym_enum] = ACTIONS(2927), - [anon_sym_interface] = ACTIONS(2927), - [anon_sym_QMARK] = ACTIONS(2927), - [anon_sym_BANG] = ACTIONS(2927), - [anon_sym_go] = ACTIONS(2927), - [anon_sym_spawn] = ACTIONS(2927), - [anon_sym_json_DOTdecode] = ACTIONS(2927), - [anon_sym_LBRACK2] = ACTIONS(2927), - [anon_sym_TILDE] = ACTIONS(2927), - [anon_sym_CARET] = ACTIONS(2927), - [anon_sym_AMP] = ACTIONS(2927), - [anon_sym_LT_DASH] = ACTIONS(2927), - [sym_none] = ACTIONS(2927), - [sym_true] = ACTIONS(2927), - [sym_false] = ACTIONS(2927), - [sym_nil] = ACTIONS(2927), - [anon_sym_if] = ACTIONS(2927), - [anon_sym_DOLLARif] = ACTIONS(2927), - [anon_sym_match] = ACTIONS(2927), - [anon_sym_select] = ACTIONS(2927), - [anon_sym_lock] = ACTIONS(2927), - [anon_sym_rlock] = ACTIONS(2927), - [anon_sym_unsafe] = ACTIONS(2927), - [anon_sym_sql] = ACTIONS(2927), - [sym_int_literal] = ACTIONS(2927), - [sym_float_literal] = ACTIONS(2927), - [sym_rune_literal] = ACTIONS(2927), - [anon_sym_AT] = ACTIONS(2927), - [anon_sym_shared] = ACTIONS(2927), - [anon_sym_map_LBRACK] = ACTIONS(2927), - [anon_sym_chan] = ACTIONS(2927), - [anon_sym_thread] = ACTIONS(2927), - [anon_sym_atomic] = ACTIONS(2927), - [anon_sym_assert] = ACTIONS(2927), - [anon_sym_defer] = ACTIONS(2927), - [anon_sym_goto] = ACTIONS(2927), - [anon_sym_break] = ACTIONS(2927), - [anon_sym_continue] = ACTIONS(2927), - [anon_sym_return] = ACTIONS(2927), - [anon_sym_DOLLARfor] = ACTIONS(2927), - [anon_sym_for] = ACTIONS(2927), - [anon_sym_POUND] = ACTIONS(2927), - [anon_sym_asm] = ACTIONS(2927), - [anon_sym_AT_LBRACK] = ACTIONS(2927), - [sym___double_quote] = ACTIONS(2927), - [sym___single_quote] = ACTIONS(2927), - [sym___c_double_quote] = ACTIONS(2927), - [sym___c_single_quote] = ACTIONS(2927), - [sym___r_double_quote] = ACTIONS(2927), - [sym___r_single_quote] = ACTIONS(2927), - }, - [1438] = { - [ts_builtin_sym_end] = ACTIONS(3171), - [sym_identifier] = ACTIONS(3173), - [anon_sym_LF] = ACTIONS(3173), - [anon_sym_CR] = ACTIONS(3173), - [anon_sym_CR_LF] = ACTIONS(3173), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym___global] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_PIPE] = ACTIONS(3173), - [anon_sym_fn] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_STAR] = ACTIONS(3173), - [anon_sym_struct] = ACTIONS(3173), - [anon_sym_union] = ACTIONS(3173), - [anon_sym_pub] = ACTIONS(3173), - [anon_sym_mut] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_QMARK] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_go] = ACTIONS(3173), - [anon_sym_spawn] = ACTIONS(3173), - [anon_sym_json_DOTdecode] = ACTIONS(3173), - [anon_sym_LBRACK2] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_CARET] = ACTIONS(3173), - [anon_sym_AMP] = ACTIONS(3173), - [anon_sym_LT_DASH] = ACTIONS(3173), - [sym_none] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_nil] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_DOLLARif] = ACTIONS(3173), - [anon_sym_match] = ACTIONS(3173), - [anon_sym_select] = ACTIONS(3173), - [anon_sym_lock] = ACTIONS(3173), - [anon_sym_rlock] = ACTIONS(3173), - [anon_sym_unsafe] = ACTIONS(3173), - [anon_sym_sql] = ACTIONS(3173), - [sym_int_literal] = ACTIONS(3173), - [sym_float_literal] = ACTIONS(3173), - [sym_rune_literal] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_shared] = ACTIONS(3173), - [anon_sym_map_LBRACK] = ACTIONS(3173), - [anon_sym_chan] = ACTIONS(3173), - [anon_sym_thread] = ACTIONS(3173), - [anon_sym_atomic] = ACTIONS(3173), - [anon_sym_assert] = ACTIONS(3173), - [anon_sym_defer] = ACTIONS(3173), - [anon_sym_goto] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_DOLLARfor] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_POUND] = ACTIONS(3173), - [anon_sym_asm] = ACTIONS(3173), - [anon_sym_AT_LBRACK] = ACTIONS(3173), - [sym___double_quote] = ACTIONS(3173), - [sym___single_quote] = ACTIONS(3173), - [sym___c_double_quote] = ACTIONS(3173), - [sym___c_single_quote] = ACTIONS(3173), - [sym___r_double_quote] = ACTIONS(3173), - [sym___r_single_quote] = ACTIONS(3173), - }, - [1439] = { - [sym_block] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(3809), - [sym_identifier] = ACTIONS(3811), - [anon_sym_LF] = ACTIONS(3811), - [anon_sym_CR] = ACTIONS(3811), - [anon_sym_CR_LF] = ACTIONS(3811), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3811), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3811), - [anon_sym_LPAREN] = ACTIONS(3811), - [anon_sym___global] = ACTIONS(3811), - [anon_sym_type] = ACTIONS(3811), - [anon_sym_fn] = ACTIONS(3811), - [anon_sym_PLUS] = ACTIONS(3811), - [anon_sym_DASH] = ACTIONS(3811), - [anon_sym_STAR] = ACTIONS(3811), - [anon_sym_struct] = ACTIONS(3811), - [anon_sym_union] = ACTIONS(3811), - [anon_sym_pub] = ACTIONS(3811), - [anon_sym_mut] = ACTIONS(3811), - [anon_sym_enum] = ACTIONS(3811), - [anon_sym_interface] = ACTIONS(3811), - [anon_sym_QMARK] = ACTIONS(3811), - [anon_sym_BANG] = ACTIONS(3811), - [anon_sym_go] = ACTIONS(3811), - [anon_sym_spawn] = ACTIONS(3811), - [anon_sym_json_DOTdecode] = ACTIONS(3811), - [anon_sym_LBRACK2] = ACTIONS(3811), - [anon_sym_TILDE] = ACTIONS(3811), - [anon_sym_CARET] = ACTIONS(3811), - [anon_sym_AMP] = ACTIONS(3811), - [anon_sym_LT_DASH] = ACTIONS(3811), - [sym_none] = ACTIONS(3811), - [sym_true] = ACTIONS(3811), - [sym_false] = ACTIONS(3811), - [sym_nil] = ACTIONS(3811), - [anon_sym_if] = ACTIONS(3811), - [anon_sym_DOLLARif] = ACTIONS(3811), - [anon_sym_match] = ACTIONS(3811), - [anon_sym_select] = ACTIONS(3811), - [anon_sym_lock] = ACTIONS(3811), - [anon_sym_rlock] = ACTIONS(3811), - [anon_sym_unsafe] = ACTIONS(3811), - [anon_sym_sql] = ACTIONS(3811), - [sym_int_literal] = ACTIONS(3811), - [sym_float_literal] = ACTIONS(3811), - [sym_rune_literal] = ACTIONS(3811), - [anon_sym_AT] = ACTIONS(3811), - [anon_sym_shared] = ACTIONS(3811), - [anon_sym_map_LBRACK] = ACTIONS(3811), - [anon_sym_chan] = ACTIONS(3811), - [anon_sym_thread] = ACTIONS(3811), - [anon_sym_atomic] = ACTIONS(3811), - [anon_sym_assert] = ACTIONS(3811), - [anon_sym_defer] = ACTIONS(3811), - [anon_sym_goto] = ACTIONS(3811), - [anon_sym_break] = ACTIONS(3811), - [anon_sym_continue] = ACTIONS(3811), - [anon_sym_return] = ACTIONS(3811), - [anon_sym_DOLLARfor] = ACTIONS(3811), - [anon_sym_for] = ACTIONS(3811), - [anon_sym_POUND] = ACTIONS(3811), - [anon_sym_asm] = ACTIONS(3811), - [anon_sym_AT_LBRACK] = ACTIONS(3811), - [sym___double_quote] = ACTIONS(3811), - [sym___single_quote] = ACTIONS(3811), - [sym___c_double_quote] = ACTIONS(3811), - [sym___c_single_quote] = ACTIONS(3811), - [sym___r_double_quote] = ACTIONS(3811), - [sym___r_single_quote] = ACTIONS(3811), - }, - [1440] = { - [sym_block] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(3813), - [sym_identifier] = ACTIONS(3815), - [anon_sym_LF] = ACTIONS(3815), - [anon_sym_CR] = ACTIONS(3815), - [anon_sym_CR_LF] = ACTIONS(3815), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3815), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3815), - [anon_sym_LPAREN] = ACTIONS(3815), - [anon_sym___global] = ACTIONS(3815), - [anon_sym_type] = ACTIONS(3815), - [anon_sym_fn] = ACTIONS(3815), - [anon_sym_PLUS] = ACTIONS(3815), - [anon_sym_DASH] = ACTIONS(3815), - [anon_sym_STAR] = ACTIONS(3815), - [anon_sym_struct] = ACTIONS(3815), - [anon_sym_union] = ACTIONS(3815), - [anon_sym_pub] = ACTIONS(3815), - [anon_sym_mut] = ACTIONS(3815), - [anon_sym_enum] = ACTIONS(3815), - [anon_sym_interface] = ACTIONS(3815), - [anon_sym_QMARK] = ACTIONS(3815), - [anon_sym_BANG] = ACTIONS(3815), - [anon_sym_go] = ACTIONS(3815), - [anon_sym_spawn] = ACTIONS(3815), - [anon_sym_json_DOTdecode] = ACTIONS(3815), - [anon_sym_LBRACK2] = ACTIONS(3815), - [anon_sym_TILDE] = ACTIONS(3815), - [anon_sym_CARET] = ACTIONS(3815), - [anon_sym_AMP] = ACTIONS(3815), - [anon_sym_LT_DASH] = ACTIONS(3815), - [sym_none] = ACTIONS(3815), - [sym_true] = ACTIONS(3815), - [sym_false] = ACTIONS(3815), - [sym_nil] = ACTIONS(3815), - [anon_sym_if] = ACTIONS(3815), - [anon_sym_DOLLARif] = ACTIONS(3815), - [anon_sym_match] = ACTIONS(3815), - [anon_sym_select] = ACTIONS(3815), - [anon_sym_lock] = ACTIONS(3815), - [anon_sym_rlock] = ACTIONS(3815), - [anon_sym_unsafe] = ACTIONS(3815), - [anon_sym_sql] = ACTIONS(3815), - [sym_int_literal] = ACTIONS(3815), - [sym_float_literal] = ACTIONS(3815), - [sym_rune_literal] = ACTIONS(3815), - [anon_sym_AT] = ACTIONS(3815), - [anon_sym_shared] = ACTIONS(3815), - [anon_sym_map_LBRACK] = ACTIONS(3815), - [anon_sym_chan] = ACTIONS(3815), - [anon_sym_thread] = ACTIONS(3815), - [anon_sym_atomic] = ACTIONS(3815), - [anon_sym_assert] = ACTIONS(3815), - [anon_sym_defer] = ACTIONS(3815), - [anon_sym_goto] = ACTIONS(3815), - [anon_sym_break] = ACTIONS(3815), - [anon_sym_continue] = ACTIONS(3815), - [anon_sym_return] = ACTIONS(3815), - [anon_sym_DOLLARfor] = ACTIONS(3815), - [anon_sym_for] = ACTIONS(3815), - [anon_sym_POUND] = ACTIONS(3815), - [anon_sym_asm] = ACTIONS(3815), - [anon_sym_AT_LBRACK] = ACTIONS(3815), - [sym___double_quote] = ACTIONS(3815), - [sym___single_quote] = ACTIONS(3815), - [sym___c_double_quote] = ACTIONS(3815), - [sym___c_single_quote] = ACTIONS(3815), - [sym___r_double_quote] = ACTIONS(3815), - [sym___r_single_quote] = ACTIONS(3815), - }, - [1441] = { - [sym_block] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(3817), - [sym_identifier] = ACTIONS(3819), - [anon_sym_LF] = ACTIONS(3819), - [anon_sym_CR] = ACTIONS(3819), - [anon_sym_CR_LF] = ACTIONS(3819), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3819), - [anon_sym_LPAREN] = ACTIONS(3819), - [anon_sym___global] = ACTIONS(3819), - [anon_sym_type] = ACTIONS(3819), - [anon_sym_fn] = ACTIONS(3819), - [anon_sym_PLUS] = ACTIONS(3819), - [anon_sym_DASH] = ACTIONS(3819), - [anon_sym_STAR] = ACTIONS(3819), - [anon_sym_struct] = ACTIONS(3819), - [anon_sym_union] = ACTIONS(3819), - [anon_sym_pub] = ACTIONS(3819), - [anon_sym_mut] = ACTIONS(3819), - [anon_sym_enum] = ACTIONS(3819), - [anon_sym_interface] = ACTIONS(3819), - [anon_sym_QMARK] = ACTIONS(3819), - [anon_sym_BANG] = ACTIONS(3819), - [anon_sym_go] = ACTIONS(3819), - [anon_sym_spawn] = ACTIONS(3819), - [anon_sym_json_DOTdecode] = ACTIONS(3819), - [anon_sym_LBRACK2] = ACTIONS(3819), - [anon_sym_TILDE] = ACTIONS(3819), - [anon_sym_CARET] = ACTIONS(3819), - [anon_sym_AMP] = ACTIONS(3819), - [anon_sym_LT_DASH] = ACTIONS(3819), - [sym_none] = ACTIONS(3819), - [sym_true] = ACTIONS(3819), - [sym_false] = ACTIONS(3819), - [sym_nil] = ACTIONS(3819), - [anon_sym_if] = ACTIONS(3819), - [anon_sym_DOLLARif] = ACTIONS(3819), - [anon_sym_match] = ACTIONS(3819), - [anon_sym_select] = ACTIONS(3819), - [anon_sym_lock] = ACTIONS(3819), - [anon_sym_rlock] = ACTIONS(3819), - [anon_sym_unsafe] = ACTIONS(3819), - [anon_sym_sql] = ACTIONS(3819), - [sym_int_literal] = ACTIONS(3819), - [sym_float_literal] = ACTIONS(3819), - [sym_rune_literal] = ACTIONS(3819), - [anon_sym_AT] = ACTIONS(3819), - [anon_sym_shared] = ACTIONS(3819), - [anon_sym_map_LBRACK] = ACTIONS(3819), - [anon_sym_chan] = ACTIONS(3819), - [anon_sym_thread] = ACTIONS(3819), - [anon_sym_atomic] = ACTIONS(3819), - [anon_sym_assert] = ACTIONS(3819), - [anon_sym_defer] = ACTIONS(3819), - [anon_sym_goto] = ACTIONS(3819), - [anon_sym_break] = ACTIONS(3819), - [anon_sym_continue] = ACTIONS(3819), - [anon_sym_return] = ACTIONS(3819), - [anon_sym_DOLLARfor] = ACTIONS(3819), - [anon_sym_for] = ACTIONS(3819), - [anon_sym_POUND] = ACTIONS(3819), - [anon_sym_asm] = ACTIONS(3819), - [anon_sym_AT_LBRACK] = ACTIONS(3819), - [sym___double_quote] = ACTIONS(3819), - [sym___single_quote] = ACTIONS(3819), - [sym___c_double_quote] = ACTIONS(3819), - [sym___c_single_quote] = ACTIONS(3819), - [sym___r_double_quote] = ACTIONS(3819), - [sym___r_single_quote] = ACTIONS(3819), - }, - [1442] = { - [ts_builtin_sym_end] = ACTIONS(3079), - [sym_identifier] = ACTIONS(3081), - [anon_sym_LF] = ACTIONS(3081), - [anon_sym_CR] = ACTIONS(3081), - [anon_sym_CR_LF] = ACTIONS(3081), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3081), - [anon_sym_LBRACE] = ACTIONS(3081), - [anon_sym_const] = ACTIONS(3081), - [anon_sym_LPAREN] = ACTIONS(3081), - [anon_sym___global] = ACTIONS(3081), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_PIPE] = ACTIONS(3081), - [anon_sym_fn] = ACTIONS(3081), - [anon_sym_PLUS] = ACTIONS(3081), - [anon_sym_DASH] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(3081), - [anon_sym_struct] = ACTIONS(3081), - [anon_sym_union] = ACTIONS(3081), - [anon_sym_pub] = ACTIONS(3081), - [anon_sym_mut] = ACTIONS(3081), - [anon_sym_enum] = ACTIONS(3081), - [anon_sym_interface] = ACTIONS(3081), - [anon_sym_QMARK] = ACTIONS(3081), - [anon_sym_BANG] = ACTIONS(3081), - [anon_sym_go] = ACTIONS(3081), - [anon_sym_spawn] = ACTIONS(3081), - [anon_sym_json_DOTdecode] = ACTIONS(3081), - [anon_sym_LBRACK2] = ACTIONS(3081), - [anon_sym_TILDE] = ACTIONS(3081), - [anon_sym_CARET] = ACTIONS(3081), - [anon_sym_AMP] = ACTIONS(3081), - [anon_sym_LT_DASH] = ACTIONS(3081), - [sym_none] = ACTIONS(3081), - [sym_true] = ACTIONS(3081), - [sym_false] = ACTIONS(3081), - [sym_nil] = ACTIONS(3081), - [anon_sym_if] = ACTIONS(3081), - [anon_sym_DOLLARif] = ACTIONS(3081), - [anon_sym_match] = ACTIONS(3081), - [anon_sym_select] = ACTIONS(3081), - [anon_sym_lock] = ACTIONS(3081), - [anon_sym_rlock] = ACTIONS(3081), - [anon_sym_unsafe] = ACTIONS(3081), - [anon_sym_sql] = ACTIONS(3081), - [sym_int_literal] = ACTIONS(3081), - [sym_float_literal] = ACTIONS(3081), - [sym_rune_literal] = ACTIONS(3081), - [anon_sym_AT] = ACTIONS(3081), - [anon_sym_shared] = ACTIONS(3081), - [anon_sym_map_LBRACK] = ACTIONS(3081), - [anon_sym_chan] = ACTIONS(3081), - [anon_sym_thread] = ACTIONS(3081), - [anon_sym_atomic] = ACTIONS(3081), - [anon_sym_assert] = ACTIONS(3081), - [anon_sym_defer] = ACTIONS(3081), - [anon_sym_goto] = ACTIONS(3081), - [anon_sym_break] = ACTIONS(3081), - [anon_sym_continue] = ACTIONS(3081), - [anon_sym_return] = ACTIONS(3081), - [anon_sym_DOLLARfor] = ACTIONS(3081), - [anon_sym_for] = ACTIONS(3081), - [anon_sym_POUND] = ACTIONS(3081), - [anon_sym_asm] = ACTIONS(3081), - [anon_sym_AT_LBRACK] = ACTIONS(3081), - [sym___double_quote] = ACTIONS(3081), - [sym___single_quote] = ACTIONS(3081), - [sym___c_double_quote] = ACTIONS(3081), - [sym___c_single_quote] = ACTIONS(3081), - [sym___r_double_quote] = ACTIONS(3081), - [sym___r_single_quote] = ACTIONS(3081), - }, - [1443] = { - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3129), - [anon_sym_LF] = ACTIONS(3129), - [anon_sym_CR] = ACTIONS(3129), - [anon_sym_CR_LF] = ACTIONS(3129), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3129), - [anon_sym_LBRACE] = ACTIONS(3129), - [anon_sym_const] = ACTIONS(3129), - [anon_sym_LPAREN] = ACTIONS(3129), - [anon_sym___global] = ACTIONS(3129), - [anon_sym_type] = ACTIONS(3129), - [anon_sym_PIPE] = ACTIONS(3129), - [anon_sym_fn] = ACTIONS(3129), - [anon_sym_PLUS] = ACTIONS(3129), - [anon_sym_DASH] = ACTIONS(3129), - [anon_sym_STAR] = ACTIONS(3129), - [anon_sym_struct] = ACTIONS(3129), - [anon_sym_union] = ACTIONS(3129), - [anon_sym_pub] = ACTIONS(3129), - [anon_sym_mut] = ACTIONS(3129), - [anon_sym_enum] = ACTIONS(3129), - [anon_sym_interface] = ACTIONS(3129), - [anon_sym_QMARK] = ACTIONS(3129), - [anon_sym_BANG] = ACTIONS(3129), - [anon_sym_go] = ACTIONS(3129), - [anon_sym_spawn] = ACTIONS(3129), - [anon_sym_json_DOTdecode] = ACTIONS(3129), - [anon_sym_LBRACK2] = ACTIONS(3129), - [anon_sym_TILDE] = ACTIONS(3129), - [anon_sym_CARET] = ACTIONS(3129), - [anon_sym_AMP] = ACTIONS(3129), - [anon_sym_LT_DASH] = ACTIONS(3129), - [sym_none] = ACTIONS(3129), - [sym_true] = ACTIONS(3129), - [sym_false] = ACTIONS(3129), - [sym_nil] = ACTIONS(3129), - [anon_sym_if] = ACTIONS(3129), - [anon_sym_DOLLARif] = ACTIONS(3129), - [anon_sym_match] = ACTIONS(3129), - [anon_sym_select] = ACTIONS(3129), - [anon_sym_lock] = ACTIONS(3129), - [anon_sym_rlock] = ACTIONS(3129), - [anon_sym_unsafe] = ACTIONS(3129), - [anon_sym_sql] = ACTIONS(3129), - [sym_int_literal] = ACTIONS(3129), - [sym_float_literal] = ACTIONS(3129), - [sym_rune_literal] = ACTIONS(3129), - [anon_sym_AT] = ACTIONS(3129), - [anon_sym_shared] = ACTIONS(3129), - [anon_sym_map_LBRACK] = ACTIONS(3129), - [anon_sym_chan] = ACTIONS(3129), - [anon_sym_thread] = ACTIONS(3129), - [anon_sym_atomic] = ACTIONS(3129), - [anon_sym_assert] = ACTIONS(3129), - [anon_sym_defer] = ACTIONS(3129), - [anon_sym_goto] = ACTIONS(3129), - [anon_sym_break] = ACTIONS(3129), - [anon_sym_continue] = ACTIONS(3129), - [anon_sym_return] = ACTIONS(3129), - [anon_sym_DOLLARfor] = ACTIONS(3129), - [anon_sym_for] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_asm] = ACTIONS(3129), - [anon_sym_AT_LBRACK] = ACTIONS(3129), - [sym___double_quote] = ACTIONS(3129), - [sym___single_quote] = ACTIONS(3129), - [sym___c_double_quote] = ACTIONS(3129), - [sym___c_single_quote] = ACTIONS(3129), - [sym___r_double_quote] = ACTIONS(3129), - [sym___r_single_quote] = ACTIONS(3129), - }, - [1444] = { - [ts_builtin_sym_end] = ACTIONS(3163), - [sym_identifier] = ACTIONS(3165), - [anon_sym_LF] = ACTIONS(3165), - [anon_sym_CR] = ACTIONS(3165), - [anon_sym_CR_LF] = ACTIONS(3165), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3165), - [anon_sym_LBRACE] = ACTIONS(3165), - [anon_sym_const] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3165), - [anon_sym___global] = ACTIONS(3165), - [anon_sym_type] = ACTIONS(3165), - [anon_sym_PIPE] = ACTIONS(3165), - [anon_sym_fn] = ACTIONS(3165), - [anon_sym_PLUS] = ACTIONS(3165), - [anon_sym_DASH] = ACTIONS(3165), - [anon_sym_STAR] = ACTIONS(3165), - [anon_sym_struct] = ACTIONS(3165), - [anon_sym_union] = ACTIONS(3165), - [anon_sym_pub] = ACTIONS(3165), - [anon_sym_mut] = ACTIONS(3165), - [anon_sym_enum] = ACTIONS(3165), - [anon_sym_interface] = ACTIONS(3165), - [anon_sym_QMARK] = ACTIONS(3165), - [anon_sym_BANG] = ACTIONS(3165), - [anon_sym_go] = ACTIONS(3165), - [anon_sym_spawn] = ACTIONS(3165), - [anon_sym_json_DOTdecode] = ACTIONS(3165), - [anon_sym_LBRACK2] = ACTIONS(3165), - [anon_sym_TILDE] = ACTIONS(3165), - [anon_sym_CARET] = ACTIONS(3165), - [anon_sym_AMP] = ACTIONS(3165), - [anon_sym_LT_DASH] = ACTIONS(3165), - [sym_none] = ACTIONS(3165), - [sym_true] = ACTIONS(3165), - [sym_false] = ACTIONS(3165), - [sym_nil] = ACTIONS(3165), - [anon_sym_if] = ACTIONS(3165), - [anon_sym_DOLLARif] = ACTIONS(3165), - [anon_sym_match] = ACTIONS(3165), - [anon_sym_select] = ACTIONS(3165), - [anon_sym_lock] = ACTIONS(3165), - [anon_sym_rlock] = ACTIONS(3165), - [anon_sym_unsafe] = ACTIONS(3165), - [anon_sym_sql] = ACTIONS(3165), - [sym_int_literal] = ACTIONS(3165), - [sym_float_literal] = ACTIONS(3165), - [sym_rune_literal] = ACTIONS(3165), - [anon_sym_AT] = ACTIONS(3165), - [anon_sym_shared] = ACTIONS(3165), - [anon_sym_map_LBRACK] = ACTIONS(3165), - [anon_sym_chan] = ACTIONS(3165), - [anon_sym_thread] = ACTIONS(3165), - [anon_sym_atomic] = ACTIONS(3165), - [anon_sym_assert] = ACTIONS(3165), - [anon_sym_defer] = ACTIONS(3165), - [anon_sym_goto] = ACTIONS(3165), - [anon_sym_break] = ACTIONS(3165), - [anon_sym_continue] = ACTIONS(3165), - [anon_sym_return] = ACTIONS(3165), - [anon_sym_DOLLARfor] = ACTIONS(3165), - [anon_sym_for] = ACTIONS(3165), - [anon_sym_POUND] = ACTIONS(3165), - [anon_sym_asm] = ACTIONS(3165), - [anon_sym_AT_LBRACK] = ACTIONS(3165), - [sym___double_quote] = ACTIONS(3165), - [sym___single_quote] = ACTIONS(3165), - [sym___c_double_quote] = ACTIONS(3165), - [sym___c_single_quote] = ACTIONS(3165), - [sym___r_double_quote] = ACTIONS(3165), - [sym___r_single_quote] = ACTIONS(3165), - }, - [1445] = { - [sym_block] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(3821), - [sym_identifier] = ACTIONS(3823), - [anon_sym_LF] = ACTIONS(3823), - [anon_sym_CR] = ACTIONS(3823), - [anon_sym_CR_LF] = ACTIONS(3823), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3823), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3823), - [anon_sym_LPAREN] = ACTIONS(3823), - [anon_sym___global] = ACTIONS(3823), - [anon_sym_type] = ACTIONS(3823), - [anon_sym_fn] = ACTIONS(3823), - [anon_sym_PLUS] = ACTIONS(3823), - [anon_sym_DASH] = ACTIONS(3823), - [anon_sym_STAR] = ACTIONS(3823), - [anon_sym_struct] = ACTIONS(3823), - [anon_sym_union] = ACTIONS(3823), - [anon_sym_pub] = ACTIONS(3823), - [anon_sym_mut] = ACTIONS(3823), - [anon_sym_enum] = ACTIONS(3823), - [anon_sym_interface] = ACTIONS(3823), - [anon_sym_QMARK] = ACTIONS(3823), - [anon_sym_BANG] = ACTIONS(3823), - [anon_sym_go] = ACTIONS(3823), - [anon_sym_spawn] = ACTIONS(3823), - [anon_sym_json_DOTdecode] = ACTIONS(3823), - [anon_sym_LBRACK2] = ACTIONS(3823), - [anon_sym_TILDE] = ACTIONS(3823), - [anon_sym_CARET] = ACTIONS(3823), - [anon_sym_AMP] = ACTIONS(3823), - [anon_sym_LT_DASH] = ACTIONS(3823), - [sym_none] = ACTIONS(3823), - [sym_true] = ACTIONS(3823), - [sym_false] = ACTIONS(3823), - [sym_nil] = ACTIONS(3823), - [anon_sym_if] = ACTIONS(3823), - [anon_sym_DOLLARif] = ACTIONS(3823), - [anon_sym_match] = ACTIONS(3823), - [anon_sym_select] = ACTIONS(3823), - [anon_sym_lock] = ACTIONS(3823), - [anon_sym_rlock] = ACTIONS(3823), - [anon_sym_unsafe] = ACTIONS(3823), - [anon_sym_sql] = ACTIONS(3823), - [sym_int_literal] = ACTIONS(3823), - [sym_float_literal] = ACTIONS(3823), - [sym_rune_literal] = ACTIONS(3823), - [anon_sym_AT] = ACTIONS(3823), - [anon_sym_shared] = ACTIONS(3823), - [anon_sym_map_LBRACK] = ACTIONS(3823), - [anon_sym_chan] = ACTIONS(3823), - [anon_sym_thread] = ACTIONS(3823), - [anon_sym_atomic] = ACTIONS(3823), - [anon_sym_assert] = ACTIONS(3823), - [anon_sym_defer] = ACTIONS(3823), - [anon_sym_goto] = ACTIONS(3823), - [anon_sym_break] = ACTIONS(3823), - [anon_sym_continue] = ACTIONS(3823), - [anon_sym_return] = ACTIONS(3823), - [anon_sym_DOLLARfor] = ACTIONS(3823), - [anon_sym_for] = ACTIONS(3823), - [anon_sym_POUND] = ACTIONS(3823), - [anon_sym_asm] = ACTIONS(3823), - [anon_sym_AT_LBRACK] = ACTIONS(3823), - [sym___double_quote] = ACTIONS(3823), - [sym___single_quote] = ACTIONS(3823), - [sym___c_double_quote] = ACTIONS(3823), - [sym___c_single_quote] = ACTIONS(3823), - [sym___r_double_quote] = ACTIONS(3823), - [sym___r_single_quote] = ACTIONS(3823), - }, - [1446] = { - [ts_builtin_sym_end] = ACTIONS(3119), - [sym_identifier] = ACTIONS(3121), - [anon_sym_LF] = ACTIONS(3121), - [anon_sym_CR] = ACTIONS(3121), - [anon_sym_CR_LF] = ACTIONS(3121), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3121), - [anon_sym_LBRACE] = ACTIONS(3121), - [anon_sym_const] = ACTIONS(3121), - [anon_sym_LPAREN] = ACTIONS(3121), - [anon_sym___global] = ACTIONS(3121), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_PIPE] = ACTIONS(3121), - [anon_sym_fn] = ACTIONS(3121), - [anon_sym_PLUS] = ACTIONS(3121), - [anon_sym_DASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3121), - [anon_sym_struct] = ACTIONS(3121), - [anon_sym_union] = ACTIONS(3121), - [anon_sym_pub] = ACTIONS(3121), - [anon_sym_mut] = ACTIONS(3121), - [anon_sym_enum] = ACTIONS(3121), - [anon_sym_interface] = ACTIONS(3121), - [anon_sym_QMARK] = ACTIONS(3121), - [anon_sym_BANG] = ACTIONS(3121), - [anon_sym_go] = ACTIONS(3121), - [anon_sym_spawn] = ACTIONS(3121), - [anon_sym_json_DOTdecode] = ACTIONS(3121), - [anon_sym_LBRACK2] = ACTIONS(3121), - [anon_sym_TILDE] = ACTIONS(3121), - [anon_sym_CARET] = ACTIONS(3121), - [anon_sym_AMP] = ACTIONS(3121), - [anon_sym_LT_DASH] = ACTIONS(3121), - [sym_none] = ACTIONS(3121), - [sym_true] = ACTIONS(3121), - [sym_false] = ACTIONS(3121), - [sym_nil] = ACTIONS(3121), - [anon_sym_if] = ACTIONS(3121), - [anon_sym_DOLLARif] = ACTIONS(3121), - [anon_sym_match] = ACTIONS(3121), - [anon_sym_select] = ACTIONS(3121), - [anon_sym_lock] = ACTIONS(3121), - [anon_sym_rlock] = ACTIONS(3121), - [anon_sym_unsafe] = ACTIONS(3121), - [anon_sym_sql] = ACTIONS(3121), - [sym_int_literal] = ACTIONS(3121), - [sym_float_literal] = ACTIONS(3121), - [sym_rune_literal] = ACTIONS(3121), - [anon_sym_AT] = ACTIONS(3121), - [anon_sym_shared] = ACTIONS(3121), - [anon_sym_map_LBRACK] = ACTIONS(3121), - [anon_sym_chan] = ACTIONS(3121), - [anon_sym_thread] = ACTIONS(3121), - [anon_sym_atomic] = ACTIONS(3121), - [anon_sym_assert] = ACTIONS(3121), - [anon_sym_defer] = ACTIONS(3121), - [anon_sym_goto] = ACTIONS(3121), - [anon_sym_break] = ACTIONS(3121), - [anon_sym_continue] = ACTIONS(3121), - [anon_sym_return] = ACTIONS(3121), - [anon_sym_DOLLARfor] = ACTIONS(3121), - [anon_sym_for] = ACTIONS(3121), - [anon_sym_POUND] = ACTIONS(3121), - [anon_sym_asm] = ACTIONS(3121), - [anon_sym_AT_LBRACK] = ACTIONS(3121), - [sym___double_quote] = ACTIONS(3121), - [sym___single_quote] = ACTIONS(3121), - [sym___c_double_quote] = ACTIONS(3121), - [sym___c_single_quote] = ACTIONS(3121), - [sym___r_double_quote] = ACTIONS(3121), - [sym___r_single_quote] = ACTIONS(3121), - }, - [1447] = { - [sym_block] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(3825), - [sym_identifier] = ACTIONS(3827), - [anon_sym_LF] = ACTIONS(3827), - [anon_sym_CR] = ACTIONS(3827), - [anon_sym_CR_LF] = ACTIONS(3827), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3827), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3827), - [anon_sym_LPAREN] = ACTIONS(3827), - [anon_sym___global] = ACTIONS(3827), - [anon_sym_type] = ACTIONS(3827), - [anon_sym_fn] = ACTIONS(3827), - [anon_sym_PLUS] = ACTIONS(3827), - [anon_sym_DASH] = ACTIONS(3827), - [anon_sym_STAR] = ACTIONS(3827), - [anon_sym_struct] = ACTIONS(3827), - [anon_sym_union] = ACTIONS(3827), - [anon_sym_pub] = ACTIONS(3827), - [anon_sym_mut] = ACTIONS(3827), - [anon_sym_enum] = ACTIONS(3827), - [anon_sym_interface] = ACTIONS(3827), - [anon_sym_QMARK] = ACTIONS(3827), - [anon_sym_BANG] = ACTIONS(3827), - [anon_sym_go] = ACTIONS(3827), - [anon_sym_spawn] = ACTIONS(3827), - [anon_sym_json_DOTdecode] = ACTIONS(3827), - [anon_sym_LBRACK2] = ACTIONS(3827), - [anon_sym_TILDE] = ACTIONS(3827), - [anon_sym_CARET] = ACTIONS(3827), - [anon_sym_AMP] = ACTIONS(3827), - [anon_sym_LT_DASH] = ACTIONS(3827), - [sym_none] = ACTIONS(3827), - [sym_true] = ACTIONS(3827), - [sym_false] = ACTIONS(3827), - [sym_nil] = ACTIONS(3827), - [anon_sym_if] = ACTIONS(3827), - [anon_sym_DOLLARif] = ACTIONS(3827), - [anon_sym_match] = ACTIONS(3827), - [anon_sym_select] = ACTIONS(3827), - [anon_sym_lock] = ACTIONS(3827), - [anon_sym_rlock] = ACTIONS(3827), - [anon_sym_unsafe] = ACTIONS(3827), - [anon_sym_sql] = ACTIONS(3827), - [sym_int_literal] = ACTIONS(3827), - [sym_float_literal] = ACTIONS(3827), - [sym_rune_literal] = ACTIONS(3827), - [anon_sym_AT] = ACTIONS(3827), - [anon_sym_shared] = ACTIONS(3827), - [anon_sym_map_LBRACK] = ACTIONS(3827), - [anon_sym_chan] = ACTIONS(3827), - [anon_sym_thread] = ACTIONS(3827), - [anon_sym_atomic] = ACTIONS(3827), - [anon_sym_assert] = ACTIONS(3827), - [anon_sym_defer] = ACTIONS(3827), - [anon_sym_goto] = ACTIONS(3827), - [anon_sym_break] = ACTIONS(3827), - [anon_sym_continue] = ACTIONS(3827), - [anon_sym_return] = ACTIONS(3827), - [anon_sym_DOLLARfor] = ACTIONS(3827), - [anon_sym_for] = ACTIONS(3827), - [anon_sym_POUND] = ACTIONS(3827), - [anon_sym_asm] = ACTIONS(3827), - [anon_sym_AT_LBRACK] = ACTIONS(3827), - [sym___double_quote] = ACTIONS(3827), - [sym___single_quote] = ACTIONS(3827), - [sym___c_double_quote] = ACTIONS(3827), - [sym___c_single_quote] = ACTIONS(3827), - [sym___r_double_quote] = ACTIONS(3827), - [sym___r_single_quote] = ACTIONS(3827), - }, - [1448] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_RBRACE] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_RPAREN] = ACTIONS(591), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_RBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_COLON] = ACTIONS(591), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(3829), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(591), - }, - [1449] = { - [sym_block] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(3831), - [sym_identifier] = ACTIONS(3833), - [anon_sym_LF] = ACTIONS(3833), - [anon_sym_CR] = ACTIONS(3833), - [anon_sym_CR_LF] = ACTIONS(3833), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3833), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3833), - [anon_sym_LPAREN] = ACTIONS(3833), - [anon_sym___global] = ACTIONS(3833), - [anon_sym_type] = ACTIONS(3833), - [anon_sym_fn] = ACTIONS(3833), - [anon_sym_PLUS] = ACTIONS(3833), - [anon_sym_DASH] = ACTIONS(3833), - [anon_sym_STAR] = ACTIONS(3833), - [anon_sym_struct] = ACTIONS(3833), - [anon_sym_union] = ACTIONS(3833), - [anon_sym_pub] = ACTIONS(3833), - [anon_sym_mut] = ACTIONS(3833), - [anon_sym_enum] = ACTIONS(3833), - [anon_sym_interface] = ACTIONS(3833), - [anon_sym_QMARK] = ACTIONS(3833), - [anon_sym_BANG] = ACTIONS(3833), - [anon_sym_go] = ACTIONS(3833), - [anon_sym_spawn] = ACTIONS(3833), - [anon_sym_json_DOTdecode] = ACTIONS(3833), - [anon_sym_LBRACK2] = ACTIONS(3833), - [anon_sym_TILDE] = ACTIONS(3833), - [anon_sym_CARET] = ACTIONS(3833), - [anon_sym_AMP] = ACTIONS(3833), - [anon_sym_LT_DASH] = ACTIONS(3833), - [sym_none] = ACTIONS(3833), - [sym_true] = ACTIONS(3833), - [sym_false] = ACTIONS(3833), - [sym_nil] = ACTIONS(3833), - [anon_sym_if] = ACTIONS(3833), - [anon_sym_DOLLARif] = ACTIONS(3833), - [anon_sym_match] = ACTIONS(3833), - [anon_sym_select] = ACTIONS(3833), - [anon_sym_lock] = ACTIONS(3833), - [anon_sym_rlock] = ACTIONS(3833), - [anon_sym_unsafe] = ACTIONS(3833), - [anon_sym_sql] = ACTIONS(3833), - [sym_int_literal] = ACTIONS(3833), - [sym_float_literal] = ACTIONS(3833), - [sym_rune_literal] = ACTIONS(3833), - [anon_sym_AT] = ACTIONS(3833), - [anon_sym_shared] = ACTIONS(3833), - [anon_sym_map_LBRACK] = ACTIONS(3833), - [anon_sym_chan] = ACTIONS(3833), - [anon_sym_thread] = ACTIONS(3833), - [anon_sym_atomic] = ACTIONS(3833), - [anon_sym_assert] = ACTIONS(3833), - [anon_sym_defer] = ACTIONS(3833), - [anon_sym_goto] = ACTIONS(3833), - [anon_sym_break] = ACTIONS(3833), - [anon_sym_continue] = ACTIONS(3833), - [anon_sym_return] = ACTIONS(3833), - [anon_sym_DOLLARfor] = ACTIONS(3833), - [anon_sym_for] = ACTIONS(3833), - [anon_sym_POUND] = ACTIONS(3833), - [anon_sym_asm] = ACTIONS(3833), - [anon_sym_AT_LBRACK] = ACTIONS(3833), - [sym___double_quote] = ACTIONS(3833), - [sym___single_quote] = ACTIONS(3833), - [sym___c_double_quote] = ACTIONS(3833), - [sym___c_single_quote] = ACTIONS(3833), - [sym___r_double_quote] = ACTIONS(3833), - [sym___r_single_quote] = ACTIONS(3833), - }, - [1450] = { - [sym_block] = STATE(1507), - [ts_builtin_sym_end] = ACTIONS(3835), - [sym_identifier] = ACTIONS(3837), - [anon_sym_LF] = ACTIONS(3837), - [anon_sym_CR] = ACTIONS(3837), - [anon_sym_CR_LF] = ACTIONS(3837), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3837), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3837), - [anon_sym_LPAREN] = ACTIONS(3837), - [anon_sym___global] = ACTIONS(3837), - [anon_sym_type] = ACTIONS(3837), - [anon_sym_fn] = ACTIONS(3837), - [anon_sym_PLUS] = ACTIONS(3837), - [anon_sym_DASH] = ACTIONS(3837), - [anon_sym_STAR] = ACTIONS(3837), - [anon_sym_struct] = ACTIONS(3837), - [anon_sym_union] = ACTIONS(3837), - [anon_sym_pub] = ACTIONS(3837), - [anon_sym_mut] = ACTIONS(3837), - [anon_sym_enum] = ACTIONS(3837), - [anon_sym_interface] = ACTIONS(3837), - [anon_sym_QMARK] = ACTIONS(3837), - [anon_sym_BANG] = ACTIONS(3837), - [anon_sym_go] = ACTIONS(3837), - [anon_sym_spawn] = ACTIONS(3837), - [anon_sym_json_DOTdecode] = ACTIONS(3837), - [anon_sym_LBRACK2] = ACTIONS(3837), - [anon_sym_TILDE] = ACTIONS(3837), - [anon_sym_CARET] = ACTIONS(3837), - [anon_sym_AMP] = ACTIONS(3837), - [anon_sym_LT_DASH] = ACTIONS(3837), - [sym_none] = ACTIONS(3837), - [sym_true] = ACTIONS(3837), - [sym_false] = ACTIONS(3837), - [sym_nil] = ACTIONS(3837), - [anon_sym_if] = ACTIONS(3837), - [anon_sym_DOLLARif] = ACTIONS(3837), - [anon_sym_match] = ACTIONS(3837), - [anon_sym_select] = ACTIONS(3837), - [anon_sym_lock] = ACTIONS(3837), - [anon_sym_rlock] = ACTIONS(3837), - [anon_sym_unsafe] = ACTIONS(3837), - [anon_sym_sql] = ACTIONS(3837), - [sym_int_literal] = ACTIONS(3837), - [sym_float_literal] = ACTIONS(3837), - [sym_rune_literal] = ACTIONS(3837), - [anon_sym_AT] = ACTIONS(3837), - [anon_sym_shared] = ACTIONS(3837), - [anon_sym_map_LBRACK] = ACTIONS(3837), - [anon_sym_chan] = ACTIONS(3837), - [anon_sym_thread] = ACTIONS(3837), - [anon_sym_atomic] = ACTIONS(3837), - [anon_sym_assert] = ACTIONS(3837), - [anon_sym_defer] = ACTIONS(3837), - [anon_sym_goto] = ACTIONS(3837), - [anon_sym_break] = ACTIONS(3837), - [anon_sym_continue] = ACTIONS(3837), - [anon_sym_return] = ACTIONS(3837), - [anon_sym_DOLLARfor] = ACTIONS(3837), - [anon_sym_for] = ACTIONS(3837), - [anon_sym_POUND] = ACTIONS(3837), - [anon_sym_asm] = ACTIONS(3837), - [anon_sym_AT_LBRACK] = ACTIONS(3837), - [sym___double_quote] = ACTIONS(3837), - [sym___single_quote] = ACTIONS(3837), - [sym___c_double_quote] = ACTIONS(3837), - [sym___c_single_quote] = ACTIONS(3837), - [sym___r_double_quote] = ACTIONS(3837), - [sym___r_single_quote] = ACTIONS(3837), - }, - [1451] = { - [ts_builtin_sym_end] = ACTIONS(2901), - [sym_identifier] = ACTIONS(2903), - [anon_sym_LF] = ACTIONS(2903), - [anon_sym_CR] = ACTIONS(2903), - [anon_sym_CR_LF] = ACTIONS(2903), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2903), - [anon_sym_LBRACE] = ACTIONS(2903), - [anon_sym_const] = ACTIONS(2903), - [anon_sym_LPAREN] = ACTIONS(2903), - [anon_sym___global] = ACTIONS(2903), - [anon_sym_type] = ACTIONS(2903), - [anon_sym_PIPE] = ACTIONS(2903), - [anon_sym_fn] = ACTIONS(2903), - [anon_sym_PLUS] = ACTIONS(2903), - [anon_sym_DASH] = ACTIONS(2903), - [anon_sym_STAR] = ACTIONS(2903), - [anon_sym_struct] = ACTIONS(2903), - [anon_sym_union] = ACTIONS(2903), - [anon_sym_pub] = ACTIONS(2903), - [anon_sym_mut] = ACTIONS(2903), - [anon_sym_enum] = ACTIONS(2903), - [anon_sym_interface] = ACTIONS(2903), - [anon_sym_QMARK] = ACTIONS(2903), - [anon_sym_BANG] = ACTIONS(2903), - [anon_sym_go] = ACTIONS(2903), - [anon_sym_spawn] = ACTIONS(2903), - [anon_sym_json_DOTdecode] = ACTIONS(2903), - [anon_sym_LBRACK2] = ACTIONS(2903), - [anon_sym_TILDE] = ACTIONS(2903), - [anon_sym_CARET] = ACTIONS(2903), - [anon_sym_AMP] = ACTIONS(2903), - [anon_sym_LT_DASH] = ACTIONS(2903), - [sym_none] = ACTIONS(2903), - [sym_true] = ACTIONS(2903), - [sym_false] = ACTIONS(2903), - [sym_nil] = ACTIONS(2903), - [anon_sym_if] = ACTIONS(2903), - [anon_sym_DOLLARif] = ACTIONS(2903), - [anon_sym_match] = ACTIONS(2903), - [anon_sym_select] = ACTIONS(2903), - [anon_sym_lock] = ACTIONS(2903), - [anon_sym_rlock] = ACTIONS(2903), - [anon_sym_unsafe] = ACTIONS(2903), - [anon_sym_sql] = ACTIONS(2903), - [sym_int_literal] = ACTIONS(2903), - [sym_float_literal] = ACTIONS(2903), - [sym_rune_literal] = ACTIONS(2903), - [anon_sym_AT] = ACTIONS(2903), - [anon_sym_shared] = ACTIONS(2903), - [anon_sym_map_LBRACK] = ACTIONS(2903), - [anon_sym_chan] = ACTIONS(2903), - [anon_sym_thread] = ACTIONS(2903), - [anon_sym_atomic] = ACTIONS(2903), - [anon_sym_assert] = ACTIONS(2903), - [anon_sym_defer] = ACTIONS(2903), - [anon_sym_goto] = ACTIONS(2903), - [anon_sym_break] = ACTIONS(2903), - [anon_sym_continue] = ACTIONS(2903), - [anon_sym_return] = ACTIONS(2903), - [anon_sym_DOLLARfor] = ACTIONS(2903), - [anon_sym_for] = ACTIONS(2903), - [anon_sym_POUND] = ACTIONS(2903), - [anon_sym_asm] = ACTIONS(2903), - [anon_sym_AT_LBRACK] = ACTIONS(2903), - [sym___double_quote] = ACTIONS(2903), - [sym___single_quote] = ACTIONS(2903), - [sym___c_double_quote] = ACTIONS(2903), - [sym___c_single_quote] = ACTIONS(2903), - [sym___r_double_quote] = ACTIONS(2903), - [sym___r_single_quote] = ACTIONS(2903), - }, - [1452] = { - [sym_block] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(3839), - [sym_identifier] = ACTIONS(3841), - [anon_sym_LF] = ACTIONS(3841), - [anon_sym_CR] = ACTIONS(3841), - [anon_sym_CR_LF] = ACTIONS(3841), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3841), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3841), - [anon_sym_LPAREN] = ACTIONS(3841), - [anon_sym___global] = ACTIONS(3841), - [anon_sym_type] = ACTIONS(3841), - [anon_sym_fn] = ACTIONS(3841), - [anon_sym_PLUS] = ACTIONS(3841), - [anon_sym_DASH] = ACTIONS(3841), - [anon_sym_STAR] = ACTIONS(3841), - [anon_sym_struct] = ACTIONS(3841), - [anon_sym_union] = ACTIONS(3841), - [anon_sym_pub] = ACTIONS(3841), - [anon_sym_mut] = ACTIONS(3841), - [anon_sym_enum] = ACTIONS(3841), - [anon_sym_interface] = ACTIONS(3841), - [anon_sym_QMARK] = ACTIONS(3841), - [anon_sym_BANG] = ACTIONS(3841), - [anon_sym_go] = ACTIONS(3841), - [anon_sym_spawn] = ACTIONS(3841), - [anon_sym_json_DOTdecode] = ACTIONS(3841), - [anon_sym_LBRACK2] = ACTIONS(3841), - [anon_sym_TILDE] = ACTIONS(3841), - [anon_sym_CARET] = ACTIONS(3841), - [anon_sym_AMP] = ACTIONS(3841), - [anon_sym_LT_DASH] = ACTIONS(3841), - [sym_none] = ACTIONS(3841), - [sym_true] = ACTIONS(3841), - [sym_false] = ACTIONS(3841), - [sym_nil] = ACTIONS(3841), - [anon_sym_if] = ACTIONS(3841), - [anon_sym_DOLLARif] = ACTIONS(3841), - [anon_sym_match] = ACTIONS(3841), - [anon_sym_select] = ACTIONS(3841), - [anon_sym_lock] = ACTIONS(3841), - [anon_sym_rlock] = ACTIONS(3841), - [anon_sym_unsafe] = ACTIONS(3841), - [anon_sym_sql] = ACTIONS(3841), - [sym_int_literal] = ACTIONS(3841), - [sym_float_literal] = ACTIONS(3841), - [sym_rune_literal] = ACTIONS(3841), - [anon_sym_AT] = ACTIONS(3841), - [anon_sym_shared] = ACTIONS(3841), - [anon_sym_map_LBRACK] = ACTIONS(3841), - [anon_sym_chan] = ACTIONS(3841), - [anon_sym_thread] = ACTIONS(3841), - [anon_sym_atomic] = ACTIONS(3841), - [anon_sym_assert] = ACTIONS(3841), - [anon_sym_defer] = ACTIONS(3841), - [anon_sym_goto] = ACTIONS(3841), - [anon_sym_break] = ACTIONS(3841), - [anon_sym_continue] = ACTIONS(3841), - [anon_sym_return] = ACTIONS(3841), - [anon_sym_DOLLARfor] = ACTIONS(3841), - [anon_sym_for] = ACTIONS(3841), - [anon_sym_POUND] = ACTIONS(3841), - [anon_sym_asm] = ACTIONS(3841), - [anon_sym_AT_LBRACK] = ACTIONS(3841), - [sym___double_quote] = ACTIONS(3841), - [sym___single_quote] = ACTIONS(3841), - [sym___c_double_quote] = ACTIONS(3841), - [sym___c_single_quote] = ACTIONS(3841), - [sym___r_double_quote] = ACTIONS(3841), - [sym___r_single_quote] = ACTIONS(3841), - }, - [1453] = { - [sym_block] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(3843), - [sym_identifier] = ACTIONS(3845), - [anon_sym_LF] = ACTIONS(3845), - [anon_sym_CR] = ACTIONS(3845), - [anon_sym_CR_LF] = ACTIONS(3845), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3845), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3845), - [anon_sym_LPAREN] = ACTIONS(3845), - [anon_sym___global] = ACTIONS(3845), - [anon_sym_type] = ACTIONS(3845), - [anon_sym_fn] = ACTIONS(3845), - [anon_sym_PLUS] = ACTIONS(3845), - [anon_sym_DASH] = ACTIONS(3845), - [anon_sym_STAR] = ACTIONS(3845), - [anon_sym_struct] = ACTIONS(3845), - [anon_sym_union] = ACTIONS(3845), - [anon_sym_pub] = ACTIONS(3845), - [anon_sym_mut] = ACTIONS(3845), - [anon_sym_enum] = ACTIONS(3845), - [anon_sym_interface] = ACTIONS(3845), - [anon_sym_QMARK] = ACTIONS(3845), - [anon_sym_BANG] = ACTIONS(3845), - [anon_sym_go] = ACTIONS(3845), - [anon_sym_spawn] = ACTIONS(3845), - [anon_sym_json_DOTdecode] = ACTIONS(3845), - [anon_sym_LBRACK2] = ACTIONS(3845), - [anon_sym_TILDE] = ACTIONS(3845), - [anon_sym_CARET] = ACTIONS(3845), - [anon_sym_AMP] = ACTIONS(3845), - [anon_sym_LT_DASH] = ACTIONS(3845), - [sym_none] = ACTIONS(3845), - [sym_true] = ACTIONS(3845), - [sym_false] = ACTIONS(3845), - [sym_nil] = ACTIONS(3845), - [anon_sym_if] = ACTIONS(3845), - [anon_sym_DOLLARif] = ACTIONS(3845), - [anon_sym_match] = ACTIONS(3845), - [anon_sym_select] = ACTIONS(3845), - [anon_sym_lock] = ACTIONS(3845), - [anon_sym_rlock] = ACTIONS(3845), - [anon_sym_unsafe] = ACTIONS(3845), - [anon_sym_sql] = ACTIONS(3845), - [sym_int_literal] = ACTIONS(3845), - [sym_float_literal] = ACTIONS(3845), - [sym_rune_literal] = ACTIONS(3845), - [anon_sym_AT] = ACTIONS(3845), - [anon_sym_shared] = ACTIONS(3845), - [anon_sym_map_LBRACK] = ACTIONS(3845), - [anon_sym_chan] = ACTIONS(3845), - [anon_sym_thread] = ACTIONS(3845), - [anon_sym_atomic] = ACTIONS(3845), - [anon_sym_assert] = ACTIONS(3845), - [anon_sym_defer] = ACTIONS(3845), - [anon_sym_goto] = ACTIONS(3845), - [anon_sym_break] = ACTIONS(3845), - [anon_sym_continue] = ACTIONS(3845), - [anon_sym_return] = ACTIONS(3845), - [anon_sym_DOLLARfor] = ACTIONS(3845), - [anon_sym_for] = ACTIONS(3845), - [anon_sym_POUND] = ACTIONS(3845), - [anon_sym_asm] = ACTIONS(3845), - [anon_sym_AT_LBRACK] = ACTIONS(3845), - [sym___double_quote] = ACTIONS(3845), - [sym___single_quote] = ACTIONS(3845), - [sym___c_double_quote] = ACTIONS(3845), - [sym___c_single_quote] = ACTIONS(3845), - [sym___r_double_quote] = ACTIONS(3845), - [sym___r_single_quote] = ACTIONS(3845), - }, - [1454] = { - [ts_builtin_sym_end] = ACTIONS(2937), - [sym_identifier] = ACTIONS(2939), - [anon_sym_LF] = ACTIONS(2939), - [anon_sym_CR] = ACTIONS(2939), - [anon_sym_CR_LF] = ACTIONS(2939), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2939), - [anon_sym_LBRACE] = ACTIONS(2939), - [anon_sym_const] = ACTIONS(2939), - [anon_sym_LPAREN] = ACTIONS(2939), - [anon_sym___global] = ACTIONS(2939), - [anon_sym_type] = ACTIONS(2939), - [anon_sym_PIPE] = ACTIONS(2939), - [anon_sym_fn] = ACTIONS(2939), - [anon_sym_PLUS] = ACTIONS(2939), - [anon_sym_DASH] = ACTIONS(2939), - [anon_sym_STAR] = ACTIONS(2939), - [anon_sym_struct] = ACTIONS(2939), - [anon_sym_union] = ACTIONS(2939), - [anon_sym_pub] = ACTIONS(2939), - [anon_sym_mut] = ACTIONS(2939), - [anon_sym_enum] = ACTIONS(2939), - [anon_sym_interface] = ACTIONS(2939), - [anon_sym_QMARK] = ACTIONS(2939), - [anon_sym_BANG] = ACTIONS(2939), - [anon_sym_go] = ACTIONS(2939), - [anon_sym_spawn] = ACTIONS(2939), - [anon_sym_json_DOTdecode] = ACTIONS(2939), - [anon_sym_LBRACK2] = ACTIONS(2939), - [anon_sym_TILDE] = ACTIONS(2939), - [anon_sym_CARET] = ACTIONS(2939), - [anon_sym_AMP] = ACTIONS(2939), - [anon_sym_LT_DASH] = ACTIONS(2939), - [sym_none] = ACTIONS(2939), - [sym_true] = ACTIONS(2939), - [sym_false] = ACTIONS(2939), - [sym_nil] = ACTIONS(2939), - [anon_sym_if] = ACTIONS(2939), - [anon_sym_DOLLARif] = ACTIONS(2939), - [anon_sym_match] = ACTIONS(2939), - [anon_sym_select] = ACTIONS(2939), - [anon_sym_lock] = ACTIONS(2939), - [anon_sym_rlock] = ACTIONS(2939), - [anon_sym_unsafe] = ACTIONS(2939), - [anon_sym_sql] = ACTIONS(2939), - [sym_int_literal] = ACTIONS(2939), - [sym_float_literal] = ACTIONS(2939), - [sym_rune_literal] = ACTIONS(2939), - [anon_sym_AT] = ACTIONS(2939), - [anon_sym_shared] = ACTIONS(2939), - [anon_sym_map_LBRACK] = ACTIONS(2939), - [anon_sym_chan] = ACTIONS(2939), - [anon_sym_thread] = ACTIONS(2939), - [anon_sym_atomic] = ACTIONS(2939), - [anon_sym_assert] = ACTIONS(2939), - [anon_sym_defer] = ACTIONS(2939), - [anon_sym_goto] = ACTIONS(2939), - [anon_sym_break] = ACTIONS(2939), - [anon_sym_continue] = ACTIONS(2939), - [anon_sym_return] = ACTIONS(2939), - [anon_sym_DOLLARfor] = ACTIONS(2939), - [anon_sym_for] = ACTIONS(2939), - [anon_sym_POUND] = ACTIONS(2939), - [anon_sym_asm] = ACTIONS(2939), - [anon_sym_AT_LBRACK] = ACTIONS(2939), - [sym___double_quote] = ACTIONS(2939), - [sym___single_quote] = ACTIONS(2939), - [sym___c_double_quote] = ACTIONS(2939), - [sym___c_single_quote] = ACTIONS(2939), - [sym___r_double_quote] = ACTIONS(2939), - [sym___r_single_quote] = ACTIONS(2939), - }, - [1455] = { - [sym_label_reference] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(3847), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LF] = ACTIONS(3851), - [anon_sym_CR] = ACTIONS(3851), - [anon_sym_CR_LF] = ACTIONS(3851), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3851), - [anon_sym_LBRACE] = ACTIONS(3851), - [anon_sym_const] = ACTIONS(3851), - [anon_sym_LPAREN] = ACTIONS(3851), - [anon_sym___global] = ACTIONS(3851), - [anon_sym_type] = ACTIONS(3851), - [anon_sym_fn] = ACTIONS(3851), - [anon_sym_PLUS] = ACTIONS(3851), - [anon_sym_DASH] = ACTIONS(3851), - [anon_sym_STAR] = ACTIONS(3851), - [anon_sym_struct] = ACTIONS(3851), - [anon_sym_union] = ACTIONS(3851), - [anon_sym_pub] = ACTIONS(3851), - [anon_sym_mut] = ACTIONS(3851), - [anon_sym_enum] = ACTIONS(3851), - [anon_sym_interface] = ACTIONS(3851), - [anon_sym_QMARK] = ACTIONS(3851), - [anon_sym_BANG] = ACTIONS(3851), - [anon_sym_go] = ACTIONS(3851), - [anon_sym_spawn] = ACTIONS(3851), - [anon_sym_json_DOTdecode] = ACTIONS(3851), - [anon_sym_LBRACK2] = ACTIONS(3851), - [anon_sym_TILDE] = ACTIONS(3851), - [anon_sym_CARET] = ACTIONS(3851), - [anon_sym_AMP] = ACTIONS(3851), - [anon_sym_LT_DASH] = ACTIONS(3851), - [sym_none] = ACTIONS(3851), - [sym_true] = ACTIONS(3851), - [sym_false] = ACTIONS(3851), - [sym_nil] = ACTIONS(3851), - [anon_sym_if] = ACTIONS(3851), - [anon_sym_DOLLARif] = ACTIONS(3851), - [anon_sym_match] = ACTIONS(3851), - [anon_sym_select] = ACTIONS(3851), - [anon_sym_lock] = ACTIONS(3851), - [anon_sym_rlock] = ACTIONS(3851), - [anon_sym_unsafe] = ACTIONS(3851), - [anon_sym_sql] = ACTIONS(3851), - [sym_int_literal] = ACTIONS(3851), - [sym_float_literal] = ACTIONS(3851), - [sym_rune_literal] = ACTIONS(3851), - [anon_sym_AT] = ACTIONS(3851), - [anon_sym_shared] = ACTIONS(3851), - [anon_sym_map_LBRACK] = ACTIONS(3851), - [anon_sym_chan] = ACTIONS(3851), - [anon_sym_thread] = ACTIONS(3851), - [anon_sym_atomic] = ACTIONS(3851), - [anon_sym_assert] = ACTIONS(3851), - [anon_sym_defer] = ACTIONS(3851), - [anon_sym_goto] = ACTIONS(3851), - [anon_sym_break] = ACTIONS(3851), - [anon_sym_continue] = ACTIONS(3851), - [anon_sym_return] = ACTIONS(3851), - [anon_sym_DOLLARfor] = ACTIONS(3851), - [anon_sym_for] = ACTIONS(3851), - [anon_sym_POUND] = ACTIONS(3851), - [anon_sym_asm] = ACTIONS(3851), - [anon_sym_AT_LBRACK] = ACTIONS(3851), - [sym___double_quote] = ACTIONS(3851), - [sym___single_quote] = ACTIONS(3851), - [sym___c_double_quote] = ACTIONS(3851), - [sym___c_single_quote] = ACTIONS(3851), - [sym___r_double_quote] = ACTIONS(3851), - [sym___r_single_quote] = ACTIONS(3851), - }, - [1456] = { - [sym_label_reference] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3853), - [sym_identifier] = ACTIONS(3849), - [anon_sym_LF] = ACTIONS(3855), - [anon_sym_CR] = ACTIONS(3855), - [anon_sym_CR_LF] = ACTIONS(3855), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3855), - [anon_sym_LBRACE] = ACTIONS(3855), - [anon_sym_const] = ACTIONS(3855), - [anon_sym_LPAREN] = ACTIONS(3855), - [anon_sym___global] = ACTIONS(3855), - [anon_sym_type] = ACTIONS(3855), - [anon_sym_fn] = ACTIONS(3855), - [anon_sym_PLUS] = ACTIONS(3855), - [anon_sym_DASH] = ACTIONS(3855), - [anon_sym_STAR] = ACTIONS(3855), - [anon_sym_struct] = ACTIONS(3855), - [anon_sym_union] = ACTIONS(3855), - [anon_sym_pub] = ACTIONS(3855), - [anon_sym_mut] = ACTIONS(3855), - [anon_sym_enum] = ACTIONS(3855), - [anon_sym_interface] = ACTIONS(3855), - [anon_sym_QMARK] = ACTIONS(3855), - [anon_sym_BANG] = ACTIONS(3855), - [anon_sym_go] = ACTIONS(3855), - [anon_sym_spawn] = ACTIONS(3855), - [anon_sym_json_DOTdecode] = ACTIONS(3855), - [anon_sym_LBRACK2] = ACTIONS(3855), - [anon_sym_TILDE] = ACTIONS(3855), - [anon_sym_CARET] = ACTIONS(3855), - [anon_sym_AMP] = ACTIONS(3855), - [anon_sym_LT_DASH] = ACTIONS(3855), - [sym_none] = ACTIONS(3855), - [sym_true] = ACTIONS(3855), - [sym_false] = ACTIONS(3855), - [sym_nil] = ACTIONS(3855), - [anon_sym_if] = ACTIONS(3855), - [anon_sym_DOLLARif] = ACTIONS(3855), - [anon_sym_match] = ACTIONS(3855), - [anon_sym_select] = ACTIONS(3855), - [anon_sym_lock] = ACTIONS(3855), - [anon_sym_rlock] = ACTIONS(3855), - [anon_sym_unsafe] = ACTIONS(3855), - [anon_sym_sql] = ACTIONS(3855), - [sym_int_literal] = ACTIONS(3855), - [sym_float_literal] = ACTIONS(3855), - [sym_rune_literal] = ACTIONS(3855), - [anon_sym_AT] = ACTIONS(3855), - [anon_sym_shared] = ACTIONS(3855), - [anon_sym_map_LBRACK] = ACTIONS(3855), - [anon_sym_chan] = ACTIONS(3855), - [anon_sym_thread] = ACTIONS(3855), - [anon_sym_atomic] = ACTIONS(3855), - [anon_sym_assert] = ACTIONS(3855), - [anon_sym_defer] = ACTIONS(3855), - [anon_sym_goto] = ACTIONS(3855), - [anon_sym_break] = ACTIONS(3855), - [anon_sym_continue] = ACTIONS(3855), - [anon_sym_return] = ACTIONS(3855), - [anon_sym_DOLLARfor] = ACTIONS(3855), - [anon_sym_for] = ACTIONS(3855), - [anon_sym_POUND] = ACTIONS(3855), - [anon_sym_asm] = ACTIONS(3855), - [anon_sym_AT_LBRACK] = ACTIONS(3855), - [sym___double_quote] = ACTIONS(3855), - [sym___single_quote] = ACTIONS(3855), - [sym___c_double_quote] = ACTIONS(3855), - [sym___c_single_quote] = ACTIONS(3855), - [sym___r_double_quote] = ACTIONS(3855), - [sym___r_single_quote] = ACTIONS(3855), - }, - [1457] = { - [ts_builtin_sym_end] = ACTIONS(3111), - [sym_identifier] = ACTIONS(3113), - [anon_sym_LF] = ACTIONS(3113), - [anon_sym_CR] = ACTIONS(3113), - [anon_sym_CR_LF] = ACTIONS(3113), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3113), - [anon_sym_LBRACE] = ACTIONS(3113), - [anon_sym_const] = ACTIONS(3113), - [anon_sym_LPAREN] = ACTIONS(3113), - [anon_sym___global] = ACTIONS(3113), - [anon_sym_type] = ACTIONS(3113), - [anon_sym_PIPE] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3113), - [anon_sym_PLUS] = ACTIONS(3113), - [anon_sym_DASH] = ACTIONS(3113), - [anon_sym_STAR] = ACTIONS(3113), - [anon_sym_struct] = ACTIONS(3113), - [anon_sym_union] = ACTIONS(3113), - [anon_sym_pub] = ACTIONS(3113), - [anon_sym_mut] = ACTIONS(3113), - [anon_sym_enum] = ACTIONS(3113), - [anon_sym_interface] = ACTIONS(3113), - [anon_sym_QMARK] = ACTIONS(3113), - [anon_sym_BANG] = ACTIONS(3113), - [anon_sym_go] = ACTIONS(3113), - [anon_sym_spawn] = ACTIONS(3113), - [anon_sym_json_DOTdecode] = ACTIONS(3113), - [anon_sym_LBRACK2] = ACTIONS(3113), - [anon_sym_TILDE] = ACTIONS(3113), - [anon_sym_CARET] = ACTIONS(3113), - [anon_sym_AMP] = ACTIONS(3113), - [anon_sym_LT_DASH] = ACTIONS(3113), - [sym_none] = ACTIONS(3113), - [sym_true] = ACTIONS(3113), - [sym_false] = ACTIONS(3113), - [sym_nil] = ACTIONS(3113), - [anon_sym_if] = ACTIONS(3113), - [anon_sym_DOLLARif] = ACTIONS(3113), - [anon_sym_match] = ACTIONS(3113), - [anon_sym_select] = ACTIONS(3113), - [anon_sym_lock] = ACTIONS(3113), - [anon_sym_rlock] = ACTIONS(3113), - [anon_sym_unsafe] = ACTIONS(3113), - [anon_sym_sql] = ACTIONS(3113), - [sym_int_literal] = ACTIONS(3113), - [sym_float_literal] = ACTIONS(3113), - [sym_rune_literal] = ACTIONS(3113), - [anon_sym_AT] = ACTIONS(3113), - [anon_sym_shared] = ACTIONS(3113), - [anon_sym_map_LBRACK] = ACTIONS(3113), - [anon_sym_chan] = ACTIONS(3113), - [anon_sym_thread] = ACTIONS(3113), - [anon_sym_atomic] = ACTIONS(3113), - [anon_sym_assert] = ACTIONS(3113), - [anon_sym_defer] = ACTIONS(3113), - [anon_sym_goto] = ACTIONS(3113), - [anon_sym_break] = ACTIONS(3113), - [anon_sym_continue] = ACTIONS(3113), - [anon_sym_return] = ACTIONS(3113), - [anon_sym_DOLLARfor] = ACTIONS(3113), - [anon_sym_for] = ACTIONS(3113), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_asm] = ACTIONS(3113), - [anon_sym_AT_LBRACK] = ACTIONS(3113), - [sym___double_quote] = ACTIONS(3113), - [sym___single_quote] = ACTIONS(3113), - [sym___c_double_quote] = ACTIONS(3113), - [sym___c_single_quote] = ACTIONS(3113), - [sym___r_double_quote] = ACTIONS(3113), - [sym___r_single_quote] = ACTIONS(3113), - }, - [1458] = { - [ts_builtin_sym_end] = ACTIONS(3107), - [sym_identifier] = ACTIONS(3109), - [anon_sym_LF] = ACTIONS(3109), - [anon_sym_CR] = ACTIONS(3109), - [anon_sym_CR_LF] = ACTIONS(3109), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3109), - [anon_sym_LBRACE] = ACTIONS(3109), - [anon_sym_const] = ACTIONS(3109), - [anon_sym_LPAREN] = ACTIONS(3109), - [anon_sym___global] = ACTIONS(3109), - [anon_sym_type] = ACTIONS(3109), - [anon_sym_PIPE] = ACTIONS(3109), - [anon_sym_fn] = ACTIONS(3109), - [anon_sym_PLUS] = ACTIONS(3109), - [anon_sym_DASH] = ACTIONS(3109), - [anon_sym_STAR] = ACTIONS(3109), - [anon_sym_struct] = ACTIONS(3109), - [anon_sym_union] = ACTIONS(3109), - [anon_sym_pub] = ACTIONS(3109), - [anon_sym_mut] = ACTIONS(3109), - [anon_sym_enum] = ACTIONS(3109), - [anon_sym_interface] = ACTIONS(3109), - [anon_sym_QMARK] = ACTIONS(3109), - [anon_sym_BANG] = ACTIONS(3109), - [anon_sym_go] = ACTIONS(3109), - [anon_sym_spawn] = ACTIONS(3109), - [anon_sym_json_DOTdecode] = ACTIONS(3109), - [anon_sym_LBRACK2] = ACTIONS(3109), - [anon_sym_TILDE] = ACTIONS(3109), - [anon_sym_CARET] = ACTIONS(3109), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT_DASH] = ACTIONS(3109), - [sym_none] = ACTIONS(3109), - [sym_true] = ACTIONS(3109), - [sym_false] = ACTIONS(3109), - [sym_nil] = ACTIONS(3109), - [anon_sym_if] = ACTIONS(3109), - [anon_sym_DOLLARif] = ACTIONS(3109), - [anon_sym_match] = ACTIONS(3109), - [anon_sym_select] = ACTIONS(3109), - [anon_sym_lock] = ACTIONS(3109), - [anon_sym_rlock] = ACTIONS(3109), - [anon_sym_unsafe] = ACTIONS(3109), - [anon_sym_sql] = ACTIONS(3109), - [sym_int_literal] = ACTIONS(3109), - [sym_float_literal] = ACTIONS(3109), - [sym_rune_literal] = ACTIONS(3109), - [anon_sym_AT] = ACTIONS(3109), - [anon_sym_shared] = ACTIONS(3109), - [anon_sym_map_LBRACK] = ACTIONS(3109), - [anon_sym_chan] = ACTIONS(3109), - [anon_sym_thread] = ACTIONS(3109), - [anon_sym_atomic] = ACTIONS(3109), - [anon_sym_assert] = ACTIONS(3109), - [anon_sym_defer] = ACTIONS(3109), - [anon_sym_goto] = ACTIONS(3109), - [anon_sym_break] = ACTIONS(3109), - [anon_sym_continue] = ACTIONS(3109), - [anon_sym_return] = ACTIONS(3109), - [anon_sym_DOLLARfor] = ACTIONS(3109), - [anon_sym_for] = ACTIONS(3109), - [anon_sym_POUND] = ACTIONS(3109), - [anon_sym_asm] = ACTIONS(3109), - [anon_sym_AT_LBRACK] = ACTIONS(3109), - [sym___double_quote] = ACTIONS(3109), - [sym___single_quote] = ACTIONS(3109), - [sym___c_double_quote] = ACTIONS(3109), - [sym___c_single_quote] = ACTIONS(3109), - [sym___r_double_quote] = ACTIONS(3109), - [sym___r_single_quote] = ACTIONS(3109), - }, - [1459] = { - [sym_block] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(3857), - [sym_identifier] = ACTIONS(3859), - [anon_sym_LF] = ACTIONS(3859), - [anon_sym_CR] = ACTIONS(3859), - [anon_sym_CR_LF] = ACTIONS(3859), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3859), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3859), - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym___global] = ACTIONS(3859), - [anon_sym_type] = ACTIONS(3859), - [anon_sym_fn] = ACTIONS(3859), - [anon_sym_PLUS] = ACTIONS(3859), - [anon_sym_DASH] = ACTIONS(3859), - [anon_sym_STAR] = ACTIONS(3859), - [anon_sym_struct] = ACTIONS(3859), - [anon_sym_union] = ACTIONS(3859), - [anon_sym_pub] = ACTIONS(3859), - [anon_sym_mut] = ACTIONS(3859), - [anon_sym_enum] = ACTIONS(3859), - [anon_sym_interface] = ACTIONS(3859), - [anon_sym_QMARK] = ACTIONS(3859), - [anon_sym_BANG] = ACTIONS(3859), - [anon_sym_go] = ACTIONS(3859), - [anon_sym_spawn] = ACTIONS(3859), - [anon_sym_json_DOTdecode] = ACTIONS(3859), - [anon_sym_LBRACK2] = ACTIONS(3859), - [anon_sym_TILDE] = ACTIONS(3859), - [anon_sym_CARET] = ACTIONS(3859), - [anon_sym_AMP] = ACTIONS(3859), - [anon_sym_LT_DASH] = ACTIONS(3859), - [sym_none] = ACTIONS(3859), - [sym_true] = ACTIONS(3859), - [sym_false] = ACTIONS(3859), - [sym_nil] = ACTIONS(3859), - [anon_sym_if] = ACTIONS(3859), - [anon_sym_DOLLARif] = ACTIONS(3859), - [anon_sym_match] = ACTIONS(3859), - [anon_sym_select] = ACTIONS(3859), - [anon_sym_lock] = ACTIONS(3859), - [anon_sym_rlock] = ACTIONS(3859), - [anon_sym_unsafe] = ACTIONS(3859), - [anon_sym_sql] = ACTIONS(3859), - [sym_int_literal] = ACTIONS(3859), - [sym_float_literal] = ACTIONS(3859), - [sym_rune_literal] = ACTIONS(3859), - [anon_sym_AT] = ACTIONS(3859), - [anon_sym_shared] = ACTIONS(3859), - [anon_sym_map_LBRACK] = ACTIONS(3859), - [anon_sym_chan] = ACTIONS(3859), - [anon_sym_thread] = ACTIONS(3859), - [anon_sym_atomic] = ACTIONS(3859), - [anon_sym_assert] = ACTIONS(3859), - [anon_sym_defer] = ACTIONS(3859), - [anon_sym_goto] = ACTIONS(3859), - [anon_sym_break] = ACTIONS(3859), - [anon_sym_continue] = ACTIONS(3859), - [anon_sym_return] = ACTIONS(3859), - [anon_sym_DOLLARfor] = ACTIONS(3859), - [anon_sym_for] = ACTIONS(3859), - [anon_sym_POUND] = ACTIONS(3859), - [anon_sym_asm] = ACTIONS(3859), - [anon_sym_AT_LBRACK] = ACTIONS(3859), - [sym___double_quote] = ACTIONS(3859), - [sym___single_quote] = ACTIONS(3859), - [sym___c_double_quote] = ACTIONS(3859), - [sym___c_single_quote] = ACTIONS(3859), - [sym___r_double_quote] = ACTIONS(3859), - [sym___r_single_quote] = ACTIONS(3859), - }, - [1460] = { - [sym_block] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(3861), - [sym_identifier] = ACTIONS(3863), - [anon_sym_LF] = ACTIONS(3863), - [anon_sym_CR] = ACTIONS(3863), - [anon_sym_CR_LF] = ACTIONS(3863), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3863), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3863), - [anon_sym_LPAREN] = ACTIONS(3863), - [anon_sym___global] = ACTIONS(3863), - [anon_sym_type] = ACTIONS(3863), - [anon_sym_fn] = ACTIONS(3863), - [anon_sym_PLUS] = ACTIONS(3863), - [anon_sym_DASH] = ACTIONS(3863), - [anon_sym_STAR] = ACTIONS(3863), - [anon_sym_struct] = ACTIONS(3863), - [anon_sym_union] = ACTIONS(3863), - [anon_sym_pub] = ACTIONS(3863), - [anon_sym_mut] = ACTIONS(3863), - [anon_sym_enum] = ACTIONS(3863), - [anon_sym_interface] = ACTIONS(3863), - [anon_sym_QMARK] = ACTIONS(3863), - [anon_sym_BANG] = ACTIONS(3863), - [anon_sym_go] = ACTIONS(3863), - [anon_sym_spawn] = ACTIONS(3863), - [anon_sym_json_DOTdecode] = ACTIONS(3863), - [anon_sym_LBRACK2] = ACTIONS(3863), - [anon_sym_TILDE] = ACTIONS(3863), - [anon_sym_CARET] = ACTIONS(3863), - [anon_sym_AMP] = ACTIONS(3863), - [anon_sym_LT_DASH] = ACTIONS(3863), - [sym_none] = ACTIONS(3863), - [sym_true] = ACTIONS(3863), - [sym_false] = ACTIONS(3863), - [sym_nil] = ACTIONS(3863), - [anon_sym_if] = ACTIONS(3863), - [anon_sym_DOLLARif] = ACTIONS(3863), - [anon_sym_match] = ACTIONS(3863), - [anon_sym_select] = ACTIONS(3863), - [anon_sym_lock] = ACTIONS(3863), - [anon_sym_rlock] = ACTIONS(3863), - [anon_sym_unsafe] = ACTIONS(3863), - [anon_sym_sql] = ACTIONS(3863), - [sym_int_literal] = ACTIONS(3863), - [sym_float_literal] = ACTIONS(3863), - [sym_rune_literal] = ACTIONS(3863), - [anon_sym_AT] = ACTIONS(3863), - [anon_sym_shared] = ACTIONS(3863), - [anon_sym_map_LBRACK] = ACTIONS(3863), - [anon_sym_chan] = ACTIONS(3863), - [anon_sym_thread] = ACTIONS(3863), - [anon_sym_atomic] = ACTIONS(3863), - [anon_sym_assert] = ACTIONS(3863), - [anon_sym_defer] = ACTIONS(3863), - [anon_sym_goto] = ACTIONS(3863), - [anon_sym_break] = ACTIONS(3863), - [anon_sym_continue] = ACTIONS(3863), - [anon_sym_return] = ACTIONS(3863), - [anon_sym_DOLLARfor] = ACTIONS(3863), - [anon_sym_for] = ACTIONS(3863), - [anon_sym_POUND] = ACTIONS(3863), - [anon_sym_asm] = ACTIONS(3863), - [anon_sym_AT_LBRACK] = ACTIONS(3863), - [sym___double_quote] = ACTIONS(3863), - [sym___single_quote] = ACTIONS(3863), - [sym___c_double_quote] = ACTIONS(3863), - [sym___c_single_quote] = ACTIONS(3863), - [sym___r_double_quote] = ACTIONS(3863), - [sym___r_single_quote] = ACTIONS(3863), - }, - [1461] = { - [sym_block] = STATE(1550), - [ts_builtin_sym_end] = ACTIONS(3865), - [sym_identifier] = ACTIONS(3867), - [anon_sym_LF] = ACTIONS(3867), - [anon_sym_CR] = ACTIONS(3867), - [anon_sym_CR_LF] = ACTIONS(3867), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3867), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3867), - [anon_sym_LPAREN] = ACTIONS(3867), - [anon_sym___global] = ACTIONS(3867), - [anon_sym_type] = ACTIONS(3867), - [anon_sym_fn] = ACTIONS(3867), - [anon_sym_PLUS] = ACTIONS(3867), - [anon_sym_DASH] = ACTIONS(3867), - [anon_sym_STAR] = ACTIONS(3867), - [anon_sym_struct] = ACTIONS(3867), - [anon_sym_union] = ACTIONS(3867), - [anon_sym_pub] = ACTIONS(3867), - [anon_sym_mut] = ACTIONS(3867), - [anon_sym_enum] = ACTIONS(3867), - [anon_sym_interface] = ACTIONS(3867), - [anon_sym_QMARK] = ACTIONS(3867), - [anon_sym_BANG] = ACTIONS(3867), - [anon_sym_go] = ACTIONS(3867), - [anon_sym_spawn] = ACTIONS(3867), - [anon_sym_json_DOTdecode] = ACTIONS(3867), - [anon_sym_LBRACK2] = ACTIONS(3867), - [anon_sym_TILDE] = ACTIONS(3867), - [anon_sym_CARET] = ACTIONS(3867), - [anon_sym_AMP] = ACTIONS(3867), - [anon_sym_LT_DASH] = ACTIONS(3867), - [sym_none] = ACTIONS(3867), - [sym_true] = ACTIONS(3867), - [sym_false] = ACTIONS(3867), - [sym_nil] = ACTIONS(3867), - [anon_sym_if] = ACTIONS(3867), - [anon_sym_DOLLARif] = ACTIONS(3867), - [anon_sym_match] = ACTIONS(3867), - [anon_sym_select] = ACTIONS(3867), - [anon_sym_lock] = ACTIONS(3867), - [anon_sym_rlock] = ACTIONS(3867), - [anon_sym_unsafe] = ACTIONS(3867), - [anon_sym_sql] = ACTIONS(3867), - [sym_int_literal] = ACTIONS(3867), - [sym_float_literal] = ACTIONS(3867), - [sym_rune_literal] = ACTIONS(3867), - [anon_sym_AT] = ACTIONS(3867), - [anon_sym_shared] = ACTIONS(3867), - [anon_sym_map_LBRACK] = ACTIONS(3867), - [anon_sym_chan] = ACTIONS(3867), - [anon_sym_thread] = ACTIONS(3867), - [anon_sym_atomic] = ACTIONS(3867), - [anon_sym_assert] = ACTIONS(3867), - [anon_sym_defer] = ACTIONS(3867), - [anon_sym_goto] = ACTIONS(3867), - [anon_sym_break] = ACTIONS(3867), - [anon_sym_continue] = ACTIONS(3867), - [anon_sym_return] = ACTIONS(3867), - [anon_sym_DOLLARfor] = ACTIONS(3867), - [anon_sym_for] = ACTIONS(3867), - [anon_sym_POUND] = ACTIONS(3867), - [anon_sym_asm] = ACTIONS(3867), - [anon_sym_AT_LBRACK] = ACTIONS(3867), - [sym___double_quote] = ACTIONS(3867), - [sym___single_quote] = ACTIONS(3867), - [sym___c_double_quote] = ACTIONS(3867), - [sym___c_single_quote] = ACTIONS(3867), - [sym___r_double_quote] = ACTIONS(3867), - [sym___r_single_quote] = ACTIONS(3867), - }, - [1462] = { - [sym_block] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(3869), - [sym_identifier] = ACTIONS(3871), - [anon_sym_LF] = ACTIONS(3871), - [anon_sym_CR] = ACTIONS(3871), - [anon_sym_CR_LF] = ACTIONS(3871), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3871), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3871), - [anon_sym_LPAREN] = ACTIONS(3871), - [anon_sym___global] = ACTIONS(3871), - [anon_sym_type] = ACTIONS(3871), - [anon_sym_fn] = ACTIONS(3871), - [anon_sym_PLUS] = ACTIONS(3871), - [anon_sym_DASH] = ACTIONS(3871), - [anon_sym_STAR] = ACTIONS(3871), - [anon_sym_struct] = ACTIONS(3871), - [anon_sym_union] = ACTIONS(3871), - [anon_sym_pub] = ACTIONS(3871), - [anon_sym_mut] = ACTIONS(3871), - [anon_sym_enum] = ACTIONS(3871), - [anon_sym_interface] = ACTIONS(3871), - [anon_sym_QMARK] = ACTIONS(3871), - [anon_sym_BANG] = ACTIONS(3871), - [anon_sym_go] = ACTIONS(3871), - [anon_sym_spawn] = ACTIONS(3871), - [anon_sym_json_DOTdecode] = ACTIONS(3871), - [anon_sym_LBRACK2] = ACTIONS(3871), - [anon_sym_TILDE] = ACTIONS(3871), - [anon_sym_CARET] = ACTIONS(3871), - [anon_sym_AMP] = ACTIONS(3871), - [anon_sym_LT_DASH] = ACTIONS(3871), - [sym_none] = ACTIONS(3871), - [sym_true] = ACTIONS(3871), - [sym_false] = ACTIONS(3871), - [sym_nil] = ACTIONS(3871), - [anon_sym_if] = ACTIONS(3871), - [anon_sym_DOLLARif] = ACTIONS(3871), - [anon_sym_match] = ACTIONS(3871), - [anon_sym_select] = ACTIONS(3871), - [anon_sym_lock] = ACTIONS(3871), - [anon_sym_rlock] = ACTIONS(3871), - [anon_sym_unsafe] = ACTIONS(3871), - [anon_sym_sql] = ACTIONS(3871), - [sym_int_literal] = ACTIONS(3871), - [sym_float_literal] = ACTIONS(3871), - [sym_rune_literal] = ACTIONS(3871), - [anon_sym_AT] = ACTIONS(3871), - [anon_sym_shared] = ACTIONS(3871), - [anon_sym_map_LBRACK] = ACTIONS(3871), - [anon_sym_chan] = ACTIONS(3871), - [anon_sym_thread] = ACTIONS(3871), - [anon_sym_atomic] = ACTIONS(3871), - [anon_sym_assert] = ACTIONS(3871), - [anon_sym_defer] = ACTIONS(3871), - [anon_sym_goto] = ACTIONS(3871), - [anon_sym_break] = ACTIONS(3871), - [anon_sym_continue] = ACTIONS(3871), - [anon_sym_return] = ACTIONS(3871), - [anon_sym_DOLLARfor] = ACTIONS(3871), - [anon_sym_for] = ACTIONS(3871), - [anon_sym_POUND] = ACTIONS(3871), - [anon_sym_asm] = ACTIONS(3871), - [anon_sym_AT_LBRACK] = ACTIONS(3871), - [sym___double_quote] = ACTIONS(3871), - [sym___single_quote] = ACTIONS(3871), - [sym___c_double_quote] = ACTIONS(3871), - [sym___c_single_quote] = ACTIONS(3871), - [sym___r_double_quote] = ACTIONS(3871), - [sym___r_single_quote] = ACTIONS(3871), - }, - [1463] = { - [ts_builtin_sym_end] = ACTIONS(3103), - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_LBRACE] = ACTIONS(3105), - [anon_sym_const] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym___global] = ACTIONS(3105), - [anon_sym_type] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_union] = ACTIONS(3105), - [anon_sym_pub] = ACTIONS(3105), - [anon_sym_mut] = ACTIONS(3105), - [anon_sym_enum] = ACTIONS(3105), - [anon_sym_interface] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_go] = ACTIONS(3105), - [anon_sym_spawn] = ACTIONS(3105), - [anon_sym_json_DOTdecode] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_TILDE] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [sym_none] = ACTIONS(3105), - [sym_true] = ACTIONS(3105), - [sym_false] = ACTIONS(3105), - [sym_nil] = ACTIONS(3105), - [anon_sym_if] = ACTIONS(3105), - [anon_sym_DOLLARif] = ACTIONS(3105), - [anon_sym_match] = ACTIONS(3105), - [anon_sym_select] = ACTIONS(3105), - [anon_sym_lock] = ACTIONS(3105), - [anon_sym_rlock] = ACTIONS(3105), - [anon_sym_unsafe] = ACTIONS(3105), - [anon_sym_sql] = ACTIONS(3105), - [sym_int_literal] = ACTIONS(3105), - [sym_float_literal] = ACTIONS(3105), - [sym_rune_literal] = ACTIONS(3105), - [anon_sym_AT] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - [anon_sym_assert] = ACTIONS(3105), - [anon_sym_defer] = ACTIONS(3105), - [anon_sym_goto] = ACTIONS(3105), - [anon_sym_break] = ACTIONS(3105), - [anon_sym_continue] = ACTIONS(3105), - [anon_sym_return] = ACTIONS(3105), - [anon_sym_DOLLARfor] = ACTIONS(3105), - [anon_sym_for] = ACTIONS(3105), - [anon_sym_POUND] = ACTIONS(3105), - [anon_sym_asm] = ACTIONS(3105), - [anon_sym_AT_LBRACK] = ACTIONS(3105), - [sym___double_quote] = ACTIONS(3105), - [sym___single_quote] = ACTIONS(3105), - [sym___c_double_quote] = ACTIONS(3105), - [sym___c_single_quote] = ACTIONS(3105), - [sym___r_double_quote] = ACTIONS(3105), - [sym___r_single_quote] = ACTIONS(3105), - }, - [1464] = { - [ts_builtin_sym_end] = ACTIONS(3099), - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_LBRACE] = ACTIONS(3101), - [anon_sym_const] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym___global] = ACTIONS(3101), - [anon_sym_type] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_union] = ACTIONS(3101), - [anon_sym_pub] = ACTIONS(3101), - [anon_sym_mut] = ACTIONS(3101), - [anon_sym_enum] = ACTIONS(3101), - [anon_sym_interface] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_go] = ACTIONS(3101), - [anon_sym_spawn] = ACTIONS(3101), - [anon_sym_json_DOTdecode] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_TILDE] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [sym_none] = ACTIONS(3101), - [sym_true] = ACTIONS(3101), - [sym_false] = ACTIONS(3101), - [sym_nil] = ACTIONS(3101), - [anon_sym_if] = ACTIONS(3101), - [anon_sym_DOLLARif] = ACTIONS(3101), - [anon_sym_match] = ACTIONS(3101), - [anon_sym_select] = ACTIONS(3101), - [anon_sym_lock] = ACTIONS(3101), - [anon_sym_rlock] = ACTIONS(3101), - [anon_sym_unsafe] = ACTIONS(3101), - [anon_sym_sql] = ACTIONS(3101), - [sym_int_literal] = ACTIONS(3101), - [sym_float_literal] = ACTIONS(3101), - [sym_rune_literal] = ACTIONS(3101), - [anon_sym_AT] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - [anon_sym_assert] = ACTIONS(3101), - [anon_sym_defer] = ACTIONS(3101), - [anon_sym_goto] = ACTIONS(3101), - [anon_sym_break] = ACTIONS(3101), - [anon_sym_continue] = ACTIONS(3101), - [anon_sym_return] = ACTIONS(3101), - [anon_sym_DOLLARfor] = ACTIONS(3101), - [anon_sym_for] = ACTIONS(3101), - [anon_sym_POUND] = ACTIONS(3101), - [anon_sym_asm] = ACTIONS(3101), - [anon_sym_AT_LBRACK] = ACTIONS(3101), - [sym___double_quote] = ACTIONS(3101), - [sym___single_quote] = ACTIONS(3101), - [sym___c_double_quote] = ACTIONS(3101), - [sym___c_single_quote] = ACTIONS(3101), - [sym___r_double_quote] = ACTIONS(3101), - [sym___r_single_quote] = ACTIONS(3101), - }, - [1465] = { - [ts_builtin_sym_end] = ACTIONS(2987), - [sym_identifier] = ACTIONS(2989), - [anon_sym_LF] = ACTIONS(2989), - [anon_sym_CR] = ACTIONS(2989), - [anon_sym_CR_LF] = ACTIONS(2989), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2989), - [anon_sym_LBRACE] = ACTIONS(2989), - [anon_sym_const] = ACTIONS(2989), - [anon_sym_LPAREN] = ACTIONS(2989), - [anon_sym___global] = ACTIONS(2989), - [anon_sym_type] = ACTIONS(2989), - [anon_sym_PIPE] = ACTIONS(2989), - [anon_sym_fn] = ACTIONS(2989), - [anon_sym_PLUS] = ACTIONS(2989), - [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2989), - [anon_sym_struct] = ACTIONS(2989), - [anon_sym_union] = ACTIONS(2989), - [anon_sym_pub] = ACTIONS(2989), - [anon_sym_mut] = ACTIONS(2989), - [anon_sym_enum] = ACTIONS(2989), - [anon_sym_interface] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(2989), - [anon_sym_BANG] = ACTIONS(2989), - [anon_sym_go] = ACTIONS(2989), - [anon_sym_spawn] = ACTIONS(2989), - [anon_sym_json_DOTdecode] = ACTIONS(2989), - [anon_sym_LBRACK2] = ACTIONS(2989), - [anon_sym_TILDE] = ACTIONS(2989), - [anon_sym_CARET] = ACTIONS(2989), - [anon_sym_AMP] = ACTIONS(2989), - [anon_sym_LT_DASH] = ACTIONS(2989), - [sym_none] = ACTIONS(2989), - [sym_true] = ACTIONS(2989), - [sym_false] = ACTIONS(2989), - [sym_nil] = ACTIONS(2989), - [anon_sym_if] = ACTIONS(2989), - [anon_sym_DOLLARif] = ACTIONS(2989), - [anon_sym_match] = ACTIONS(2989), - [anon_sym_select] = ACTIONS(2989), - [anon_sym_lock] = ACTIONS(2989), - [anon_sym_rlock] = ACTIONS(2989), - [anon_sym_unsafe] = ACTIONS(2989), - [anon_sym_sql] = ACTIONS(2989), - [sym_int_literal] = ACTIONS(2989), - [sym_float_literal] = ACTIONS(2989), - [sym_rune_literal] = ACTIONS(2989), - [anon_sym_AT] = ACTIONS(2989), - [anon_sym_shared] = ACTIONS(2989), - [anon_sym_map_LBRACK] = ACTIONS(2989), - [anon_sym_chan] = ACTIONS(2989), - [anon_sym_thread] = ACTIONS(2989), - [anon_sym_atomic] = ACTIONS(2989), - [anon_sym_assert] = ACTIONS(2989), - [anon_sym_defer] = ACTIONS(2989), - [anon_sym_goto] = ACTIONS(2989), - [anon_sym_break] = ACTIONS(2989), - [anon_sym_continue] = ACTIONS(2989), - [anon_sym_return] = ACTIONS(2989), - [anon_sym_DOLLARfor] = ACTIONS(2989), - [anon_sym_for] = ACTIONS(2989), - [anon_sym_POUND] = ACTIONS(2989), - [anon_sym_asm] = ACTIONS(2989), - [anon_sym_AT_LBRACK] = ACTIONS(2989), - [sym___double_quote] = ACTIONS(2989), - [sym___single_quote] = ACTIONS(2989), - [sym___c_double_quote] = ACTIONS(2989), - [sym___c_single_quote] = ACTIONS(2989), - [sym___r_double_quote] = ACTIONS(2989), - [sym___r_single_quote] = ACTIONS(2989), - }, - [1466] = { - [ts_builtin_sym_end] = ACTIONS(3095), - [sym_identifier] = ACTIONS(3097), - [anon_sym_LF] = ACTIONS(3097), - [anon_sym_CR] = ACTIONS(3097), - [anon_sym_CR_LF] = ACTIONS(3097), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3097), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_const] = ACTIONS(3097), - [anon_sym_LPAREN] = ACTIONS(3097), - [anon_sym___global] = ACTIONS(3097), - [anon_sym_type] = ACTIONS(3097), - [anon_sym_PIPE] = ACTIONS(3097), - [anon_sym_fn] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3097), - [anon_sym_DASH] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3097), - [anon_sym_struct] = ACTIONS(3097), - [anon_sym_union] = ACTIONS(3097), - [anon_sym_pub] = ACTIONS(3097), - [anon_sym_mut] = ACTIONS(3097), - [anon_sym_enum] = ACTIONS(3097), - [anon_sym_interface] = ACTIONS(3097), - [anon_sym_QMARK] = ACTIONS(3097), - [anon_sym_BANG] = ACTIONS(3097), - [anon_sym_go] = ACTIONS(3097), - [anon_sym_spawn] = ACTIONS(3097), - [anon_sym_json_DOTdecode] = ACTIONS(3097), - [anon_sym_LBRACK2] = ACTIONS(3097), - [anon_sym_TILDE] = ACTIONS(3097), - [anon_sym_CARET] = ACTIONS(3097), - [anon_sym_AMP] = ACTIONS(3097), - [anon_sym_LT_DASH] = ACTIONS(3097), - [sym_none] = ACTIONS(3097), - [sym_true] = ACTIONS(3097), - [sym_false] = ACTIONS(3097), - [sym_nil] = ACTIONS(3097), - [anon_sym_if] = ACTIONS(3097), - [anon_sym_DOLLARif] = ACTIONS(3097), - [anon_sym_match] = ACTIONS(3097), - [anon_sym_select] = ACTIONS(3097), - [anon_sym_lock] = ACTIONS(3097), - [anon_sym_rlock] = ACTIONS(3097), - [anon_sym_unsafe] = ACTIONS(3097), - [anon_sym_sql] = ACTIONS(3097), - [sym_int_literal] = ACTIONS(3097), - [sym_float_literal] = ACTIONS(3097), - [sym_rune_literal] = ACTIONS(3097), - [anon_sym_AT] = ACTIONS(3097), - [anon_sym_shared] = ACTIONS(3097), - [anon_sym_map_LBRACK] = ACTIONS(3097), - [anon_sym_chan] = ACTIONS(3097), - [anon_sym_thread] = ACTIONS(3097), - [anon_sym_atomic] = ACTIONS(3097), - [anon_sym_assert] = ACTIONS(3097), - [anon_sym_defer] = ACTIONS(3097), - [anon_sym_goto] = ACTIONS(3097), - [anon_sym_break] = ACTIONS(3097), - [anon_sym_continue] = ACTIONS(3097), - [anon_sym_return] = ACTIONS(3097), - [anon_sym_DOLLARfor] = ACTIONS(3097), - [anon_sym_for] = ACTIONS(3097), - [anon_sym_POUND] = ACTIONS(3097), - [anon_sym_asm] = ACTIONS(3097), - [anon_sym_AT_LBRACK] = ACTIONS(3097), - [sym___double_quote] = ACTIONS(3097), - [sym___single_quote] = ACTIONS(3097), - [sym___c_double_quote] = ACTIONS(3097), - [sym___c_single_quote] = ACTIONS(3097), - [sym___r_double_quote] = ACTIONS(3097), - [sym___r_single_quote] = ACTIONS(3097), - }, - [1467] = { - [ts_builtin_sym_end] = ACTIONS(2933), - [sym_identifier] = ACTIONS(2935), - [anon_sym_LF] = ACTIONS(2935), - [anon_sym_CR] = ACTIONS(2935), - [anon_sym_CR_LF] = ACTIONS(2935), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2935), - [anon_sym_LBRACE] = ACTIONS(2935), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_LPAREN] = ACTIONS(2935), - [anon_sym___global] = ACTIONS(2935), - [anon_sym_type] = ACTIONS(2935), - [anon_sym_PIPE] = ACTIONS(2935), - [anon_sym_fn] = ACTIONS(2935), - [anon_sym_PLUS] = ACTIONS(2935), - [anon_sym_DASH] = ACTIONS(2935), - [anon_sym_STAR] = ACTIONS(2935), - [anon_sym_struct] = ACTIONS(2935), - [anon_sym_union] = ACTIONS(2935), - [anon_sym_pub] = ACTIONS(2935), - [anon_sym_mut] = ACTIONS(2935), - [anon_sym_enum] = ACTIONS(2935), - [anon_sym_interface] = ACTIONS(2935), - [anon_sym_QMARK] = ACTIONS(2935), - [anon_sym_BANG] = ACTIONS(2935), - [anon_sym_go] = ACTIONS(2935), - [anon_sym_spawn] = ACTIONS(2935), - [anon_sym_json_DOTdecode] = ACTIONS(2935), - [anon_sym_LBRACK2] = ACTIONS(2935), - [anon_sym_TILDE] = ACTIONS(2935), - [anon_sym_CARET] = ACTIONS(2935), - [anon_sym_AMP] = ACTIONS(2935), - [anon_sym_LT_DASH] = ACTIONS(2935), - [sym_none] = ACTIONS(2935), - [sym_true] = ACTIONS(2935), - [sym_false] = ACTIONS(2935), - [sym_nil] = ACTIONS(2935), - [anon_sym_if] = ACTIONS(2935), - [anon_sym_DOLLARif] = ACTIONS(2935), - [anon_sym_match] = ACTIONS(2935), - [anon_sym_select] = ACTIONS(2935), - [anon_sym_lock] = ACTIONS(2935), - [anon_sym_rlock] = ACTIONS(2935), - [anon_sym_unsafe] = ACTIONS(2935), - [anon_sym_sql] = ACTIONS(2935), - [sym_int_literal] = ACTIONS(2935), - [sym_float_literal] = ACTIONS(2935), - [sym_rune_literal] = ACTIONS(2935), - [anon_sym_AT] = ACTIONS(2935), - [anon_sym_shared] = ACTIONS(2935), - [anon_sym_map_LBRACK] = ACTIONS(2935), - [anon_sym_chan] = ACTIONS(2935), - [anon_sym_thread] = ACTIONS(2935), - [anon_sym_atomic] = ACTIONS(2935), - [anon_sym_assert] = ACTIONS(2935), - [anon_sym_defer] = ACTIONS(2935), - [anon_sym_goto] = ACTIONS(2935), - [anon_sym_break] = ACTIONS(2935), - [anon_sym_continue] = ACTIONS(2935), - [anon_sym_return] = ACTIONS(2935), - [anon_sym_DOLLARfor] = ACTIONS(2935), - [anon_sym_for] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(2935), - [anon_sym_asm] = ACTIONS(2935), - [anon_sym_AT_LBRACK] = ACTIONS(2935), - [sym___double_quote] = ACTIONS(2935), - [sym___single_quote] = ACTIONS(2935), - [sym___c_double_quote] = ACTIONS(2935), - [sym___c_single_quote] = ACTIONS(2935), - [sym___r_double_quote] = ACTIONS(2935), - [sym___r_single_quote] = ACTIONS(2935), - }, - [1468] = { - [sym_block] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(3873), - [sym_identifier] = ACTIONS(3875), - [anon_sym_LF] = ACTIONS(3875), - [anon_sym_CR] = ACTIONS(3875), - [anon_sym_CR_LF] = ACTIONS(3875), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3875), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3875), - [anon_sym_LPAREN] = ACTIONS(3875), - [anon_sym___global] = ACTIONS(3875), - [anon_sym_type] = ACTIONS(3875), - [anon_sym_fn] = ACTIONS(3875), - [anon_sym_PLUS] = ACTIONS(3875), - [anon_sym_DASH] = ACTIONS(3875), - [anon_sym_STAR] = ACTIONS(3875), - [anon_sym_struct] = ACTIONS(3875), - [anon_sym_union] = ACTIONS(3875), - [anon_sym_pub] = ACTIONS(3875), - [anon_sym_mut] = ACTIONS(3875), - [anon_sym_enum] = ACTIONS(3875), - [anon_sym_interface] = ACTIONS(3875), - [anon_sym_QMARK] = ACTIONS(3875), - [anon_sym_BANG] = ACTIONS(3875), - [anon_sym_go] = ACTIONS(3875), - [anon_sym_spawn] = ACTIONS(3875), - [anon_sym_json_DOTdecode] = ACTIONS(3875), - [anon_sym_LBRACK2] = ACTIONS(3875), - [anon_sym_TILDE] = ACTIONS(3875), - [anon_sym_CARET] = ACTIONS(3875), - [anon_sym_AMP] = ACTIONS(3875), - [anon_sym_LT_DASH] = ACTIONS(3875), - [sym_none] = ACTIONS(3875), - [sym_true] = ACTIONS(3875), - [sym_false] = ACTIONS(3875), - [sym_nil] = ACTIONS(3875), - [anon_sym_if] = ACTIONS(3875), - [anon_sym_DOLLARif] = ACTIONS(3875), - [anon_sym_match] = ACTIONS(3875), - [anon_sym_select] = ACTIONS(3875), - [anon_sym_lock] = ACTIONS(3875), - [anon_sym_rlock] = ACTIONS(3875), - [anon_sym_unsafe] = ACTIONS(3875), - [anon_sym_sql] = ACTIONS(3875), - [sym_int_literal] = ACTIONS(3875), - [sym_float_literal] = ACTIONS(3875), - [sym_rune_literal] = ACTIONS(3875), - [anon_sym_AT] = ACTIONS(3875), - [anon_sym_shared] = ACTIONS(3875), - [anon_sym_map_LBRACK] = ACTIONS(3875), - [anon_sym_chan] = ACTIONS(3875), - [anon_sym_thread] = ACTIONS(3875), - [anon_sym_atomic] = ACTIONS(3875), - [anon_sym_assert] = ACTIONS(3875), - [anon_sym_defer] = ACTIONS(3875), - [anon_sym_goto] = ACTIONS(3875), - [anon_sym_break] = ACTIONS(3875), - [anon_sym_continue] = ACTIONS(3875), - [anon_sym_return] = ACTIONS(3875), - [anon_sym_DOLLARfor] = ACTIONS(3875), - [anon_sym_for] = ACTIONS(3875), - [anon_sym_POUND] = ACTIONS(3875), - [anon_sym_asm] = ACTIONS(3875), - [anon_sym_AT_LBRACK] = ACTIONS(3875), - [sym___double_quote] = ACTIONS(3875), - [sym___single_quote] = ACTIONS(3875), - [sym___c_double_quote] = ACTIONS(3875), - [sym___c_single_quote] = ACTIONS(3875), - [sym___r_double_quote] = ACTIONS(3875), - [sym___r_single_quote] = ACTIONS(3875), - }, - [1469] = { - [ts_builtin_sym_end] = ACTIONS(3758), - [sym_identifier] = ACTIONS(3760), - [anon_sym_LF] = ACTIONS(3760), - [anon_sym_CR] = ACTIONS(3760), - [anon_sym_CR_LF] = ACTIONS(3760), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3760), - [anon_sym_LBRACE] = ACTIONS(3760), - [anon_sym_const] = ACTIONS(3760), - [anon_sym_LPAREN] = ACTIONS(3760), - [anon_sym___global] = ACTIONS(3760), - [anon_sym_type] = ACTIONS(3760), - [anon_sym_PIPE] = ACTIONS(3760), - [anon_sym_fn] = ACTIONS(3760), - [anon_sym_PLUS] = ACTIONS(3760), - [anon_sym_DASH] = ACTIONS(3760), - [anon_sym_STAR] = ACTIONS(3760), - [anon_sym_struct] = ACTIONS(3760), - [anon_sym_union] = ACTIONS(3760), - [anon_sym_pub] = ACTIONS(3760), - [anon_sym_mut] = ACTIONS(3760), - [anon_sym_enum] = ACTIONS(3760), - [anon_sym_interface] = ACTIONS(3760), - [anon_sym_QMARK] = ACTIONS(3760), - [anon_sym_BANG] = ACTIONS(3760), - [anon_sym_go] = ACTIONS(3760), - [anon_sym_spawn] = ACTIONS(3760), - [anon_sym_json_DOTdecode] = ACTIONS(3760), - [anon_sym_LBRACK2] = ACTIONS(3760), - [anon_sym_TILDE] = ACTIONS(3760), - [anon_sym_CARET] = ACTIONS(3760), - [anon_sym_AMP] = ACTIONS(3760), - [anon_sym_LT_DASH] = ACTIONS(3760), - [sym_none] = ACTIONS(3760), - [sym_true] = ACTIONS(3760), - [sym_false] = ACTIONS(3760), - [sym_nil] = ACTIONS(3760), - [anon_sym_if] = ACTIONS(3760), - [anon_sym_DOLLARif] = ACTIONS(3760), - [anon_sym_match] = ACTIONS(3760), - [anon_sym_select] = ACTIONS(3760), - [anon_sym_lock] = ACTIONS(3760), - [anon_sym_rlock] = ACTIONS(3760), - [anon_sym_unsafe] = ACTIONS(3760), - [anon_sym_sql] = ACTIONS(3760), - [sym_int_literal] = ACTIONS(3760), - [sym_float_literal] = ACTIONS(3760), - [sym_rune_literal] = ACTIONS(3760), - [anon_sym_AT] = ACTIONS(3760), - [anon_sym_shared] = ACTIONS(3760), - [anon_sym_map_LBRACK] = ACTIONS(3760), - [anon_sym_chan] = ACTIONS(3760), - [anon_sym_thread] = ACTIONS(3760), - [anon_sym_atomic] = ACTIONS(3760), - [anon_sym_assert] = ACTIONS(3760), - [anon_sym_defer] = ACTIONS(3760), - [anon_sym_goto] = ACTIONS(3760), - [anon_sym_break] = ACTIONS(3760), - [anon_sym_continue] = ACTIONS(3760), - [anon_sym_return] = ACTIONS(3760), - [anon_sym_DOLLARfor] = ACTIONS(3760), - [anon_sym_for] = ACTIONS(3760), - [anon_sym_POUND] = ACTIONS(3760), - [anon_sym_asm] = ACTIONS(3760), - [anon_sym_AT_LBRACK] = ACTIONS(3760), - [sym___double_quote] = ACTIONS(3760), - [sym___single_quote] = ACTIONS(3760), - [sym___c_double_quote] = ACTIONS(3760), - [sym___c_single_quote] = ACTIONS(3760), - [sym___r_double_quote] = ACTIONS(3760), - [sym___r_single_quote] = ACTIONS(3760), - }, - [1470] = { - [ts_builtin_sym_end] = ACTIONS(2854), - [sym_identifier] = ACTIONS(2856), - [anon_sym_LF] = ACTIONS(2856), - [anon_sym_CR] = ACTIONS(2856), - [anon_sym_CR_LF] = ACTIONS(2856), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2856), - [anon_sym_LBRACE] = ACTIONS(2856), - [anon_sym_const] = ACTIONS(2856), - [anon_sym_LPAREN] = ACTIONS(2856), - [anon_sym___global] = ACTIONS(2856), - [anon_sym_type] = ACTIONS(2856), - [anon_sym_PIPE] = ACTIONS(2856), - [anon_sym_fn] = ACTIONS(2856), - [anon_sym_PLUS] = ACTIONS(2856), - [anon_sym_DASH] = ACTIONS(2856), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_struct] = ACTIONS(2856), - [anon_sym_union] = ACTIONS(2856), - [anon_sym_pub] = ACTIONS(2856), - [anon_sym_mut] = ACTIONS(2856), - [anon_sym_enum] = ACTIONS(2856), - [anon_sym_interface] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), - [anon_sym_BANG] = ACTIONS(2856), - [anon_sym_go] = ACTIONS(2856), - [anon_sym_spawn] = ACTIONS(2856), - [anon_sym_json_DOTdecode] = ACTIONS(2856), - [anon_sym_LBRACK2] = ACTIONS(2856), - [anon_sym_TILDE] = ACTIONS(2856), - [anon_sym_CARET] = ACTIONS(2856), - [anon_sym_AMP] = ACTIONS(2856), - [anon_sym_LT_DASH] = ACTIONS(2856), - [sym_none] = ACTIONS(2856), - [sym_true] = ACTIONS(2856), - [sym_false] = ACTIONS(2856), - [sym_nil] = ACTIONS(2856), - [anon_sym_if] = ACTIONS(2856), - [anon_sym_DOLLARif] = ACTIONS(2856), - [anon_sym_match] = ACTIONS(2856), - [anon_sym_select] = ACTIONS(2856), - [anon_sym_lock] = ACTIONS(2856), - [anon_sym_rlock] = ACTIONS(2856), - [anon_sym_unsafe] = ACTIONS(2856), - [anon_sym_sql] = ACTIONS(2856), - [sym_int_literal] = ACTIONS(2856), - [sym_float_literal] = ACTIONS(2856), - [sym_rune_literal] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_shared] = ACTIONS(2856), - [anon_sym_map_LBRACK] = ACTIONS(2856), - [anon_sym_chan] = ACTIONS(2856), - [anon_sym_thread] = ACTIONS(2856), - [anon_sym_atomic] = ACTIONS(2856), - [anon_sym_assert] = ACTIONS(2856), - [anon_sym_defer] = ACTIONS(2856), - [anon_sym_goto] = ACTIONS(2856), - [anon_sym_break] = ACTIONS(2856), - [anon_sym_continue] = ACTIONS(2856), - [anon_sym_return] = ACTIONS(2856), - [anon_sym_DOLLARfor] = ACTIONS(2856), - [anon_sym_for] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2856), - [anon_sym_asm] = ACTIONS(2856), - [anon_sym_AT_LBRACK] = ACTIONS(2856), - [sym___double_quote] = ACTIONS(2856), - [sym___single_quote] = ACTIONS(2856), - [sym___c_double_quote] = ACTIONS(2856), - [sym___c_single_quote] = ACTIONS(2856), - [sym___r_double_quote] = ACTIONS(2856), - [sym___r_single_quote] = ACTIONS(2856), - }, - [1471] = { - [sym_block] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(3877), - [sym_identifier] = ACTIONS(3879), - [anon_sym_LF] = ACTIONS(3879), - [anon_sym_CR] = ACTIONS(3879), - [anon_sym_CR_LF] = ACTIONS(3879), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3879), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3879), - [anon_sym_LPAREN] = ACTIONS(3879), - [anon_sym___global] = ACTIONS(3879), - [anon_sym_type] = ACTIONS(3879), - [anon_sym_fn] = ACTIONS(3879), - [anon_sym_PLUS] = ACTIONS(3879), - [anon_sym_DASH] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3879), - [anon_sym_struct] = ACTIONS(3879), - [anon_sym_union] = ACTIONS(3879), - [anon_sym_pub] = ACTIONS(3879), - [anon_sym_mut] = ACTIONS(3879), - [anon_sym_enum] = ACTIONS(3879), - [anon_sym_interface] = ACTIONS(3879), - [anon_sym_QMARK] = ACTIONS(3879), - [anon_sym_BANG] = ACTIONS(3879), - [anon_sym_go] = ACTIONS(3879), - [anon_sym_spawn] = ACTIONS(3879), - [anon_sym_json_DOTdecode] = ACTIONS(3879), - [anon_sym_LBRACK2] = ACTIONS(3879), - [anon_sym_TILDE] = ACTIONS(3879), - [anon_sym_CARET] = ACTIONS(3879), - [anon_sym_AMP] = ACTIONS(3879), - [anon_sym_LT_DASH] = ACTIONS(3879), - [sym_none] = ACTIONS(3879), - [sym_true] = ACTIONS(3879), - [sym_false] = ACTIONS(3879), - [sym_nil] = ACTIONS(3879), - [anon_sym_if] = ACTIONS(3879), - [anon_sym_DOLLARif] = ACTIONS(3879), - [anon_sym_match] = ACTIONS(3879), - [anon_sym_select] = ACTIONS(3879), - [anon_sym_lock] = ACTIONS(3879), - [anon_sym_rlock] = ACTIONS(3879), - [anon_sym_unsafe] = ACTIONS(3879), - [anon_sym_sql] = ACTIONS(3879), - [sym_int_literal] = ACTIONS(3879), - [sym_float_literal] = ACTIONS(3879), - [sym_rune_literal] = ACTIONS(3879), - [anon_sym_AT] = ACTIONS(3879), - [anon_sym_shared] = ACTIONS(3879), - [anon_sym_map_LBRACK] = ACTIONS(3879), - [anon_sym_chan] = ACTIONS(3879), - [anon_sym_thread] = ACTIONS(3879), - [anon_sym_atomic] = ACTIONS(3879), - [anon_sym_assert] = ACTIONS(3879), - [anon_sym_defer] = ACTIONS(3879), - [anon_sym_goto] = ACTIONS(3879), - [anon_sym_break] = ACTIONS(3879), - [anon_sym_continue] = ACTIONS(3879), - [anon_sym_return] = ACTIONS(3879), - [anon_sym_DOLLARfor] = ACTIONS(3879), - [anon_sym_for] = ACTIONS(3879), - [anon_sym_POUND] = ACTIONS(3879), - [anon_sym_asm] = ACTIONS(3879), - [anon_sym_AT_LBRACK] = ACTIONS(3879), - [sym___double_quote] = ACTIONS(3879), - [sym___single_quote] = ACTIONS(3879), - [sym___c_double_quote] = ACTIONS(3879), - [sym___c_single_quote] = ACTIONS(3879), - [sym___r_double_quote] = ACTIONS(3879), - [sym___r_single_quote] = ACTIONS(3879), - }, - [1472] = { - [ts_builtin_sym_end] = ACTIONS(3007), - [sym_identifier] = ACTIONS(3009), - [anon_sym_LF] = ACTIONS(3009), - [anon_sym_CR] = ACTIONS(3009), - [anon_sym_CR_LF] = ACTIONS(3009), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(3009), - [anon_sym_const] = ACTIONS(3009), - [anon_sym_LPAREN] = ACTIONS(3009), - [anon_sym___global] = ACTIONS(3009), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_PIPE] = ACTIONS(3009), - [anon_sym_fn] = ACTIONS(3009), - [anon_sym_PLUS] = ACTIONS(3009), - [anon_sym_DASH] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(3009), - [anon_sym_struct] = ACTIONS(3009), - [anon_sym_union] = ACTIONS(3009), - [anon_sym_pub] = ACTIONS(3009), - [anon_sym_mut] = ACTIONS(3009), - [anon_sym_enum] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(3009), - [anon_sym_QMARK] = ACTIONS(3009), - [anon_sym_BANG] = ACTIONS(3009), - [anon_sym_go] = ACTIONS(3009), - [anon_sym_spawn] = ACTIONS(3009), - [anon_sym_json_DOTdecode] = ACTIONS(3009), - [anon_sym_LBRACK2] = ACTIONS(3009), - [anon_sym_TILDE] = ACTIONS(3009), - [anon_sym_CARET] = ACTIONS(3009), - [anon_sym_AMP] = ACTIONS(3009), - [anon_sym_LT_DASH] = ACTIONS(3009), - [sym_none] = ACTIONS(3009), - [sym_true] = ACTIONS(3009), - [sym_false] = ACTIONS(3009), - [sym_nil] = ACTIONS(3009), - [anon_sym_if] = ACTIONS(3009), - [anon_sym_DOLLARif] = ACTIONS(3009), - [anon_sym_match] = ACTIONS(3009), - [anon_sym_select] = ACTIONS(3009), - [anon_sym_lock] = ACTIONS(3009), - [anon_sym_rlock] = ACTIONS(3009), - [anon_sym_unsafe] = ACTIONS(3009), - [anon_sym_sql] = ACTIONS(3009), - [sym_int_literal] = ACTIONS(3009), - [sym_float_literal] = ACTIONS(3009), - [sym_rune_literal] = ACTIONS(3009), - [anon_sym_AT] = ACTIONS(3009), - [anon_sym_shared] = ACTIONS(3009), - [anon_sym_map_LBRACK] = ACTIONS(3009), - [anon_sym_chan] = ACTIONS(3009), - [anon_sym_thread] = ACTIONS(3009), - [anon_sym_atomic] = ACTIONS(3009), - [anon_sym_assert] = ACTIONS(3009), - [anon_sym_defer] = ACTIONS(3009), - [anon_sym_goto] = ACTIONS(3009), - [anon_sym_break] = ACTIONS(3009), - [anon_sym_continue] = ACTIONS(3009), - [anon_sym_return] = ACTIONS(3009), - [anon_sym_DOLLARfor] = ACTIONS(3009), - [anon_sym_for] = ACTIONS(3009), - [anon_sym_POUND] = ACTIONS(3009), - [anon_sym_asm] = ACTIONS(3009), - [anon_sym_AT_LBRACK] = ACTIONS(3009), - [sym___double_quote] = ACTIONS(3009), - [sym___single_quote] = ACTIONS(3009), - [sym___c_double_quote] = ACTIONS(3009), - [sym___c_single_quote] = ACTIONS(3009), - [sym___r_double_quote] = ACTIONS(3009), - [sym___r_single_quote] = ACTIONS(3009), - }, - [1473] = { - [sym_block] = STATE(1513), - [ts_builtin_sym_end] = ACTIONS(3881), - [sym_identifier] = ACTIONS(3883), - [anon_sym_LF] = ACTIONS(3883), - [anon_sym_CR] = ACTIONS(3883), - [anon_sym_CR_LF] = ACTIONS(3883), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3883), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3883), - [anon_sym_LPAREN] = ACTIONS(3883), - [anon_sym___global] = ACTIONS(3883), - [anon_sym_type] = ACTIONS(3883), - [anon_sym_fn] = ACTIONS(3883), - [anon_sym_PLUS] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_STAR] = ACTIONS(3883), - [anon_sym_struct] = ACTIONS(3883), - [anon_sym_union] = ACTIONS(3883), - [anon_sym_pub] = ACTIONS(3883), - [anon_sym_mut] = ACTIONS(3883), - [anon_sym_enum] = ACTIONS(3883), - [anon_sym_interface] = ACTIONS(3883), - [anon_sym_QMARK] = ACTIONS(3883), - [anon_sym_BANG] = ACTIONS(3883), - [anon_sym_go] = ACTIONS(3883), - [anon_sym_spawn] = ACTIONS(3883), - [anon_sym_json_DOTdecode] = ACTIONS(3883), - [anon_sym_LBRACK2] = ACTIONS(3883), - [anon_sym_TILDE] = ACTIONS(3883), - [anon_sym_CARET] = ACTIONS(3883), - [anon_sym_AMP] = ACTIONS(3883), - [anon_sym_LT_DASH] = ACTIONS(3883), - [sym_none] = ACTIONS(3883), - [sym_true] = ACTIONS(3883), - [sym_false] = ACTIONS(3883), - [sym_nil] = ACTIONS(3883), - [anon_sym_if] = ACTIONS(3883), - [anon_sym_DOLLARif] = ACTIONS(3883), - [anon_sym_match] = ACTIONS(3883), - [anon_sym_select] = ACTIONS(3883), - [anon_sym_lock] = ACTIONS(3883), - [anon_sym_rlock] = ACTIONS(3883), - [anon_sym_unsafe] = ACTIONS(3883), - [anon_sym_sql] = ACTIONS(3883), - [sym_int_literal] = ACTIONS(3883), - [sym_float_literal] = ACTIONS(3883), - [sym_rune_literal] = ACTIONS(3883), - [anon_sym_AT] = ACTIONS(3883), - [anon_sym_shared] = ACTIONS(3883), - [anon_sym_map_LBRACK] = ACTIONS(3883), - [anon_sym_chan] = ACTIONS(3883), - [anon_sym_thread] = ACTIONS(3883), - [anon_sym_atomic] = ACTIONS(3883), - [anon_sym_assert] = ACTIONS(3883), - [anon_sym_defer] = ACTIONS(3883), - [anon_sym_goto] = ACTIONS(3883), - [anon_sym_break] = ACTIONS(3883), - [anon_sym_continue] = ACTIONS(3883), - [anon_sym_return] = ACTIONS(3883), - [anon_sym_DOLLARfor] = ACTIONS(3883), - [anon_sym_for] = ACTIONS(3883), - [anon_sym_POUND] = ACTIONS(3883), - [anon_sym_asm] = ACTIONS(3883), - [anon_sym_AT_LBRACK] = ACTIONS(3883), - [sym___double_quote] = ACTIONS(3883), - [sym___single_quote] = ACTIONS(3883), - [sym___c_double_quote] = ACTIONS(3883), - [sym___c_single_quote] = ACTIONS(3883), - [sym___r_double_quote] = ACTIONS(3883), - [sym___r_single_quote] = ACTIONS(3883), - }, - [1474] = { - [ts_builtin_sym_end] = ACTIONS(2842), - [sym_identifier] = ACTIONS(2844), - [anon_sym_LF] = ACTIONS(2844), - [anon_sym_CR] = ACTIONS(2844), - [anon_sym_CR_LF] = ACTIONS(2844), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2844), - [anon_sym_LBRACE] = ACTIONS(2844), - [anon_sym_const] = ACTIONS(2844), - [anon_sym_LPAREN] = ACTIONS(2844), - [anon_sym___global] = ACTIONS(2844), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_PIPE] = ACTIONS(2844), - [anon_sym_fn] = ACTIONS(2844), - [anon_sym_PLUS] = ACTIONS(2844), - [anon_sym_DASH] = ACTIONS(2844), - [anon_sym_STAR] = ACTIONS(2844), - [anon_sym_struct] = ACTIONS(2844), - [anon_sym_union] = ACTIONS(2844), - [anon_sym_pub] = ACTIONS(2844), - [anon_sym_mut] = ACTIONS(2844), - [anon_sym_enum] = ACTIONS(2844), - [anon_sym_interface] = ACTIONS(2844), - [anon_sym_QMARK] = ACTIONS(2844), - [anon_sym_BANG] = ACTIONS(2844), - [anon_sym_go] = ACTIONS(2844), - [anon_sym_spawn] = ACTIONS(2844), - [anon_sym_json_DOTdecode] = ACTIONS(2844), - [anon_sym_LBRACK2] = ACTIONS(2844), - [anon_sym_TILDE] = ACTIONS(2844), - [anon_sym_CARET] = ACTIONS(2844), - [anon_sym_AMP] = ACTIONS(2844), - [anon_sym_LT_DASH] = ACTIONS(2844), - [sym_none] = ACTIONS(2844), - [sym_true] = ACTIONS(2844), - [sym_false] = ACTIONS(2844), - [sym_nil] = ACTIONS(2844), - [anon_sym_if] = ACTIONS(2844), - [anon_sym_DOLLARif] = ACTIONS(2844), - [anon_sym_match] = ACTIONS(2844), - [anon_sym_select] = ACTIONS(2844), - [anon_sym_lock] = ACTIONS(2844), - [anon_sym_rlock] = ACTIONS(2844), - [anon_sym_unsafe] = ACTIONS(2844), - [anon_sym_sql] = ACTIONS(2844), - [sym_int_literal] = ACTIONS(2844), - [sym_float_literal] = ACTIONS(2844), - [sym_rune_literal] = ACTIONS(2844), - [anon_sym_AT] = ACTIONS(2844), - [anon_sym_shared] = ACTIONS(2844), - [anon_sym_map_LBRACK] = ACTIONS(2844), - [anon_sym_chan] = ACTIONS(2844), - [anon_sym_thread] = ACTIONS(2844), - [anon_sym_atomic] = ACTIONS(2844), - [anon_sym_assert] = ACTIONS(2844), - [anon_sym_defer] = ACTIONS(2844), - [anon_sym_goto] = ACTIONS(2844), - [anon_sym_break] = ACTIONS(2844), - [anon_sym_continue] = ACTIONS(2844), - [anon_sym_return] = ACTIONS(2844), - [anon_sym_DOLLARfor] = ACTIONS(2844), - [anon_sym_for] = ACTIONS(2844), - [anon_sym_POUND] = ACTIONS(2844), - [anon_sym_asm] = ACTIONS(2844), - [anon_sym_AT_LBRACK] = ACTIONS(2844), - [sym___double_quote] = ACTIONS(2844), - [sym___single_quote] = ACTIONS(2844), - [sym___c_double_quote] = ACTIONS(2844), - [sym___c_single_quote] = ACTIONS(2844), - [sym___r_double_quote] = ACTIONS(2844), - [sym___r_single_quote] = ACTIONS(2844), - }, - [1475] = { - [ts_builtin_sym_end] = ACTIONS(3135), - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_LBRACE] = ACTIONS(3137), - [anon_sym_const] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym___global] = ACTIONS(3137), - [anon_sym_type] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_union] = ACTIONS(3137), - [anon_sym_pub] = ACTIONS(3137), - [anon_sym_mut] = ACTIONS(3137), - [anon_sym_enum] = ACTIONS(3137), - [anon_sym_interface] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_go] = ACTIONS(3137), - [anon_sym_spawn] = ACTIONS(3137), - [anon_sym_json_DOTdecode] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_TILDE] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [sym_none] = ACTIONS(3137), - [sym_true] = ACTIONS(3137), - [sym_false] = ACTIONS(3137), - [sym_nil] = ACTIONS(3137), - [anon_sym_if] = ACTIONS(3137), - [anon_sym_DOLLARif] = ACTIONS(3137), - [anon_sym_match] = ACTIONS(3137), - [anon_sym_select] = ACTIONS(3137), - [anon_sym_lock] = ACTIONS(3137), - [anon_sym_rlock] = ACTIONS(3137), - [anon_sym_unsafe] = ACTIONS(3137), - [anon_sym_sql] = ACTIONS(3137), - [sym_int_literal] = ACTIONS(3137), - [sym_float_literal] = ACTIONS(3137), - [sym_rune_literal] = ACTIONS(3137), - [anon_sym_AT] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - [anon_sym_assert] = ACTIONS(3137), - [anon_sym_defer] = ACTIONS(3137), - [anon_sym_goto] = ACTIONS(3137), - [anon_sym_break] = ACTIONS(3137), - [anon_sym_continue] = ACTIONS(3137), - [anon_sym_return] = ACTIONS(3137), - [anon_sym_DOLLARfor] = ACTIONS(3137), - [anon_sym_for] = ACTIONS(3137), - [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_asm] = ACTIONS(3137), - [anon_sym_AT_LBRACK] = ACTIONS(3137), - [sym___double_quote] = ACTIONS(3137), - [sym___single_quote] = ACTIONS(3137), - [sym___c_double_quote] = ACTIONS(3137), - [sym___c_single_quote] = ACTIONS(3137), - [sym___r_double_quote] = ACTIONS(3137), - [sym___r_single_quote] = ACTIONS(3137), - }, - [1476] = { - [ts_builtin_sym_end] = ACTIONS(2782), - [sym_identifier] = ACTIONS(2784), - [anon_sym_LF] = ACTIONS(2784), - [anon_sym_CR] = ACTIONS(2784), - [anon_sym_CR_LF] = ACTIONS(2784), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2784), - [anon_sym_const] = ACTIONS(2784), - [anon_sym_LPAREN] = ACTIONS(2784), - [anon_sym___global] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2784), - [anon_sym_PIPE] = ACTIONS(2784), - [anon_sym_fn] = ACTIONS(2784), - [anon_sym_PLUS] = ACTIONS(2784), - [anon_sym_DASH] = ACTIONS(2784), - [anon_sym_STAR] = ACTIONS(2784), - [anon_sym_struct] = ACTIONS(2784), - [anon_sym_union] = ACTIONS(2784), - [anon_sym_pub] = ACTIONS(2784), - [anon_sym_mut] = ACTIONS(2784), - [anon_sym_enum] = ACTIONS(2784), - [anon_sym_interface] = ACTIONS(2784), - [anon_sym_QMARK] = ACTIONS(2784), - [anon_sym_BANG] = ACTIONS(2784), - [anon_sym_go] = ACTIONS(2784), - [anon_sym_spawn] = ACTIONS(2784), - [anon_sym_json_DOTdecode] = ACTIONS(2784), - [anon_sym_LBRACK2] = ACTIONS(2784), - [anon_sym_TILDE] = ACTIONS(2784), - [anon_sym_CARET] = ACTIONS(2784), - [anon_sym_AMP] = ACTIONS(2784), - [anon_sym_LT_DASH] = ACTIONS(2784), - [sym_none] = ACTIONS(2784), - [sym_true] = ACTIONS(2784), - [sym_false] = ACTIONS(2784), - [sym_nil] = ACTIONS(2784), - [anon_sym_if] = ACTIONS(2784), - [anon_sym_DOLLARif] = ACTIONS(2784), - [anon_sym_match] = ACTIONS(2784), - [anon_sym_select] = ACTIONS(2784), - [anon_sym_lock] = ACTIONS(2784), - [anon_sym_rlock] = ACTIONS(2784), - [anon_sym_unsafe] = ACTIONS(2784), - [anon_sym_sql] = ACTIONS(2784), - [sym_int_literal] = ACTIONS(2784), - [sym_float_literal] = ACTIONS(2784), - [sym_rune_literal] = ACTIONS(2784), - [anon_sym_AT] = ACTIONS(2784), - [anon_sym_shared] = ACTIONS(2784), - [anon_sym_map_LBRACK] = ACTIONS(2784), - [anon_sym_chan] = ACTIONS(2784), - [anon_sym_thread] = ACTIONS(2784), - [anon_sym_atomic] = ACTIONS(2784), - [anon_sym_assert] = ACTIONS(2784), - [anon_sym_defer] = ACTIONS(2784), - [anon_sym_goto] = ACTIONS(2784), - [anon_sym_break] = ACTIONS(2784), - [anon_sym_continue] = ACTIONS(2784), - [anon_sym_return] = ACTIONS(2784), - [anon_sym_DOLLARfor] = ACTIONS(2784), - [anon_sym_for] = ACTIONS(2784), - [anon_sym_POUND] = ACTIONS(2784), - [anon_sym_asm] = ACTIONS(2784), - [anon_sym_AT_LBRACK] = ACTIONS(2784), - [sym___double_quote] = ACTIONS(2784), - [sym___single_quote] = ACTIONS(2784), - [sym___c_double_quote] = ACTIONS(2784), - [sym___c_single_quote] = ACTIONS(2784), - [sym___r_double_quote] = ACTIONS(2784), - [sym___r_single_quote] = ACTIONS(2784), - }, - [1477] = { - [ts_builtin_sym_end] = ACTIONS(3885), - [sym_identifier] = ACTIONS(3887), - [anon_sym_LF] = ACTIONS(3887), - [anon_sym_CR] = ACTIONS(3887), - [anon_sym_CR_LF] = ACTIONS(3887), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3887), - [anon_sym_LBRACE] = ACTIONS(3887), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3887), - [anon_sym___global] = ACTIONS(3887), - [anon_sym_type] = ACTIONS(3887), - [anon_sym_PIPE] = ACTIONS(3887), - [anon_sym_fn] = ACTIONS(3887), - [anon_sym_PLUS] = ACTIONS(3887), - [anon_sym_DASH] = ACTIONS(3887), - [anon_sym_STAR] = ACTIONS(3887), - [anon_sym_struct] = ACTIONS(3887), - [anon_sym_union] = ACTIONS(3887), - [anon_sym_pub] = ACTIONS(3887), - [anon_sym_mut] = ACTIONS(3887), - [anon_sym_enum] = ACTIONS(3887), - [anon_sym_interface] = ACTIONS(3887), - [anon_sym_QMARK] = ACTIONS(3887), - [anon_sym_BANG] = ACTIONS(3887), - [anon_sym_go] = ACTIONS(3887), - [anon_sym_spawn] = ACTIONS(3887), - [anon_sym_json_DOTdecode] = ACTIONS(3887), - [anon_sym_LBRACK2] = ACTIONS(3887), - [anon_sym_TILDE] = ACTIONS(3887), - [anon_sym_CARET] = ACTIONS(3887), - [anon_sym_AMP] = ACTIONS(3887), - [anon_sym_LT_DASH] = ACTIONS(3887), - [sym_none] = ACTIONS(3887), - [sym_true] = ACTIONS(3887), - [sym_false] = ACTIONS(3887), - [sym_nil] = ACTIONS(3887), - [anon_sym_if] = ACTIONS(3887), - [anon_sym_DOLLARif] = ACTIONS(3887), - [anon_sym_match] = ACTIONS(3887), - [anon_sym_select] = ACTIONS(3887), - [anon_sym_lock] = ACTIONS(3887), - [anon_sym_rlock] = ACTIONS(3887), - [anon_sym_unsafe] = ACTIONS(3887), - [anon_sym_sql] = ACTIONS(3887), - [sym_int_literal] = ACTIONS(3887), - [sym_float_literal] = ACTIONS(3887), - [sym_rune_literal] = ACTIONS(3887), - [anon_sym_AT] = ACTIONS(3887), - [anon_sym_shared] = ACTIONS(3887), - [anon_sym_map_LBRACK] = ACTIONS(3887), - [anon_sym_chan] = ACTIONS(3887), - [anon_sym_thread] = ACTIONS(3887), - [anon_sym_atomic] = ACTIONS(3887), - [anon_sym_assert] = ACTIONS(3887), - [anon_sym_defer] = ACTIONS(3887), - [anon_sym_goto] = ACTIONS(3887), - [anon_sym_break] = ACTIONS(3887), - [anon_sym_continue] = ACTIONS(3887), - [anon_sym_return] = ACTIONS(3887), - [anon_sym_DOLLARfor] = ACTIONS(3887), - [anon_sym_for] = ACTIONS(3887), - [anon_sym_POUND] = ACTIONS(3887), - [anon_sym_asm] = ACTIONS(3887), - [anon_sym_AT_LBRACK] = ACTIONS(3887), - [sym___double_quote] = ACTIONS(3887), - [sym___single_quote] = ACTIONS(3887), - [sym___c_double_quote] = ACTIONS(3887), - [sym___c_single_quote] = ACTIONS(3887), - [sym___r_double_quote] = ACTIONS(3887), - [sym___r_single_quote] = ACTIONS(3887), - }, - [1478] = { - [sym_block] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(3889), - [sym_identifier] = ACTIONS(3891), - [anon_sym_LF] = ACTIONS(3891), - [anon_sym_CR] = ACTIONS(3891), - [anon_sym_CR_LF] = ACTIONS(3891), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3891), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3891), - [anon_sym_LPAREN] = ACTIONS(3891), - [anon_sym___global] = ACTIONS(3891), - [anon_sym_type] = ACTIONS(3891), - [anon_sym_fn] = ACTIONS(3891), - [anon_sym_PLUS] = ACTIONS(3891), - [anon_sym_DASH] = ACTIONS(3891), - [anon_sym_STAR] = ACTIONS(3891), - [anon_sym_struct] = ACTIONS(3891), - [anon_sym_union] = ACTIONS(3891), - [anon_sym_pub] = ACTIONS(3891), - [anon_sym_mut] = ACTIONS(3891), - [anon_sym_enum] = ACTIONS(3891), - [anon_sym_interface] = ACTIONS(3891), - [anon_sym_QMARK] = ACTIONS(3891), - [anon_sym_BANG] = ACTIONS(3891), - [anon_sym_go] = ACTIONS(3891), - [anon_sym_spawn] = ACTIONS(3891), - [anon_sym_json_DOTdecode] = ACTIONS(3891), - [anon_sym_LBRACK2] = ACTIONS(3891), - [anon_sym_TILDE] = ACTIONS(3891), - [anon_sym_CARET] = ACTIONS(3891), - [anon_sym_AMP] = ACTIONS(3891), - [anon_sym_LT_DASH] = ACTIONS(3891), - [sym_none] = ACTIONS(3891), - [sym_true] = ACTIONS(3891), - [sym_false] = ACTIONS(3891), - [sym_nil] = ACTIONS(3891), - [anon_sym_if] = ACTIONS(3891), - [anon_sym_DOLLARif] = ACTIONS(3891), - [anon_sym_match] = ACTIONS(3891), - [anon_sym_select] = ACTIONS(3891), - [anon_sym_lock] = ACTIONS(3891), - [anon_sym_rlock] = ACTIONS(3891), - [anon_sym_unsafe] = ACTIONS(3891), - [anon_sym_sql] = ACTIONS(3891), - [sym_int_literal] = ACTIONS(3891), - [sym_float_literal] = ACTIONS(3891), - [sym_rune_literal] = ACTIONS(3891), - [anon_sym_AT] = ACTIONS(3891), - [anon_sym_shared] = ACTIONS(3891), - [anon_sym_map_LBRACK] = ACTIONS(3891), - [anon_sym_chan] = ACTIONS(3891), - [anon_sym_thread] = ACTIONS(3891), - [anon_sym_atomic] = ACTIONS(3891), - [anon_sym_assert] = ACTIONS(3891), - [anon_sym_defer] = ACTIONS(3891), - [anon_sym_goto] = ACTIONS(3891), - [anon_sym_break] = ACTIONS(3891), - [anon_sym_continue] = ACTIONS(3891), - [anon_sym_return] = ACTIONS(3891), - [anon_sym_DOLLARfor] = ACTIONS(3891), - [anon_sym_for] = ACTIONS(3891), - [anon_sym_POUND] = ACTIONS(3891), - [anon_sym_asm] = ACTIONS(3891), - [anon_sym_AT_LBRACK] = ACTIONS(3891), - [sym___double_quote] = ACTIONS(3891), - [sym___single_quote] = ACTIONS(3891), - [sym___c_double_quote] = ACTIONS(3891), - [sym___c_single_quote] = ACTIONS(3891), - [sym___r_double_quote] = ACTIONS(3891), - [sym___r_single_quote] = ACTIONS(3891), - }, - [1479] = { - [sym_block] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(3893), - [sym_identifier] = ACTIONS(3895), - [anon_sym_LF] = ACTIONS(3895), - [anon_sym_CR] = ACTIONS(3895), - [anon_sym_CR_LF] = ACTIONS(3895), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3895), - [anon_sym_LPAREN] = ACTIONS(3895), - [anon_sym___global] = ACTIONS(3895), - [anon_sym_type] = ACTIONS(3895), - [anon_sym_fn] = ACTIONS(3895), - [anon_sym_PLUS] = ACTIONS(3895), - [anon_sym_DASH] = ACTIONS(3895), - [anon_sym_STAR] = ACTIONS(3895), - [anon_sym_struct] = ACTIONS(3895), - [anon_sym_union] = ACTIONS(3895), - [anon_sym_pub] = ACTIONS(3895), - [anon_sym_mut] = ACTIONS(3895), - [anon_sym_enum] = ACTIONS(3895), - [anon_sym_interface] = ACTIONS(3895), - [anon_sym_QMARK] = ACTIONS(3895), - [anon_sym_BANG] = ACTIONS(3895), - [anon_sym_go] = ACTIONS(3895), - [anon_sym_spawn] = ACTIONS(3895), - [anon_sym_json_DOTdecode] = ACTIONS(3895), - [anon_sym_LBRACK2] = ACTIONS(3895), - [anon_sym_TILDE] = ACTIONS(3895), - [anon_sym_CARET] = ACTIONS(3895), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_LT_DASH] = ACTIONS(3895), - [sym_none] = ACTIONS(3895), - [sym_true] = ACTIONS(3895), - [sym_false] = ACTIONS(3895), - [sym_nil] = ACTIONS(3895), - [anon_sym_if] = ACTIONS(3895), - [anon_sym_DOLLARif] = ACTIONS(3895), - [anon_sym_match] = ACTIONS(3895), - [anon_sym_select] = ACTIONS(3895), - [anon_sym_lock] = ACTIONS(3895), - [anon_sym_rlock] = ACTIONS(3895), - [anon_sym_unsafe] = ACTIONS(3895), - [anon_sym_sql] = ACTIONS(3895), - [sym_int_literal] = ACTIONS(3895), - [sym_float_literal] = ACTIONS(3895), - [sym_rune_literal] = ACTIONS(3895), - [anon_sym_AT] = ACTIONS(3895), - [anon_sym_shared] = ACTIONS(3895), - [anon_sym_map_LBRACK] = ACTIONS(3895), - [anon_sym_chan] = ACTIONS(3895), - [anon_sym_thread] = ACTIONS(3895), - [anon_sym_atomic] = ACTIONS(3895), - [anon_sym_assert] = ACTIONS(3895), - [anon_sym_defer] = ACTIONS(3895), - [anon_sym_goto] = ACTIONS(3895), - [anon_sym_break] = ACTIONS(3895), - [anon_sym_continue] = ACTIONS(3895), - [anon_sym_return] = ACTIONS(3895), - [anon_sym_DOLLARfor] = ACTIONS(3895), - [anon_sym_for] = ACTIONS(3895), - [anon_sym_POUND] = ACTIONS(3895), - [anon_sym_asm] = ACTIONS(3895), - [anon_sym_AT_LBRACK] = ACTIONS(3895), - [sym___double_quote] = ACTIONS(3895), - [sym___single_quote] = ACTIONS(3895), - [sym___c_double_quote] = ACTIONS(3895), - [sym___c_single_quote] = ACTIONS(3895), - [sym___r_double_quote] = ACTIONS(3895), - [sym___r_single_quote] = ACTIONS(3895), - }, - [1480] = { - [ts_builtin_sym_end] = ACTIONS(2838), - [sym_identifier] = ACTIONS(2840), - [anon_sym_LF] = ACTIONS(2840), - [anon_sym_CR] = ACTIONS(2840), - [anon_sym_CR_LF] = ACTIONS(2840), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2840), - [anon_sym_LBRACE] = ACTIONS(2840), - [anon_sym_const] = ACTIONS(2840), - [anon_sym_LPAREN] = ACTIONS(2840), - [anon_sym___global] = ACTIONS(2840), - [anon_sym_type] = ACTIONS(2840), - [anon_sym_PIPE] = ACTIONS(2840), - [anon_sym_fn] = ACTIONS(2840), - [anon_sym_PLUS] = ACTIONS(2840), - [anon_sym_DASH] = ACTIONS(2840), - [anon_sym_STAR] = ACTIONS(2840), - [anon_sym_struct] = ACTIONS(2840), - [anon_sym_union] = ACTIONS(2840), - [anon_sym_pub] = ACTIONS(2840), - [anon_sym_mut] = ACTIONS(2840), - [anon_sym_enum] = ACTIONS(2840), - [anon_sym_interface] = ACTIONS(2840), - [anon_sym_QMARK] = ACTIONS(2840), - [anon_sym_BANG] = ACTIONS(2840), - [anon_sym_go] = ACTIONS(2840), - [anon_sym_spawn] = ACTIONS(2840), - [anon_sym_json_DOTdecode] = ACTIONS(2840), - [anon_sym_LBRACK2] = ACTIONS(2840), - [anon_sym_TILDE] = ACTIONS(2840), - [anon_sym_CARET] = ACTIONS(2840), - [anon_sym_AMP] = ACTIONS(2840), - [anon_sym_LT_DASH] = ACTIONS(2840), - [sym_none] = ACTIONS(2840), - [sym_true] = ACTIONS(2840), - [sym_false] = ACTIONS(2840), - [sym_nil] = ACTIONS(2840), - [anon_sym_if] = ACTIONS(2840), - [anon_sym_DOLLARif] = ACTIONS(2840), - [anon_sym_match] = ACTIONS(2840), - [anon_sym_select] = ACTIONS(2840), - [anon_sym_lock] = ACTIONS(2840), - [anon_sym_rlock] = ACTIONS(2840), - [anon_sym_unsafe] = ACTIONS(2840), - [anon_sym_sql] = ACTIONS(2840), - [sym_int_literal] = ACTIONS(2840), - [sym_float_literal] = ACTIONS(2840), - [sym_rune_literal] = ACTIONS(2840), - [anon_sym_AT] = ACTIONS(2840), - [anon_sym_shared] = ACTIONS(2840), - [anon_sym_map_LBRACK] = ACTIONS(2840), - [anon_sym_chan] = ACTIONS(2840), - [anon_sym_thread] = ACTIONS(2840), - [anon_sym_atomic] = ACTIONS(2840), - [anon_sym_assert] = ACTIONS(2840), - [anon_sym_defer] = ACTIONS(2840), - [anon_sym_goto] = ACTIONS(2840), - [anon_sym_break] = ACTIONS(2840), - [anon_sym_continue] = ACTIONS(2840), - [anon_sym_return] = ACTIONS(2840), - [anon_sym_DOLLARfor] = ACTIONS(2840), - [anon_sym_for] = ACTIONS(2840), - [anon_sym_POUND] = ACTIONS(2840), - [anon_sym_asm] = ACTIONS(2840), - [anon_sym_AT_LBRACK] = ACTIONS(2840), - [sym___double_quote] = ACTIONS(2840), - [sym___single_quote] = ACTIONS(2840), - [sym___c_double_quote] = ACTIONS(2840), - [sym___c_single_quote] = ACTIONS(2840), - [sym___r_double_quote] = ACTIONS(2840), - [sym___r_single_quote] = ACTIONS(2840), - }, - [1481] = { - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3177), - [anon_sym_LF] = ACTIONS(3177), - [anon_sym_CR] = ACTIONS(3177), - [anon_sym_CR_LF] = ACTIONS(3177), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3177), - [anon_sym_LBRACE] = ACTIONS(3177), - [anon_sym_const] = ACTIONS(3177), - [anon_sym_LPAREN] = ACTIONS(3177), - [anon_sym___global] = ACTIONS(3177), - [anon_sym_type] = ACTIONS(3177), - [anon_sym_PIPE] = ACTIONS(3177), - [anon_sym_fn] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3177), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3177), - [anon_sym_struct] = ACTIONS(3177), - [anon_sym_union] = ACTIONS(3177), - [anon_sym_pub] = ACTIONS(3177), - [anon_sym_mut] = ACTIONS(3177), - [anon_sym_enum] = ACTIONS(3177), - [anon_sym_interface] = ACTIONS(3177), - [anon_sym_QMARK] = ACTIONS(3177), - [anon_sym_BANG] = ACTIONS(3177), - [anon_sym_go] = ACTIONS(3177), - [anon_sym_spawn] = ACTIONS(3177), - [anon_sym_json_DOTdecode] = ACTIONS(3177), - [anon_sym_LBRACK2] = ACTIONS(3177), - [anon_sym_TILDE] = ACTIONS(3177), - [anon_sym_CARET] = ACTIONS(3177), - [anon_sym_AMP] = ACTIONS(3177), - [anon_sym_LT_DASH] = ACTIONS(3177), - [sym_none] = ACTIONS(3177), - [sym_true] = ACTIONS(3177), - [sym_false] = ACTIONS(3177), - [sym_nil] = ACTIONS(3177), - [anon_sym_if] = ACTIONS(3177), - [anon_sym_DOLLARif] = ACTIONS(3177), - [anon_sym_match] = ACTIONS(3177), - [anon_sym_select] = ACTIONS(3177), - [anon_sym_lock] = ACTIONS(3177), - [anon_sym_rlock] = ACTIONS(3177), - [anon_sym_unsafe] = ACTIONS(3177), - [anon_sym_sql] = ACTIONS(3177), - [sym_int_literal] = ACTIONS(3177), - [sym_float_literal] = ACTIONS(3177), - [sym_rune_literal] = ACTIONS(3177), - [anon_sym_AT] = ACTIONS(3177), - [anon_sym_shared] = ACTIONS(3177), - [anon_sym_map_LBRACK] = ACTIONS(3177), - [anon_sym_chan] = ACTIONS(3177), - [anon_sym_thread] = ACTIONS(3177), - [anon_sym_atomic] = ACTIONS(3177), - [anon_sym_assert] = ACTIONS(3177), - [anon_sym_defer] = ACTIONS(3177), - [anon_sym_goto] = ACTIONS(3177), - [anon_sym_break] = ACTIONS(3177), - [anon_sym_continue] = ACTIONS(3177), - [anon_sym_return] = ACTIONS(3177), - [anon_sym_DOLLARfor] = ACTIONS(3177), - [anon_sym_for] = ACTIONS(3177), - [anon_sym_POUND] = ACTIONS(3177), - [anon_sym_asm] = ACTIONS(3177), - [anon_sym_AT_LBRACK] = ACTIONS(3177), - [sym___double_quote] = ACTIONS(3177), - [sym___single_quote] = ACTIONS(3177), - [sym___c_double_quote] = ACTIONS(3177), - [sym___c_single_quote] = ACTIONS(3177), - [sym___r_double_quote] = ACTIONS(3177), - [sym___r_single_quote] = ACTIONS(3177), - }, - [1482] = { - [sym_block] = STATE(1552), - [ts_builtin_sym_end] = ACTIONS(3897), - [sym_identifier] = ACTIONS(3899), - [anon_sym_LF] = ACTIONS(3899), - [anon_sym_CR] = ACTIONS(3899), - [anon_sym_CR_LF] = ACTIONS(3899), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3899), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3899), - [anon_sym_LPAREN] = ACTIONS(3899), - [anon_sym___global] = ACTIONS(3899), - [anon_sym_type] = ACTIONS(3899), - [anon_sym_fn] = ACTIONS(3899), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_STAR] = ACTIONS(3899), - [anon_sym_struct] = ACTIONS(3899), - [anon_sym_union] = ACTIONS(3899), - [anon_sym_pub] = ACTIONS(3899), - [anon_sym_mut] = ACTIONS(3899), - [anon_sym_enum] = ACTIONS(3899), - [anon_sym_interface] = ACTIONS(3899), - [anon_sym_QMARK] = ACTIONS(3899), - [anon_sym_BANG] = ACTIONS(3899), - [anon_sym_go] = ACTIONS(3899), - [anon_sym_spawn] = ACTIONS(3899), - [anon_sym_json_DOTdecode] = ACTIONS(3899), - [anon_sym_LBRACK2] = ACTIONS(3899), - [anon_sym_TILDE] = ACTIONS(3899), - [anon_sym_CARET] = ACTIONS(3899), - [anon_sym_AMP] = ACTIONS(3899), - [anon_sym_LT_DASH] = ACTIONS(3899), - [sym_none] = ACTIONS(3899), - [sym_true] = ACTIONS(3899), - [sym_false] = ACTIONS(3899), - [sym_nil] = ACTIONS(3899), - [anon_sym_if] = ACTIONS(3899), - [anon_sym_DOLLARif] = ACTIONS(3899), - [anon_sym_match] = ACTIONS(3899), - [anon_sym_select] = ACTIONS(3899), - [anon_sym_lock] = ACTIONS(3899), - [anon_sym_rlock] = ACTIONS(3899), - [anon_sym_unsafe] = ACTIONS(3899), - [anon_sym_sql] = ACTIONS(3899), - [sym_int_literal] = ACTIONS(3899), - [sym_float_literal] = ACTIONS(3899), - [sym_rune_literal] = ACTIONS(3899), - [anon_sym_AT] = ACTIONS(3899), - [anon_sym_shared] = ACTIONS(3899), - [anon_sym_map_LBRACK] = ACTIONS(3899), - [anon_sym_chan] = ACTIONS(3899), - [anon_sym_thread] = ACTIONS(3899), - [anon_sym_atomic] = ACTIONS(3899), - [anon_sym_assert] = ACTIONS(3899), - [anon_sym_defer] = ACTIONS(3899), - [anon_sym_goto] = ACTIONS(3899), - [anon_sym_break] = ACTIONS(3899), - [anon_sym_continue] = ACTIONS(3899), - [anon_sym_return] = ACTIONS(3899), - [anon_sym_DOLLARfor] = ACTIONS(3899), - [anon_sym_for] = ACTIONS(3899), - [anon_sym_POUND] = ACTIONS(3899), - [anon_sym_asm] = ACTIONS(3899), - [anon_sym_AT_LBRACK] = ACTIONS(3899), - [sym___double_quote] = ACTIONS(3899), - [sym___single_quote] = ACTIONS(3899), - [sym___c_double_quote] = ACTIONS(3899), - [sym___c_single_quote] = ACTIONS(3899), - [sym___r_double_quote] = ACTIONS(3899), - [sym___r_single_quote] = ACTIONS(3899), - }, - [1483] = { - [ts_builtin_sym_end] = ACTIONS(2913), - [sym_identifier] = ACTIONS(2915), - [anon_sym_LF] = ACTIONS(2915), - [anon_sym_CR] = ACTIONS(2915), - [anon_sym_CR_LF] = ACTIONS(2915), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2915), - [anon_sym_LBRACE] = ACTIONS(2915), - [anon_sym_const] = ACTIONS(2915), - [anon_sym_LPAREN] = ACTIONS(2915), - [anon_sym___global] = ACTIONS(2915), - [anon_sym_type] = ACTIONS(2915), - [anon_sym_PIPE] = ACTIONS(2915), - [anon_sym_fn] = ACTIONS(2915), - [anon_sym_PLUS] = ACTIONS(2915), - [anon_sym_DASH] = ACTIONS(2915), - [anon_sym_STAR] = ACTIONS(2915), - [anon_sym_struct] = ACTIONS(2915), - [anon_sym_union] = ACTIONS(2915), - [anon_sym_pub] = ACTIONS(2915), - [anon_sym_mut] = ACTIONS(2915), - [anon_sym_enum] = ACTIONS(2915), - [anon_sym_interface] = ACTIONS(2915), - [anon_sym_QMARK] = ACTIONS(2915), - [anon_sym_BANG] = ACTIONS(2915), - [anon_sym_go] = ACTIONS(2915), - [anon_sym_spawn] = ACTIONS(2915), - [anon_sym_json_DOTdecode] = ACTIONS(2915), - [anon_sym_LBRACK2] = ACTIONS(2915), - [anon_sym_TILDE] = ACTIONS(2915), - [anon_sym_CARET] = ACTIONS(2915), - [anon_sym_AMP] = ACTIONS(2915), - [anon_sym_LT_DASH] = ACTIONS(2915), - [sym_none] = ACTIONS(2915), - [sym_true] = ACTIONS(2915), - [sym_false] = ACTIONS(2915), - [sym_nil] = ACTIONS(2915), - [anon_sym_if] = ACTIONS(2915), - [anon_sym_DOLLARif] = ACTIONS(2915), - [anon_sym_match] = ACTIONS(2915), - [anon_sym_select] = ACTIONS(2915), - [anon_sym_lock] = ACTIONS(2915), - [anon_sym_rlock] = ACTIONS(2915), - [anon_sym_unsafe] = ACTIONS(2915), - [anon_sym_sql] = ACTIONS(2915), - [sym_int_literal] = ACTIONS(2915), - [sym_float_literal] = ACTIONS(2915), - [sym_rune_literal] = ACTIONS(2915), - [anon_sym_AT] = ACTIONS(2915), - [anon_sym_shared] = ACTIONS(2915), - [anon_sym_map_LBRACK] = ACTIONS(2915), - [anon_sym_chan] = ACTIONS(2915), - [anon_sym_thread] = ACTIONS(2915), - [anon_sym_atomic] = ACTIONS(2915), - [anon_sym_assert] = ACTIONS(2915), - [anon_sym_defer] = ACTIONS(2915), - [anon_sym_goto] = ACTIONS(2915), - [anon_sym_break] = ACTIONS(2915), - [anon_sym_continue] = ACTIONS(2915), - [anon_sym_return] = ACTIONS(2915), - [anon_sym_DOLLARfor] = ACTIONS(2915), - [anon_sym_for] = ACTIONS(2915), - [anon_sym_POUND] = ACTIONS(2915), - [anon_sym_asm] = ACTIONS(2915), - [anon_sym_AT_LBRACK] = ACTIONS(2915), - [sym___double_quote] = ACTIONS(2915), - [sym___single_quote] = ACTIONS(2915), - [sym___c_double_quote] = ACTIONS(2915), - [sym___c_single_quote] = ACTIONS(2915), - [sym___r_double_quote] = ACTIONS(2915), - [sym___r_single_quote] = ACTIONS(2915), - }, - [1484] = { - [sym_block] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(3901), - [sym_identifier] = ACTIONS(3903), - [anon_sym_LF] = ACTIONS(3903), - [anon_sym_CR] = ACTIONS(3903), - [anon_sym_CR_LF] = ACTIONS(3903), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3903), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3903), - [anon_sym_LPAREN] = ACTIONS(3903), - [anon_sym___global] = ACTIONS(3903), - [anon_sym_type] = ACTIONS(3903), - [anon_sym_fn] = ACTIONS(3903), - [anon_sym_PLUS] = ACTIONS(3903), - [anon_sym_DASH] = ACTIONS(3903), - [anon_sym_STAR] = ACTIONS(3903), - [anon_sym_struct] = ACTIONS(3903), - [anon_sym_union] = ACTIONS(3903), - [anon_sym_pub] = ACTIONS(3903), - [anon_sym_mut] = ACTIONS(3903), - [anon_sym_enum] = ACTIONS(3903), - [anon_sym_interface] = ACTIONS(3903), - [anon_sym_QMARK] = ACTIONS(3903), - [anon_sym_BANG] = ACTIONS(3903), - [anon_sym_go] = ACTIONS(3903), - [anon_sym_spawn] = ACTIONS(3903), - [anon_sym_json_DOTdecode] = ACTIONS(3903), - [anon_sym_LBRACK2] = ACTIONS(3903), - [anon_sym_TILDE] = ACTIONS(3903), - [anon_sym_CARET] = ACTIONS(3903), - [anon_sym_AMP] = ACTIONS(3903), - [anon_sym_LT_DASH] = ACTIONS(3903), - [sym_none] = ACTIONS(3903), - [sym_true] = ACTIONS(3903), - [sym_false] = ACTIONS(3903), - [sym_nil] = ACTIONS(3903), - [anon_sym_if] = ACTIONS(3903), - [anon_sym_DOLLARif] = ACTIONS(3903), - [anon_sym_match] = ACTIONS(3903), - [anon_sym_select] = ACTIONS(3903), - [anon_sym_lock] = ACTIONS(3903), - [anon_sym_rlock] = ACTIONS(3903), - [anon_sym_unsafe] = ACTIONS(3903), - [anon_sym_sql] = ACTIONS(3903), - [sym_int_literal] = ACTIONS(3903), - [sym_float_literal] = ACTIONS(3903), - [sym_rune_literal] = ACTIONS(3903), - [anon_sym_AT] = ACTIONS(3903), - [anon_sym_shared] = ACTIONS(3903), - [anon_sym_map_LBRACK] = ACTIONS(3903), - [anon_sym_chan] = ACTIONS(3903), - [anon_sym_thread] = ACTIONS(3903), - [anon_sym_atomic] = ACTIONS(3903), - [anon_sym_assert] = ACTIONS(3903), - [anon_sym_defer] = ACTIONS(3903), - [anon_sym_goto] = ACTIONS(3903), - [anon_sym_break] = ACTIONS(3903), - [anon_sym_continue] = ACTIONS(3903), - [anon_sym_return] = ACTIONS(3903), - [anon_sym_DOLLARfor] = ACTIONS(3903), - [anon_sym_for] = ACTIONS(3903), - [anon_sym_POUND] = ACTIONS(3903), - [anon_sym_asm] = ACTIONS(3903), - [anon_sym_AT_LBRACK] = ACTIONS(3903), - [sym___double_quote] = ACTIONS(3903), - [sym___single_quote] = ACTIONS(3903), - [sym___c_double_quote] = ACTIONS(3903), - [sym___c_single_quote] = ACTIONS(3903), - [sym___r_double_quote] = ACTIONS(3903), - [sym___r_single_quote] = ACTIONS(3903), - }, - [1485] = { - [sym_block] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(3905), - [sym_identifier] = ACTIONS(3907), - [anon_sym_LF] = ACTIONS(3907), - [anon_sym_CR] = ACTIONS(3907), - [anon_sym_CR_LF] = ACTIONS(3907), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3907), - [anon_sym_LBRACE] = ACTIONS(3799), - [anon_sym_const] = ACTIONS(3907), - [anon_sym_LPAREN] = ACTIONS(3907), - [anon_sym___global] = ACTIONS(3907), - [anon_sym_type] = ACTIONS(3907), - [anon_sym_fn] = ACTIONS(3907), - [anon_sym_PLUS] = ACTIONS(3907), - [anon_sym_DASH] = ACTIONS(3907), - [anon_sym_STAR] = ACTIONS(3907), - [anon_sym_struct] = ACTIONS(3907), - [anon_sym_union] = ACTIONS(3907), - [anon_sym_pub] = ACTIONS(3907), - [anon_sym_mut] = ACTIONS(3907), - [anon_sym_enum] = ACTIONS(3907), - [anon_sym_interface] = ACTIONS(3907), - [anon_sym_QMARK] = ACTIONS(3907), - [anon_sym_BANG] = ACTIONS(3907), - [anon_sym_go] = ACTIONS(3907), - [anon_sym_spawn] = ACTIONS(3907), - [anon_sym_json_DOTdecode] = ACTIONS(3907), - [anon_sym_LBRACK2] = ACTIONS(3907), - [anon_sym_TILDE] = ACTIONS(3907), - [anon_sym_CARET] = ACTIONS(3907), - [anon_sym_AMP] = ACTIONS(3907), - [anon_sym_LT_DASH] = ACTIONS(3907), - [sym_none] = ACTIONS(3907), - [sym_true] = ACTIONS(3907), - [sym_false] = ACTIONS(3907), - [sym_nil] = ACTIONS(3907), - [anon_sym_if] = ACTIONS(3907), - [anon_sym_DOLLARif] = ACTIONS(3907), - [anon_sym_match] = ACTIONS(3907), - [anon_sym_select] = ACTIONS(3907), - [anon_sym_lock] = ACTIONS(3907), - [anon_sym_rlock] = ACTIONS(3907), - [anon_sym_unsafe] = ACTIONS(3907), - [anon_sym_sql] = ACTIONS(3907), - [sym_int_literal] = ACTIONS(3907), - [sym_float_literal] = ACTIONS(3907), - [sym_rune_literal] = ACTIONS(3907), - [anon_sym_AT] = ACTIONS(3907), - [anon_sym_shared] = ACTIONS(3907), - [anon_sym_map_LBRACK] = ACTIONS(3907), - [anon_sym_chan] = ACTIONS(3907), - [anon_sym_thread] = ACTIONS(3907), - [anon_sym_atomic] = ACTIONS(3907), - [anon_sym_assert] = ACTIONS(3907), - [anon_sym_defer] = ACTIONS(3907), - [anon_sym_goto] = ACTIONS(3907), - [anon_sym_break] = ACTIONS(3907), - [anon_sym_continue] = ACTIONS(3907), - [anon_sym_return] = ACTIONS(3907), - [anon_sym_DOLLARfor] = ACTIONS(3907), - [anon_sym_for] = ACTIONS(3907), - [anon_sym_POUND] = ACTIONS(3907), - [anon_sym_asm] = ACTIONS(3907), - [anon_sym_AT_LBRACK] = ACTIONS(3907), - [sym___double_quote] = ACTIONS(3907), - [sym___single_quote] = ACTIONS(3907), - [sym___c_double_quote] = ACTIONS(3907), - [sym___c_single_quote] = ACTIONS(3907), - [sym___r_double_quote] = ACTIONS(3907), - [sym___r_single_quote] = ACTIONS(3907), - }, - [1486] = { - [ts_builtin_sym_end] = ACTIONS(3909), - [sym_identifier] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3911), - [anon_sym_CR] = ACTIONS(3911), - [anon_sym_CR_LF] = ACTIONS(3911), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3911), - [anon_sym_LBRACE] = ACTIONS(3911), - [anon_sym_const] = ACTIONS(3911), - [anon_sym_LPAREN] = ACTIONS(3911), - [anon_sym___global] = ACTIONS(3911), - [anon_sym_type] = ACTIONS(3911), - [anon_sym_fn] = ACTIONS(3911), - [anon_sym_PLUS] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_STAR] = ACTIONS(3911), - [anon_sym_struct] = ACTIONS(3911), - [anon_sym_union] = ACTIONS(3911), - [anon_sym_pub] = ACTIONS(3911), - [anon_sym_mut] = ACTIONS(3911), - [anon_sym_enum] = ACTIONS(3911), - [anon_sym_interface] = ACTIONS(3911), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_BANG] = ACTIONS(3911), - [anon_sym_go] = ACTIONS(3911), - [anon_sym_spawn] = ACTIONS(3911), - [anon_sym_json_DOTdecode] = ACTIONS(3911), - [anon_sym_LBRACK2] = ACTIONS(3911), - [anon_sym_TILDE] = ACTIONS(3911), - [anon_sym_CARET] = ACTIONS(3911), - [anon_sym_AMP] = ACTIONS(3911), - [anon_sym_LT_DASH] = ACTIONS(3911), - [sym_none] = ACTIONS(3911), - [sym_true] = ACTIONS(3911), - [sym_false] = ACTIONS(3911), - [sym_nil] = ACTIONS(3911), - [anon_sym_if] = ACTIONS(3911), - [anon_sym_DOLLARif] = ACTIONS(3911), - [anon_sym_match] = ACTIONS(3911), - [anon_sym_select] = ACTIONS(3911), - [anon_sym_lock] = ACTIONS(3911), - [anon_sym_rlock] = ACTIONS(3911), - [anon_sym_unsafe] = ACTIONS(3911), - [anon_sym_sql] = ACTIONS(3911), - [sym_int_literal] = ACTIONS(3911), - [sym_float_literal] = ACTIONS(3911), - [sym_rune_literal] = ACTIONS(3911), - [anon_sym_AT] = ACTIONS(3911), - [anon_sym_shared] = ACTIONS(3911), - [anon_sym_map_LBRACK] = ACTIONS(3911), - [anon_sym_chan] = ACTIONS(3911), - [anon_sym_thread] = ACTIONS(3911), - [anon_sym_atomic] = ACTIONS(3911), - [anon_sym_assert] = ACTIONS(3911), - [anon_sym_defer] = ACTIONS(3911), - [anon_sym_goto] = ACTIONS(3911), - [anon_sym_break] = ACTIONS(3911), - [anon_sym_continue] = ACTIONS(3911), - [anon_sym_return] = ACTIONS(3911), - [anon_sym_DOLLARfor] = ACTIONS(3911), - [anon_sym_for] = ACTIONS(3911), - [anon_sym_POUND] = ACTIONS(3911), - [anon_sym_asm] = ACTIONS(3911), - [anon_sym_AT_LBRACK] = ACTIONS(3911), - [sym___double_quote] = ACTIONS(3911), - [sym___single_quote] = ACTIONS(3911), - [sym___c_double_quote] = ACTIONS(3911), - [sym___c_single_quote] = ACTIONS(3911), - [sym___r_double_quote] = ACTIONS(3911), - [sym___r_single_quote] = ACTIONS(3911), - }, - [1487] = { - [ts_builtin_sym_end] = ACTIONS(3913), - [sym_identifier] = ACTIONS(3915), - [anon_sym_LF] = ACTIONS(3915), - [anon_sym_CR] = ACTIONS(3915), - [anon_sym_CR_LF] = ACTIONS(3915), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3915), - [anon_sym_LBRACE] = ACTIONS(3915), - [anon_sym_const] = ACTIONS(3915), - [anon_sym_LPAREN] = ACTIONS(3915), - [anon_sym___global] = ACTIONS(3915), - [anon_sym_type] = ACTIONS(3915), - [anon_sym_fn] = ACTIONS(3915), - [anon_sym_PLUS] = ACTIONS(3915), - [anon_sym_DASH] = ACTIONS(3915), - [anon_sym_STAR] = ACTIONS(3915), - [anon_sym_struct] = ACTIONS(3915), - [anon_sym_union] = ACTIONS(3915), - [anon_sym_pub] = ACTIONS(3915), - [anon_sym_mut] = ACTIONS(3915), - [anon_sym_enum] = ACTIONS(3915), - [anon_sym_interface] = ACTIONS(3915), - [anon_sym_QMARK] = ACTIONS(3915), - [anon_sym_BANG] = ACTIONS(3915), - [anon_sym_go] = ACTIONS(3915), - [anon_sym_spawn] = ACTIONS(3915), - [anon_sym_json_DOTdecode] = ACTIONS(3915), - [anon_sym_LBRACK2] = ACTIONS(3915), - [anon_sym_TILDE] = ACTIONS(3915), - [anon_sym_CARET] = ACTIONS(3915), - [anon_sym_AMP] = ACTIONS(3915), - [anon_sym_LT_DASH] = ACTIONS(3915), - [sym_none] = ACTIONS(3915), - [sym_true] = ACTIONS(3915), - [sym_false] = ACTIONS(3915), - [sym_nil] = ACTIONS(3915), - [anon_sym_if] = ACTIONS(3915), - [anon_sym_DOLLARif] = ACTIONS(3915), - [anon_sym_match] = ACTIONS(3915), - [anon_sym_select] = ACTIONS(3915), - [anon_sym_lock] = ACTIONS(3915), - [anon_sym_rlock] = ACTIONS(3915), - [anon_sym_unsafe] = ACTIONS(3915), - [anon_sym_sql] = ACTIONS(3915), - [sym_int_literal] = ACTIONS(3915), - [sym_float_literal] = ACTIONS(3915), - [sym_rune_literal] = ACTIONS(3915), - [anon_sym_AT] = ACTIONS(3915), - [anon_sym_shared] = ACTIONS(3915), - [anon_sym_map_LBRACK] = ACTIONS(3915), - [anon_sym_chan] = ACTIONS(3915), - [anon_sym_thread] = ACTIONS(3915), - [anon_sym_atomic] = ACTIONS(3915), - [anon_sym_assert] = ACTIONS(3915), - [anon_sym_defer] = ACTIONS(3915), - [anon_sym_goto] = ACTIONS(3915), - [anon_sym_break] = ACTIONS(3915), - [anon_sym_continue] = ACTIONS(3915), - [anon_sym_return] = ACTIONS(3915), - [anon_sym_DOLLARfor] = ACTIONS(3915), - [anon_sym_for] = ACTIONS(3915), - [anon_sym_POUND] = ACTIONS(3915), - [anon_sym_asm] = ACTIONS(3915), - [anon_sym_AT_LBRACK] = ACTIONS(3915), - [sym___double_quote] = ACTIONS(3915), - [sym___single_quote] = ACTIONS(3915), - [sym___c_double_quote] = ACTIONS(3915), - [sym___c_single_quote] = ACTIONS(3915), - [sym___r_double_quote] = ACTIONS(3915), - [sym___r_single_quote] = ACTIONS(3915), - }, - [1488] = { - [ts_builtin_sym_end] = ACTIONS(3917), - [sym_identifier] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3919), - [anon_sym_CR] = ACTIONS(3919), - [anon_sym_CR_LF] = ACTIONS(3919), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3919), - [anon_sym_LBRACE] = ACTIONS(3919), - [anon_sym_const] = ACTIONS(3919), - [anon_sym_LPAREN] = ACTIONS(3919), - [anon_sym___global] = ACTIONS(3919), - [anon_sym_type] = ACTIONS(3919), - [anon_sym_fn] = ACTIONS(3919), - [anon_sym_PLUS] = ACTIONS(3919), - [anon_sym_DASH] = ACTIONS(3919), - [anon_sym_STAR] = ACTIONS(3919), - [anon_sym_struct] = ACTIONS(3919), - [anon_sym_union] = ACTIONS(3919), - [anon_sym_pub] = ACTIONS(3919), - [anon_sym_mut] = ACTIONS(3919), - [anon_sym_enum] = ACTIONS(3919), - [anon_sym_interface] = ACTIONS(3919), - [anon_sym_QMARK] = ACTIONS(3919), - [anon_sym_BANG] = ACTIONS(3919), - [anon_sym_go] = ACTIONS(3919), - [anon_sym_spawn] = ACTIONS(3919), - [anon_sym_json_DOTdecode] = ACTIONS(3919), - [anon_sym_LBRACK2] = ACTIONS(3919), - [anon_sym_TILDE] = ACTIONS(3919), - [anon_sym_CARET] = ACTIONS(3919), - [anon_sym_AMP] = ACTIONS(3919), - [anon_sym_LT_DASH] = ACTIONS(3919), - [sym_none] = ACTIONS(3919), - [sym_true] = ACTIONS(3919), - [sym_false] = ACTIONS(3919), - [sym_nil] = ACTIONS(3919), - [anon_sym_if] = ACTIONS(3919), - [anon_sym_DOLLARif] = ACTIONS(3919), - [anon_sym_match] = ACTIONS(3919), - [anon_sym_select] = ACTIONS(3919), - [anon_sym_lock] = ACTIONS(3919), - [anon_sym_rlock] = ACTIONS(3919), - [anon_sym_unsafe] = ACTIONS(3919), - [anon_sym_sql] = ACTIONS(3919), - [sym_int_literal] = ACTIONS(3919), - [sym_float_literal] = ACTIONS(3919), - [sym_rune_literal] = ACTIONS(3919), - [anon_sym_AT] = ACTIONS(3919), - [anon_sym_shared] = ACTIONS(3919), - [anon_sym_map_LBRACK] = ACTIONS(3919), - [anon_sym_chan] = ACTIONS(3919), - [anon_sym_thread] = ACTIONS(3919), - [anon_sym_atomic] = ACTIONS(3919), - [anon_sym_assert] = ACTIONS(3919), - [anon_sym_defer] = ACTIONS(3919), - [anon_sym_goto] = ACTIONS(3919), - [anon_sym_break] = ACTIONS(3919), - [anon_sym_continue] = ACTIONS(3919), - [anon_sym_return] = ACTIONS(3919), - [anon_sym_DOLLARfor] = ACTIONS(3919), - [anon_sym_for] = ACTIONS(3919), - [anon_sym_POUND] = ACTIONS(3919), - [anon_sym_asm] = ACTIONS(3919), - [anon_sym_AT_LBRACK] = ACTIONS(3919), - [sym___double_quote] = ACTIONS(3919), - [sym___single_quote] = ACTIONS(3919), - [sym___c_double_quote] = ACTIONS(3919), - [sym___c_single_quote] = ACTIONS(3919), - [sym___r_double_quote] = ACTIONS(3919), - [sym___r_single_quote] = ACTIONS(3919), - }, - [1489] = { - [ts_builtin_sym_end] = ACTIONS(3921), - [sym_identifier] = ACTIONS(3923), - [anon_sym_LF] = ACTIONS(3923), - [anon_sym_CR] = ACTIONS(3923), - [anon_sym_CR_LF] = ACTIONS(3923), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3923), - [anon_sym_LBRACE] = ACTIONS(3923), - [anon_sym_const] = ACTIONS(3923), - [anon_sym_LPAREN] = ACTIONS(3923), - [anon_sym___global] = ACTIONS(3923), - [anon_sym_type] = ACTIONS(3923), - [anon_sym_fn] = ACTIONS(3923), - [anon_sym_PLUS] = ACTIONS(3923), - [anon_sym_DASH] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3923), - [anon_sym_struct] = ACTIONS(3923), - [anon_sym_union] = ACTIONS(3923), - [anon_sym_pub] = ACTIONS(3923), - [anon_sym_mut] = ACTIONS(3923), - [anon_sym_enum] = ACTIONS(3923), - [anon_sym_interface] = ACTIONS(3923), - [anon_sym_QMARK] = ACTIONS(3923), - [anon_sym_BANG] = ACTIONS(3923), - [anon_sym_go] = ACTIONS(3923), - [anon_sym_spawn] = ACTIONS(3923), - [anon_sym_json_DOTdecode] = ACTIONS(3923), - [anon_sym_LBRACK2] = ACTIONS(3923), - [anon_sym_TILDE] = ACTIONS(3923), - [anon_sym_CARET] = ACTIONS(3923), - [anon_sym_AMP] = ACTIONS(3923), - [anon_sym_LT_DASH] = ACTIONS(3923), - [sym_none] = ACTIONS(3923), - [sym_true] = ACTIONS(3923), - [sym_false] = ACTIONS(3923), - [sym_nil] = ACTIONS(3923), - [anon_sym_if] = ACTIONS(3923), - [anon_sym_DOLLARif] = ACTIONS(3923), - [anon_sym_match] = ACTIONS(3923), - [anon_sym_select] = ACTIONS(3923), - [anon_sym_lock] = ACTIONS(3923), - [anon_sym_rlock] = ACTIONS(3923), - [anon_sym_unsafe] = ACTIONS(3923), - [anon_sym_sql] = ACTIONS(3923), - [sym_int_literal] = ACTIONS(3923), - [sym_float_literal] = ACTIONS(3923), - [sym_rune_literal] = ACTIONS(3923), - [anon_sym_AT] = ACTIONS(3923), - [anon_sym_shared] = ACTIONS(3923), - [anon_sym_map_LBRACK] = ACTIONS(3923), - [anon_sym_chan] = ACTIONS(3923), - [anon_sym_thread] = ACTIONS(3923), - [anon_sym_atomic] = ACTIONS(3923), - [anon_sym_assert] = ACTIONS(3923), - [anon_sym_defer] = ACTIONS(3923), - [anon_sym_goto] = ACTIONS(3923), - [anon_sym_break] = ACTIONS(3923), - [anon_sym_continue] = ACTIONS(3923), - [anon_sym_return] = ACTIONS(3923), - [anon_sym_DOLLARfor] = ACTIONS(3923), - [anon_sym_for] = ACTIONS(3923), - [anon_sym_POUND] = ACTIONS(3923), - [anon_sym_asm] = ACTIONS(3923), - [anon_sym_AT_LBRACK] = ACTIONS(3923), - [sym___double_quote] = ACTIONS(3923), - [sym___single_quote] = ACTIONS(3923), - [sym___c_double_quote] = ACTIONS(3923), - [sym___c_single_quote] = ACTIONS(3923), - [sym___r_double_quote] = ACTIONS(3923), - [sym___r_single_quote] = ACTIONS(3923), - }, - [1490] = { - [ts_builtin_sym_end] = ACTIONS(3925), - [sym_identifier] = ACTIONS(3927), - [anon_sym_LF] = ACTIONS(3927), - [anon_sym_CR] = ACTIONS(3927), - [anon_sym_CR_LF] = ACTIONS(3927), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3927), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_const] = ACTIONS(3927), - [anon_sym_LPAREN] = ACTIONS(3927), - [anon_sym___global] = ACTIONS(3927), - [anon_sym_type] = ACTIONS(3927), - [anon_sym_fn] = ACTIONS(3927), - [anon_sym_PLUS] = ACTIONS(3927), - [anon_sym_DASH] = ACTIONS(3927), - [anon_sym_STAR] = ACTIONS(3927), - [anon_sym_struct] = ACTIONS(3927), - [anon_sym_union] = ACTIONS(3927), - [anon_sym_pub] = ACTIONS(3927), - [anon_sym_mut] = ACTIONS(3927), - [anon_sym_enum] = ACTIONS(3927), - [anon_sym_interface] = ACTIONS(3927), - [anon_sym_QMARK] = ACTIONS(3927), - [anon_sym_BANG] = ACTIONS(3927), - [anon_sym_go] = ACTIONS(3927), - [anon_sym_spawn] = ACTIONS(3927), - [anon_sym_json_DOTdecode] = ACTIONS(3927), - [anon_sym_LBRACK2] = ACTIONS(3927), - [anon_sym_TILDE] = ACTIONS(3927), - [anon_sym_CARET] = ACTIONS(3927), - [anon_sym_AMP] = ACTIONS(3927), - [anon_sym_LT_DASH] = ACTIONS(3927), - [sym_none] = ACTIONS(3927), - [sym_true] = ACTIONS(3927), - [sym_false] = ACTIONS(3927), - [sym_nil] = ACTIONS(3927), - [anon_sym_if] = ACTIONS(3927), - [anon_sym_DOLLARif] = ACTIONS(3927), - [anon_sym_match] = ACTIONS(3927), - [anon_sym_select] = ACTIONS(3927), - [anon_sym_lock] = ACTIONS(3927), - [anon_sym_rlock] = ACTIONS(3927), - [anon_sym_unsafe] = ACTIONS(3927), - [anon_sym_sql] = ACTIONS(3927), - [sym_int_literal] = ACTIONS(3927), - [sym_float_literal] = ACTIONS(3927), - [sym_rune_literal] = ACTIONS(3927), - [anon_sym_AT] = ACTIONS(3927), - [anon_sym_shared] = ACTIONS(3927), - [anon_sym_map_LBRACK] = ACTIONS(3927), - [anon_sym_chan] = ACTIONS(3927), - [anon_sym_thread] = ACTIONS(3927), - [anon_sym_atomic] = ACTIONS(3927), - [anon_sym_assert] = ACTIONS(3927), - [anon_sym_defer] = ACTIONS(3927), - [anon_sym_goto] = ACTIONS(3927), - [anon_sym_break] = ACTIONS(3927), - [anon_sym_continue] = ACTIONS(3927), - [anon_sym_return] = ACTIONS(3927), - [anon_sym_DOLLARfor] = ACTIONS(3927), - [anon_sym_for] = ACTIONS(3927), - [anon_sym_POUND] = ACTIONS(3927), - [anon_sym_asm] = ACTIONS(3927), - [anon_sym_AT_LBRACK] = ACTIONS(3927), - [sym___double_quote] = ACTIONS(3927), - [sym___single_quote] = ACTIONS(3927), - [sym___c_double_quote] = ACTIONS(3927), - [sym___c_single_quote] = ACTIONS(3927), - [sym___r_double_quote] = ACTIONS(3927), - [sym___r_single_quote] = ACTIONS(3927), - }, - [1491] = { - [ts_builtin_sym_end] = ACTIONS(3929), - [sym_identifier] = ACTIONS(3931), - [anon_sym_LF] = ACTIONS(3931), - [anon_sym_CR] = ACTIONS(3931), - [anon_sym_CR_LF] = ACTIONS(3931), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3931), - [anon_sym_LBRACE] = ACTIONS(3931), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3931), - [anon_sym___global] = ACTIONS(3931), - [anon_sym_type] = ACTIONS(3931), - [anon_sym_fn] = ACTIONS(3931), - [anon_sym_PLUS] = ACTIONS(3931), - [anon_sym_DASH] = ACTIONS(3931), - [anon_sym_STAR] = ACTIONS(3931), - [anon_sym_struct] = ACTIONS(3931), - [anon_sym_union] = ACTIONS(3931), - [anon_sym_pub] = ACTIONS(3931), - [anon_sym_mut] = ACTIONS(3931), - [anon_sym_enum] = ACTIONS(3931), - [anon_sym_interface] = ACTIONS(3931), - [anon_sym_QMARK] = ACTIONS(3931), - [anon_sym_BANG] = ACTIONS(3931), - [anon_sym_go] = ACTIONS(3931), - [anon_sym_spawn] = ACTIONS(3931), - [anon_sym_json_DOTdecode] = ACTIONS(3931), - [anon_sym_LBRACK2] = ACTIONS(3931), - [anon_sym_TILDE] = ACTIONS(3931), - [anon_sym_CARET] = ACTIONS(3931), - [anon_sym_AMP] = ACTIONS(3931), - [anon_sym_LT_DASH] = ACTIONS(3931), - [sym_none] = ACTIONS(3931), - [sym_true] = ACTIONS(3931), - [sym_false] = ACTIONS(3931), - [sym_nil] = ACTIONS(3931), - [anon_sym_if] = ACTIONS(3931), - [anon_sym_DOLLARif] = ACTIONS(3931), - [anon_sym_match] = ACTIONS(3931), - [anon_sym_select] = ACTIONS(3931), - [anon_sym_lock] = ACTIONS(3931), - [anon_sym_rlock] = ACTIONS(3931), - [anon_sym_unsafe] = ACTIONS(3931), - [anon_sym_sql] = ACTIONS(3931), - [sym_int_literal] = ACTIONS(3931), - [sym_float_literal] = ACTIONS(3931), - [sym_rune_literal] = ACTIONS(3931), - [anon_sym_AT] = ACTIONS(3931), - [anon_sym_shared] = ACTIONS(3931), - [anon_sym_map_LBRACK] = ACTIONS(3931), - [anon_sym_chan] = ACTIONS(3931), - [anon_sym_thread] = ACTIONS(3931), - [anon_sym_atomic] = ACTIONS(3931), - [anon_sym_assert] = ACTIONS(3931), - [anon_sym_defer] = ACTIONS(3931), - [anon_sym_goto] = ACTIONS(3931), - [anon_sym_break] = ACTIONS(3931), - [anon_sym_continue] = ACTIONS(3931), - [anon_sym_return] = ACTIONS(3931), - [anon_sym_DOLLARfor] = ACTIONS(3931), - [anon_sym_for] = ACTIONS(3931), - [anon_sym_POUND] = ACTIONS(3931), - [anon_sym_asm] = ACTIONS(3931), - [anon_sym_AT_LBRACK] = ACTIONS(3931), - [sym___double_quote] = ACTIONS(3931), - [sym___single_quote] = ACTIONS(3931), - [sym___c_double_quote] = ACTIONS(3931), - [sym___c_single_quote] = ACTIONS(3931), - [sym___r_double_quote] = ACTIONS(3931), - [sym___r_single_quote] = ACTIONS(3931), - }, - [1492] = { - [ts_builtin_sym_end] = ACTIONS(2826), - [sym_identifier] = ACTIONS(2828), - [anon_sym_LF] = ACTIONS(2828), - [anon_sym_CR] = ACTIONS(2828), - [anon_sym_CR_LF] = ACTIONS(2828), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2828), - [anon_sym_LBRACE] = ACTIONS(2828), - [anon_sym_const] = ACTIONS(2828), - [anon_sym_LPAREN] = ACTIONS(2828), - [anon_sym___global] = ACTIONS(2828), - [anon_sym_type] = ACTIONS(2828), - [anon_sym_fn] = ACTIONS(2828), - [anon_sym_PLUS] = ACTIONS(2828), - [anon_sym_DASH] = ACTIONS(2828), - [anon_sym_STAR] = ACTIONS(2828), - [anon_sym_struct] = ACTIONS(2828), - [anon_sym_union] = ACTIONS(2828), - [anon_sym_pub] = ACTIONS(2828), - [anon_sym_mut] = ACTIONS(2828), - [anon_sym_enum] = ACTIONS(2828), - [anon_sym_interface] = ACTIONS(2828), - [anon_sym_QMARK] = ACTIONS(2828), - [anon_sym_BANG] = ACTIONS(2828), - [anon_sym_go] = ACTIONS(2828), - [anon_sym_spawn] = ACTIONS(2828), - [anon_sym_json_DOTdecode] = ACTIONS(2828), - [anon_sym_LBRACK2] = ACTIONS(2828), - [anon_sym_TILDE] = ACTIONS(2828), - [anon_sym_CARET] = ACTIONS(2828), - [anon_sym_AMP] = ACTIONS(2828), - [anon_sym_LT_DASH] = ACTIONS(2828), - [sym_none] = ACTIONS(2828), - [sym_true] = ACTIONS(2828), - [sym_false] = ACTIONS(2828), - [sym_nil] = ACTIONS(2828), - [anon_sym_if] = ACTIONS(2828), - [anon_sym_DOLLARif] = ACTIONS(2828), - [anon_sym_match] = ACTIONS(2828), - [anon_sym_select] = ACTIONS(2828), - [anon_sym_lock] = ACTIONS(2828), - [anon_sym_rlock] = ACTIONS(2828), - [anon_sym_unsafe] = ACTIONS(2828), - [anon_sym_sql] = ACTIONS(2828), - [sym_int_literal] = ACTIONS(2828), - [sym_float_literal] = ACTIONS(2828), - [sym_rune_literal] = ACTIONS(2828), - [anon_sym_AT] = ACTIONS(2828), - [anon_sym_shared] = ACTIONS(2828), - [anon_sym_map_LBRACK] = ACTIONS(2828), - [anon_sym_chan] = ACTIONS(2828), - [anon_sym_thread] = ACTIONS(2828), - [anon_sym_atomic] = ACTIONS(2828), - [anon_sym_assert] = ACTIONS(2828), - [anon_sym_defer] = ACTIONS(2828), - [anon_sym_goto] = ACTIONS(2828), - [anon_sym_break] = ACTIONS(2828), - [anon_sym_continue] = ACTIONS(2828), - [anon_sym_return] = ACTIONS(2828), - [anon_sym_DOLLARfor] = ACTIONS(2828), - [anon_sym_for] = ACTIONS(2828), - [anon_sym_POUND] = ACTIONS(2828), - [anon_sym_asm] = ACTIONS(2828), - [anon_sym_AT_LBRACK] = ACTIONS(2828), - [sym___double_quote] = ACTIONS(2828), - [sym___single_quote] = ACTIONS(2828), - [sym___c_double_quote] = ACTIONS(2828), - [sym___c_single_quote] = ACTIONS(2828), - [sym___r_double_quote] = ACTIONS(2828), - [sym___r_single_quote] = ACTIONS(2828), - }, - [1493] = { - [ts_builtin_sym_end] = ACTIONS(3933), - [sym_identifier] = ACTIONS(3935), - [anon_sym_LF] = ACTIONS(3935), - [anon_sym_CR] = ACTIONS(3935), - [anon_sym_CR_LF] = ACTIONS(3935), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3935), - [anon_sym_LBRACE] = ACTIONS(3935), - [anon_sym_const] = ACTIONS(3935), - [anon_sym_LPAREN] = ACTIONS(3935), - [anon_sym___global] = ACTIONS(3935), - [anon_sym_type] = ACTIONS(3935), - [anon_sym_fn] = ACTIONS(3935), - [anon_sym_PLUS] = ACTIONS(3935), - [anon_sym_DASH] = ACTIONS(3935), - [anon_sym_STAR] = ACTIONS(3935), - [anon_sym_struct] = ACTIONS(3935), - [anon_sym_union] = ACTIONS(3935), - [anon_sym_pub] = ACTIONS(3935), - [anon_sym_mut] = ACTIONS(3935), - [anon_sym_enum] = ACTIONS(3935), - [anon_sym_interface] = ACTIONS(3935), - [anon_sym_QMARK] = ACTIONS(3935), - [anon_sym_BANG] = ACTIONS(3935), - [anon_sym_go] = ACTIONS(3935), - [anon_sym_spawn] = ACTIONS(3935), - [anon_sym_json_DOTdecode] = ACTIONS(3935), - [anon_sym_LBRACK2] = ACTIONS(3935), - [anon_sym_TILDE] = ACTIONS(3935), - [anon_sym_CARET] = ACTIONS(3935), - [anon_sym_AMP] = ACTIONS(3935), - [anon_sym_LT_DASH] = ACTIONS(3935), - [sym_none] = ACTIONS(3935), - [sym_true] = ACTIONS(3935), - [sym_false] = ACTIONS(3935), - [sym_nil] = ACTIONS(3935), - [anon_sym_if] = ACTIONS(3935), - [anon_sym_DOLLARif] = ACTIONS(3935), - [anon_sym_match] = ACTIONS(3935), - [anon_sym_select] = ACTIONS(3935), - [anon_sym_lock] = ACTIONS(3935), - [anon_sym_rlock] = ACTIONS(3935), - [anon_sym_unsafe] = ACTIONS(3935), - [anon_sym_sql] = ACTIONS(3935), - [sym_int_literal] = ACTIONS(3935), - [sym_float_literal] = ACTIONS(3935), - [sym_rune_literal] = ACTIONS(3935), - [anon_sym_AT] = ACTIONS(3935), - [anon_sym_shared] = ACTIONS(3935), - [anon_sym_map_LBRACK] = ACTIONS(3935), - [anon_sym_chan] = ACTIONS(3935), - [anon_sym_thread] = ACTIONS(3935), - [anon_sym_atomic] = ACTIONS(3935), - [anon_sym_assert] = ACTIONS(3935), - [anon_sym_defer] = ACTIONS(3935), - [anon_sym_goto] = ACTIONS(3935), - [anon_sym_break] = ACTIONS(3935), - [anon_sym_continue] = ACTIONS(3935), - [anon_sym_return] = ACTIONS(3935), - [anon_sym_DOLLARfor] = ACTIONS(3935), - [anon_sym_for] = ACTIONS(3935), - [anon_sym_POUND] = ACTIONS(3935), - [anon_sym_asm] = ACTIONS(3935), - [anon_sym_AT_LBRACK] = ACTIONS(3935), - [sym___double_quote] = ACTIONS(3935), - [sym___single_quote] = ACTIONS(3935), - [sym___c_double_quote] = ACTIONS(3935), - [sym___c_single_quote] = ACTIONS(3935), - [sym___r_double_quote] = ACTIONS(3935), - [sym___r_single_quote] = ACTIONS(3935), - }, - [1494] = { - [ts_builtin_sym_end] = ACTIONS(3937), - [sym_identifier] = ACTIONS(3939), - [anon_sym_LF] = ACTIONS(3939), - [anon_sym_CR] = ACTIONS(3939), - [anon_sym_CR_LF] = ACTIONS(3939), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3939), - [anon_sym_LBRACE] = ACTIONS(3939), - [anon_sym_const] = ACTIONS(3939), - [anon_sym_LPAREN] = ACTIONS(3939), - [anon_sym___global] = ACTIONS(3939), - [anon_sym_type] = ACTIONS(3939), - [anon_sym_fn] = ACTIONS(3939), - [anon_sym_PLUS] = ACTIONS(3939), - [anon_sym_DASH] = ACTIONS(3939), - [anon_sym_STAR] = ACTIONS(3939), - [anon_sym_struct] = ACTIONS(3939), - [anon_sym_union] = ACTIONS(3939), - [anon_sym_pub] = ACTIONS(3939), - [anon_sym_mut] = ACTIONS(3939), - [anon_sym_enum] = ACTIONS(3939), - [anon_sym_interface] = ACTIONS(3939), - [anon_sym_QMARK] = ACTIONS(3939), - [anon_sym_BANG] = ACTIONS(3939), - [anon_sym_go] = ACTIONS(3939), - [anon_sym_spawn] = ACTIONS(3939), - [anon_sym_json_DOTdecode] = ACTIONS(3939), - [anon_sym_LBRACK2] = ACTIONS(3939), - [anon_sym_TILDE] = ACTIONS(3939), - [anon_sym_CARET] = ACTIONS(3939), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_LT_DASH] = ACTIONS(3939), - [sym_none] = ACTIONS(3939), - [sym_true] = ACTIONS(3939), - [sym_false] = ACTIONS(3939), - [sym_nil] = ACTIONS(3939), - [anon_sym_if] = ACTIONS(3939), - [anon_sym_DOLLARif] = ACTIONS(3939), - [anon_sym_match] = ACTIONS(3939), - [anon_sym_select] = ACTIONS(3939), - [anon_sym_lock] = ACTIONS(3939), - [anon_sym_rlock] = ACTIONS(3939), - [anon_sym_unsafe] = ACTIONS(3939), - [anon_sym_sql] = ACTIONS(3939), - [sym_int_literal] = ACTIONS(3939), - [sym_float_literal] = ACTIONS(3939), - [sym_rune_literal] = ACTIONS(3939), - [anon_sym_AT] = ACTIONS(3939), - [anon_sym_shared] = ACTIONS(3939), - [anon_sym_map_LBRACK] = ACTIONS(3939), - [anon_sym_chan] = ACTIONS(3939), - [anon_sym_thread] = ACTIONS(3939), - [anon_sym_atomic] = ACTIONS(3939), - [anon_sym_assert] = ACTIONS(3939), - [anon_sym_defer] = ACTIONS(3939), - [anon_sym_goto] = ACTIONS(3939), - [anon_sym_break] = ACTIONS(3939), - [anon_sym_continue] = ACTIONS(3939), - [anon_sym_return] = ACTIONS(3939), - [anon_sym_DOLLARfor] = ACTIONS(3939), - [anon_sym_for] = ACTIONS(3939), - [anon_sym_POUND] = ACTIONS(3939), - [anon_sym_asm] = ACTIONS(3939), - [anon_sym_AT_LBRACK] = ACTIONS(3939), - [sym___double_quote] = ACTIONS(3939), - [sym___single_quote] = ACTIONS(3939), - [sym___c_double_quote] = ACTIONS(3939), - [sym___c_single_quote] = ACTIONS(3939), - [sym___r_double_quote] = ACTIONS(3939), - [sym___r_single_quote] = ACTIONS(3939), - }, - [1495] = { - [ts_builtin_sym_end] = ACTIONS(3941), - [sym_identifier] = ACTIONS(3943), - [anon_sym_LF] = ACTIONS(3943), - [anon_sym_CR] = ACTIONS(3943), - [anon_sym_CR_LF] = ACTIONS(3943), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3943), - [anon_sym_LBRACE] = ACTIONS(3943), - [anon_sym_const] = ACTIONS(3943), - [anon_sym_LPAREN] = ACTIONS(3943), - [anon_sym___global] = ACTIONS(3943), - [anon_sym_type] = ACTIONS(3943), - [anon_sym_fn] = ACTIONS(3943), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_STAR] = ACTIONS(3943), - [anon_sym_struct] = ACTIONS(3943), - [anon_sym_union] = ACTIONS(3943), - [anon_sym_pub] = ACTIONS(3943), - [anon_sym_mut] = ACTIONS(3943), - [anon_sym_enum] = ACTIONS(3943), - [anon_sym_interface] = ACTIONS(3943), - [anon_sym_QMARK] = ACTIONS(3943), - [anon_sym_BANG] = ACTIONS(3943), - [anon_sym_go] = ACTIONS(3943), - [anon_sym_spawn] = ACTIONS(3943), - [anon_sym_json_DOTdecode] = ACTIONS(3943), - [anon_sym_LBRACK2] = ACTIONS(3943), - [anon_sym_TILDE] = ACTIONS(3943), - [anon_sym_CARET] = ACTIONS(3943), - [anon_sym_AMP] = ACTIONS(3943), - [anon_sym_LT_DASH] = ACTIONS(3943), - [sym_none] = ACTIONS(3943), - [sym_true] = ACTIONS(3943), - [sym_false] = ACTIONS(3943), - [sym_nil] = ACTIONS(3943), - [anon_sym_if] = ACTIONS(3943), - [anon_sym_DOLLARif] = ACTIONS(3943), - [anon_sym_match] = ACTIONS(3943), - [anon_sym_select] = ACTIONS(3943), - [anon_sym_lock] = ACTIONS(3943), - [anon_sym_rlock] = ACTIONS(3943), - [anon_sym_unsafe] = ACTIONS(3943), - [anon_sym_sql] = ACTIONS(3943), - [sym_int_literal] = ACTIONS(3943), - [sym_float_literal] = ACTIONS(3943), - [sym_rune_literal] = ACTIONS(3943), - [anon_sym_AT] = ACTIONS(3943), - [anon_sym_shared] = ACTIONS(3943), - [anon_sym_map_LBRACK] = ACTIONS(3943), - [anon_sym_chan] = ACTIONS(3943), - [anon_sym_thread] = ACTIONS(3943), - [anon_sym_atomic] = ACTIONS(3943), - [anon_sym_assert] = ACTIONS(3943), - [anon_sym_defer] = ACTIONS(3943), - [anon_sym_goto] = ACTIONS(3943), - [anon_sym_break] = ACTIONS(3943), - [anon_sym_continue] = ACTIONS(3943), - [anon_sym_return] = ACTIONS(3943), - [anon_sym_DOLLARfor] = ACTIONS(3943), - [anon_sym_for] = ACTIONS(3943), - [anon_sym_POUND] = ACTIONS(3943), - [anon_sym_asm] = ACTIONS(3943), - [anon_sym_AT_LBRACK] = ACTIONS(3943), - [sym___double_quote] = ACTIONS(3943), - [sym___single_quote] = ACTIONS(3943), - [sym___c_double_quote] = ACTIONS(3943), - [sym___c_single_quote] = ACTIONS(3943), - [sym___r_double_quote] = ACTIONS(3943), - [sym___r_single_quote] = ACTIONS(3943), - }, - [1496] = { - [ts_builtin_sym_end] = ACTIONS(3945), - [sym_identifier] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3947), - [anon_sym_CR] = ACTIONS(3947), - [anon_sym_CR_LF] = ACTIONS(3947), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3947), - [anon_sym_LBRACE] = ACTIONS(3947), - [anon_sym_const] = ACTIONS(3947), - [anon_sym_LPAREN] = ACTIONS(3947), - [anon_sym___global] = ACTIONS(3947), - [anon_sym_type] = ACTIONS(3947), - [anon_sym_fn] = ACTIONS(3947), - [anon_sym_PLUS] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_STAR] = ACTIONS(3947), - [anon_sym_struct] = ACTIONS(3947), - [anon_sym_union] = ACTIONS(3947), - [anon_sym_pub] = ACTIONS(3947), - [anon_sym_mut] = ACTIONS(3947), - [anon_sym_enum] = ACTIONS(3947), - [anon_sym_interface] = ACTIONS(3947), - [anon_sym_QMARK] = ACTIONS(3947), - [anon_sym_BANG] = ACTIONS(3947), - [anon_sym_go] = ACTIONS(3947), - [anon_sym_spawn] = ACTIONS(3947), - [anon_sym_json_DOTdecode] = ACTIONS(3947), - [anon_sym_LBRACK2] = ACTIONS(3947), - [anon_sym_TILDE] = ACTIONS(3947), - [anon_sym_CARET] = ACTIONS(3947), - [anon_sym_AMP] = ACTIONS(3947), - [anon_sym_LT_DASH] = ACTIONS(3947), - [sym_none] = ACTIONS(3947), - [sym_true] = ACTIONS(3947), - [sym_false] = ACTIONS(3947), - [sym_nil] = ACTIONS(3947), - [anon_sym_if] = ACTIONS(3947), - [anon_sym_DOLLARif] = ACTIONS(3947), - [anon_sym_match] = ACTIONS(3947), - [anon_sym_select] = ACTIONS(3947), - [anon_sym_lock] = ACTIONS(3947), - [anon_sym_rlock] = ACTIONS(3947), - [anon_sym_unsafe] = ACTIONS(3947), - [anon_sym_sql] = ACTIONS(3947), - [sym_int_literal] = ACTIONS(3947), - [sym_float_literal] = ACTIONS(3947), - [sym_rune_literal] = ACTIONS(3947), - [anon_sym_AT] = ACTIONS(3947), - [anon_sym_shared] = ACTIONS(3947), - [anon_sym_map_LBRACK] = ACTIONS(3947), - [anon_sym_chan] = ACTIONS(3947), - [anon_sym_thread] = ACTIONS(3947), - [anon_sym_atomic] = ACTIONS(3947), - [anon_sym_assert] = ACTIONS(3947), - [anon_sym_defer] = ACTIONS(3947), - [anon_sym_goto] = ACTIONS(3947), - [anon_sym_break] = ACTIONS(3947), - [anon_sym_continue] = ACTIONS(3947), - [anon_sym_return] = ACTIONS(3947), - [anon_sym_DOLLARfor] = ACTIONS(3947), - [anon_sym_for] = ACTIONS(3947), - [anon_sym_POUND] = ACTIONS(3947), - [anon_sym_asm] = ACTIONS(3947), - [anon_sym_AT_LBRACK] = ACTIONS(3947), - [sym___double_quote] = ACTIONS(3947), - [sym___single_quote] = ACTIONS(3947), - [sym___c_double_quote] = ACTIONS(3947), - [sym___c_single_quote] = ACTIONS(3947), - [sym___r_double_quote] = ACTIONS(3947), - [sym___r_single_quote] = ACTIONS(3947), - }, - [1497] = { - [ts_builtin_sym_end] = ACTIONS(3949), - [sym_identifier] = ACTIONS(3951), - [anon_sym_LF] = ACTIONS(3951), - [anon_sym_CR] = ACTIONS(3951), - [anon_sym_CR_LF] = ACTIONS(3951), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3951), - [anon_sym_LBRACE] = ACTIONS(3951), - [anon_sym_const] = ACTIONS(3951), - [anon_sym_LPAREN] = ACTIONS(3951), - [anon_sym___global] = ACTIONS(3951), - [anon_sym_type] = ACTIONS(3951), - [anon_sym_fn] = ACTIONS(3951), - [anon_sym_PLUS] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_STAR] = ACTIONS(3951), - [anon_sym_struct] = ACTIONS(3951), - [anon_sym_union] = ACTIONS(3951), - [anon_sym_pub] = ACTIONS(3951), - [anon_sym_mut] = ACTIONS(3951), - [anon_sym_enum] = ACTIONS(3951), - [anon_sym_interface] = ACTIONS(3951), - [anon_sym_QMARK] = ACTIONS(3951), - [anon_sym_BANG] = ACTIONS(3951), - [anon_sym_go] = ACTIONS(3951), - [anon_sym_spawn] = ACTIONS(3951), - [anon_sym_json_DOTdecode] = ACTIONS(3951), - [anon_sym_LBRACK2] = ACTIONS(3951), - [anon_sym_TILDE] = ACTIONS(3951), - [anon_sym_CARET] = ACTIONS(3951), - [anon_sym_AMP] = ACTIONS(3951), - [anon_sym_LT_DASH] = ACTIONS(3951), - [sym_none] = ACTIONS(3951), - [sym_true] = ACTIONS(3951), - [sym_false] = ACTIONS(3951), - [sym_nil] = ACTIONS(3951), - [anon_sym_if] = ACTIONS(3951), - [anon_sym_DOLLARif] = ACTIONS(3951), - [anon_sym_match] = ACTIONS(3951), - [anon_sym_select] = ACTIONS(3951), - [anon_sym_lock] = ACTIONS(3951), - [anon_sym_rlock] = ACTIONS(3951), - [anon_sym_unsafe] = ACTIONS(3951), - [anon_sym_sql] = ACTIONS(3951), - [sym_int_literal] = ACTIONS(3951), - [sym_float_literal] = ACTIONS(3951), - [sym_rune_literal] = ACTIONS(3951), - [anon_sym_AT] = ACTIONS(3951), - [anon_sym_shared] = ACTIONS(3951), - [anon_sym_map_LBRACK] = ACTIONS(3951), - [anon_sym_chan] = ACTIONS(3951), - [anon_sym_thread] = ACTIONS(3951), - [anon_sym_atomic] = ACTIONS(3951), - [anon_sym_assert] = ACTIONS(3951), - [anon_sym_defer] = ACTIONS(3951), - [anon_sym_goto] = ACTIONS(3951), - [anon_sym_break] = ACTIONS(3951), - [anon_sym_continue] = ACTIONS(3951), - [anon_sym_return] = ACTIONS(3951), - [anon_sym_DOLLARfor] = ACTIONS(3951), - [anon_sym_for] = ACTIONS(3951), - [anon_sym_POUND] = ACTIONS(3951), - [anon_sym_asm] = ACTIONS(3951), - [anon_sym_AT_LBRACK] = ACTIONS(3951), - [sym___double_quote] = ACTIONS(3951), - [sym___single_quote] = ACTIONS(3951), - [sym___c_double_quote] = ACTIONS(3951), - [sym___c_single_quote] = ACTIONS(3951), - [sym___r_double_quote] = ACTIONS(3951), - [sym___r_single_quote] = ACTIONS(3951), - }, - [1498] = { - [ts_builtin_sym_end] = ACTIONS(3953), - [sym_identifier] = ACTIONS(3955), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_CR] = ACTIONS(3955), - [anon_sym_CR_LF] = ACTIONS(3955), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3955), - [anon_sym_LBRACE] = ACTIONS(3955), - [anon_sym_const] = ACTIONS(3955), - [anon_sym_LPAREN] = ACTIONS(3955), - [anon_sym___global] = ACTIONS(3955), - [anon_sym_type] = ACTIONS(3955), - [anon_sym_fn] = ACTIONS(3955), - [anon_sym_PLUS] = ACTIONS(3955), - [anon_sym_DASH] = ACTIONS(3955), - [anon_sym_STAR] = ACTIONS(3955), - [anon_sym_struct] = ACTIONS(3955), - [anon_sym_union] = ACTIONS(3955), - [anon_sym_pub] = ACTIONS(3955), - [anon_sym_mut] = ACTIONS(3955), - [anon_sym_enum] = ACTIONS(3955), - [anon_sym_interface] = ACTIONS(3955), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_BANG] = ACTIONS(3955), - [anon_sym_go] = ACTIONS(3955), - [anon_sym_spawn] = ACTIONS(3955), - [anon_sym_json_DOTdecode] = ACTIONS(3955), - [anon_sym_LBRACK2] = ACTIONS(3955), - [anon_sym_TILDE] = ACTIONS(3955), - [anon_sym_CARET] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3955), - [anon_sym_LT_DASH] = ACTIONS(3955), - [sym_none] = ACTIONS(3955), - [sym_true] = ACTIONS(3955), - [sym_false] = ACTIONS(3955), - [sym_nil] = ACTIONS(3955), - [anon_sym_if] = ACTIONS(3955), - [anon_sym_DOLLARif] = ACTIONS(3955), - [anon_sym_match] = ACTIONS(3955), - [anon_sym_select] = ACTIONS(3955), - [anon_sym_lock] = ACTIONS(3955), - [anon_sym_rlock] = ACTIONS(3955), - [anon_sym_unsafe] = ACTIONS(3955), - [anon_sym_sql] = ACTIONS(3955), - [sym_int_literal] = ACTIONS(3955), - [sym_float_literal] = ACTIONS(3955), - [sym_rune_literal] = ACTIONS(3955), - [anon_sym_AT] = ACTIONS(3955), - [anon_sym_shared] = ACTIONS(3955), - [anon_sym_map_LBRACK] = ACTIONS(3955), - [anon_sym_chan] = ACTIONS(3955), - [anon_sym_thread] = ACTIONS(3955), - [anon_sym_atomic] = ACTIONS(3955), - [anon_sym_assert] = ACTIONS(3955), - [anon_sym_defer] = ACTIONS(3955), - [anon_sym_goto] = ACTIONS(3955), - [anon_sym_break] = ACTIONS(3955), - [anon_sym_continue] = ACTIONS(3955), - [anon_sym_return] = ACTIONS(3955), - [anon_sym_DOLLARfor] = ACTIONS(3955), - [anon_sym_for] = ACTIONS(3955), - [anon_sym_POUND] = ACTIONS(3955), - [anon_sym_asm] = ACTIONS(3955), - [anon_sym_AT_LBRACK] = ACTIONS(3955), - [sym___double_quote] = ACTIONS(3955), - [sym___single_quote] = ACTIONS(3955), - [sym___c_double_quote] = ACTIONS(3955), - [sym___c_single_quote] = ACTIONS(3955), - [sym___r_double_quote] = ACTIONS(3955), - [sym___r_single_quote] = ACTIONS(3955), - }, - [1499] = { - [ts_builtin_sym_end] = ACTIONS(3957), - [sym_identifier] = ACTIONS(3959), - [anon_sym_LF] = ACTIONS(3959), - [anon_sym_CR] = ACTIONS(3959), - [anon_sym_CR_LF] = ACTIONS(3959), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3959), - [anon_sym_LBRACE] = ACTIONS(3959), - [anon_sym_const] = ACTIONS(3959), - [anon_sym_LPAREN] = ACTIONS(3959), - [anon_sym___global] = ACTIONS(3959), - [anon_sym_type] = ACTIONS(3959), - [anon_sym_fn] = ACTIONS(3959), - [anon_sym_PLUS] = ACTIONS(3959), - [anon_sym_DASH] = ACTIONS(3959), - [anon_sym_STAR] = ACTIONS(3959), - [anon_sym_struct] = ACTIONS(3959), - [anon_sym_union] = ACTIONS(3959), - [anon_sym_pub] = ACTIONS(3959), - [anon_sym_mut] = ACTIONS(3959), - [anon_sym_enum] = ACTIONS(3959), - [anon_sym_interface] = ACTIONS(3959), - [anon_sym_QMARK] = ACTIONS(3959), - [anon_sym_BANG] = ACTIONS(3959), - [anon_sym_go] = ACTIONS(3959), - [anon_sym_spawn] = ACTIONS(3959), - [anon_sym_json_DOTdecode] = ACTIONS(3959), - [anon_sym_LBRACK2] = ACTIONS(3959), - [anon_sym_TILDE] = ACTIONS(3959), - [anon_sym_CARET] = ACTIONS(3959), - [anon_sym_AMP] = ACTIONS(3959), - [anon_sym_LT_DASH] = ACTIONS(3959), - [sym_none] = ACTIONS(3959), - [sym_true] = ACTIONS(3959), - [sym_false] = ACTIONS(3959), - [sym_nil] = ACTIONS(3959), - [anon_sym_if] = ACTIONS(3959), - [anon_sym_DOLLARif] = ACTIONS(3959), - [anon_sym_match] = ACTIONS(3959), - [anon_sym_select] = ACTIONS(3959), - [anon_sym_lock] = ACTIONS(3959), - [anon_sym_rlock] = ACTIONS(3959), - [anon_sym_unsafe] = ACTIONS(3959), - [anon_sym_sql] = ACTIONS(3959), - [sym_int_literal] = ACTIONS(3959), - [sym_float_literal] = ACTIONS(3959), - [sym_rune_literal] = ACTIONS(3959), - [anon_sym_AT] = ACTIONS(3959), - [anon_sym_shared] = ACTIONS(3959), - [anon_sym_map_LBRACK] = ACTIONS(3959), - [anon_sym_chan] = ACTIONS(3959), - [anon_sym_thread] = ACTIONS(3959), - [anon_sym_atomic] = ACTIONS(3959), - [anon_sym_assert] = ACTIONS(3959), - [anon_sym_defer] = ACTIONS(3959), - [anon_sym_goto] = ACTIONS(3959), - [anon_sym_break] = ACTIONS(3959), - [anon_sym_continue] = ACTIONS(3959), - [anon_sym_return] = ACTIONS(3959), - [anon_sym_DOLLARfor] = ACTIONS(3959), - [anon_sym_for] = ACTIONS(3959), - [anon_sym_POUND] = ACTIONS(3959), - [anon_sym_asm] = ACTIONS(3959), - [anon_sym_AT_LBRACK] = ACTIONS(3959), - [sym___double_quote] = ACTIONS(3959), - [sym___single_quote] = ACTIONS(3959), - [sym___c_double_quote] = ACTIONS(3959), - [sym___c_single_quote] = ACTIONS(3959), - [sym___r_double_quote] = ACTIONS(3959), - [sym___r_single_quote] = ACTIONS(3959), - }, - [1500] = { - [ts_builtin_sym_end] = ACTIONS(3961), - [sym_identifier] = ACTIONS(3963), - [anon_sym_LF] = ACTIONS(3963), - [anon_sym_CR] = ACTIONS(3963), - [anon_sym_CR_LF] = ACTIONS(3963), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3963), - [anon_sym_LBRACE] = ACTIONS(3963), - [anon_sym_const] = ACTIONS(3963), - [anon_sym_LPAREN] = ACTIONS(3963), - [anon_sym___global] = ACTIONS(3963), - [anon_sym_type] = ACTIONS(3963), - [anon_sym_fn] = ACTIONS(3963), - [anon_sym_PLUS] = ACTIONS(3963), - [anon_sym_DASH] = ACTIONS(3963), - [anon_sym_STAR] = ACTIONS(3963), - [anon_sym_struct] = ACTIONS(3963), - [anon_sym_union] = ACTIONS(3963), - [anon_sym_pub] = ACTIONS(3963), - [anon_sym_mut] = ACTIONS(3963), - [anon_sym_enum] = ACTIONS(3963), - [anon_sym_interface] = ACTIONS(3963), - [anon_sym_QMARK] = ACTIONS(3963), - [anon_sym_BANG] = ACTIONS(3963), - [anon_sym_go] = ACTIONS(3963), - [anon_sym_spawn] = ACTIONS(3963), - [anon_sym_json_DOTdecode] = ACTIONS(3963), - [anon_sym_LBRACK2] = ACTIONS(3963), - [anon_sym_TILDE] = ACTIONS(3963), - [anon_sym_CARET] = ACTIONS(3963), - [anon_sym_AMP] = ACTIONS(3963), - [anon_sym_LT_DASH] = ACTIONS(3963), - [sym_none] = ACTIONS(3963), - [sym_true] = ACTIONS(3963), - [sym_false] = ACTIONS(3963), - [sym_nil] = ACTIONS(3963), - [anon_sym_if] = ACTIONS(3963), - [anon_sym_DOLLARif] = ACTIONS(3963), - [anon_sym_match] = ACTIONS(3963), - [anon_sym_select] = ACTIONS(3963), - [anon_sym_lock] = ACTIONS(3963), - [anon_sym_rlock] = ACTIONS(3963), - [anon_sym_unsafe] = ACTIONS(3963), - [anon_sym_sql] = ACTIONS(3963), - [sym_int_literal] = ACTIONS(3963), - [sym_float_literal] = ACTIONS(3963), - [sym_rune_literal] = ACTIONS(3963), - [anon_sym_AT] = ACTIONS(3963), - [anon_sym_shared] = ACTIONS(3963), - [anon_sym_map_LBRACK] = ACTIONS(3963), - [anon_sym_chan] = ACTIONS(3963), - [anon_sym_thread] = ACTIONS(3963), - [anon_sym_atomic] = ACTIONS(3963), - [anon_sym_assert] = ACTIONS(3963), - [anon_sym_defer] = ACTIONS(3963), - [anon_sym_goto] = ACTIONS(3963), - [anon_sym_break] = ACTIONS(3963), - [anon_sym_continue] = ACTIONS(3963), - [anon_sym_return] = ACTIONS(3963), - [anon_sym_DOLLARfor] = ACTIONS(3963), - [anon_sym_for] = ACTIONS(3963), - [anon_sym_POUND] = ACTIONS(3963), - [anon_sym_asm] = ACTIONS(3963), - [anon_sym_AT_LBRACK] = ACTIONS(3963), - [sym___double_quote] = ACTIONS(3963), - [sym___single_quote] = ACTIONS(3963), - [sym___c_double_quote] = ACTIONS(3963), - [sym___c_single_quote] = ACTIONS(3963), - [sym___r_double_quote] = ACTIONS(3963), - [sym___r_single_quote] = ACTIONS(3963), - }, - [1501] = { - [ts_builtin_sym_end] = ACTIONS(3965), - [sym_identifier] = ACTIONS(3967), - [anon_sym_LF] = ACTIONS(3967), - [anon_sym_CR] = ACTIONS(3967), - [anon_sym_CR_LF] = ACTIONS(3967), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3967), - [anon_sym_LBRACE] = ACTIONS(3967), - [anon_sym_const] = ACTIONS(3967), - [anon_sym_LPAREN] = ACTIONS(3967), - [anon_sym___global] = ACTIONS(3967), - [anon_sym_type] = ACTIONS(3967), - [anon_sym_fn] = ACTIONS(3967), - [anon_sym_PLUS] = ACTIONS(3967), - [anon_sym_DASH] = ACTIONS(3967), - [anon_sym_STAR] = ACTIONS(3967), - [anon_sym_struct] = ACTIONS(3967), - [anon_sym_union] = ACTIONS(3967), - [anon_sym_pub] = ACTIONS(3967), - [anon_sym_mut] = ACTIONS(3967), - [anon_sym_enum] = ACTIONS(3967), - [anon_sym_interface] = ACTIONS(3967), - [anon_sym_QMARK] = ACTIONS(3967), - [anon_sym_BANG] = ACTIONS(3967), - [anon_sym_go] = ACTIONS(3967), - [anon_sym_spawn] = ACTIONS(3967), - [anon_sym_json_DOTdecode] = ACTIONS(3967), - [anon_sym_LBRACK2] = ACTIONS(3967), - [anon_sym_TILDE] = ACTIONS(3967), - [anon_sym_CARET] = ACTIONS(3967), - [anon_sym_AMP] = ACTIONS(3967), - [anon_sym_LT_DASH] = ACTIONS(3967), - [sym_none] = ACTIONS(3967), - [sym_true] = ACTIONS(3967), - [sym_false] = ACTIONS(3967), - [sym_nil] = ACTIONS(3967), - [anon_sym_if] = ACTIONS(3967), - [anon_sym_DOLLARif] = ACTIONS(3967), - [anon_sym_match] = ACTIONS(3967), - [anon_sym_select] = ACTIONS(3967), - [anon_sym_lock] = ACTIONS(3967), - [anon_sym_rlock] = ACTIONS(3967), - [anon_sym_unsafe] = ACTIONS(3967), - [anon_sym_sql] = ACTIONS(3967), - [sym_int_literal] = ACTIONS(3967), - [sym_float_literal] = ACTIONS(3967), - [sym_rune_literal] = ACTIONS(3967), - [anon_sym_AT] = ACTIONS(3967), - [anon_sym_shared] = ACTIONS(3967), - [anon_sym_map_LBRACK] = ACTIONS(3967), - [anon_sym_chan] = ACTIONS(3967), - [anon_sym_thread] = ACTIONS(3967), - [anon_sym_atomic] = ACTIONS(3967), - [anon_sym_assert] = ACTIONS(3967), - [anon_sym_defer] = ACTIONS(3967), - [anon_sym_goto] = ACTIONS(3967), - [anon_sym_break] = ACTIONS(3967), - [anon_sym_continue] = ACTIONS(3967), - [anon_sym_return] = ACTIONS(3967), - [anon_sym_DOLLARfor] = ACTIONS(3967), - [anon_sym_for] = ACTIONS(3967), - [anon_sym_POUND] = ACTIONS(3967), - [anon_sym_asm] = ACTIONS(3967), - [anon_sym_AT_LBRACK] = ACTIONS(3967), - [sym___double_quote] = ACTIONS(3967), - [sym___single_quote] = ACTIONS(3967), - [sym___c_double_quote] = ACTIONS(3967), - [sym___c_single_quote] = ACTIONS(3967), - [sym___r_double_quote] = ACTIONS(3967), - [sym___r_single_quote] = ACTIONS(3967), - }, - [1502] = { - [ts_builtin_sym_end] = ACTIONS(3969), - [sym_identifier] = ACTIONS(3971), - [anon_sym_LF] = ACTIONS(3971), - [anon_sym_CR] = ACTIONS(3971), - [anon_sym_CR_LF] = ACTIONS(3971), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_LBRACE] = ACTIONS(3971), - [anon_sym_const] = ACTIONS(3971), - [anon_sym_LPAREN] = ACTIONS(3971), - [anon_sym___global] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(3971), - [anon_sym_fn] = ACTIONS(3971), - [anon_sym_PLUS] = ACTIONS(3971), - [anon_sym_DASH] = ACTIONS(3971), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_struct] = ACTIONS(3971), - [anon_sym_union] = ACTIONS(3971), - [anon_sym_pub] = ACTIONS(3971), - [anon_sym_mut] = ACTIONS(3971), - [anon_sym_enum] = ACTIONS(3971), - [anon_sym_interface] = ACTIONS(3971), - [anon_sym_QMARK] = ACTIONS(3971), - [anon_sym_BANG] = ACTIONS(3971), - [anon_sym_go] = ACTIONS(3971), - [anon_sym_spawn] = ACTIONS(3971), - [anon_sym_json_DOTdecode] = ACTIONS(3971), - [anon_sym_LBRACK2] = ACTIONS(3971), - [anon_sym_TILDE] = ACTIONS(3971), - [anon_sym_CARET] = ACTIONS(3971), - [anon_sym_AMP] = ACTIONS(3971), - [anon_sym_LT_DASH] = ACTIONS(3971), - [sym_none] = ACTIONS(3971), - [sym_true] = ACTIONS(3971), - [sym_false] = ACTIONS(3971), - [sym_nil] = ACTIONS(3971), - [anon_sym_if] = ACTIONS(3971), - [anon_sym_DOLLARif] = ACTIONS(3971), - [anon_sym_match] = ACTIONS(3971), - [anon_sym_select] = ACTIONS(3971), - [anon_sym_lock] = ACTIONS(3971), - [anon_sym_rlock] = ACTIONS(3971), - [anon_sym_unsafe] = ACTIONS(3971), - [anon_sym_sql] = ACTIONS(3971), - [sym_int_literal] = ACTIONS(3971), - [sym_float_literal] = ACTIONS(3971), - [sym_rune_literal] = ACTIONS(3971), - [anon_sym_AT] = ACTIONS(3971), - [anon_sym_shared] = ACTIONS(3971), - [anon_sym_map_LBRACK] = ACTIONS(3971), - [anon_sym_chan] = ACTIONS(3971), - [anon_sym_thread] = ACTIONS(3971), - [anon_sym_atomic] = ACTIONS(3971), - [anon_sym_assert] = ACTIONS(3971), - [anon_sym_defer] = ACTIONS(3971), - [anon_sym_goto] = ACTIONS(3971), - [anon_sym_break] = ACTIONS(3971), - [anon_sym_continue] = ACTIONS(3971), - [anon_sym_return] = ACTIONS(3971), - [anon_sym_DOLLARfor] = ACTIONS(3971), - [anon_sym_for] = ACTIONS(3971), - [anon_sym_POUND] = ACTIONS(3971), - [anon_sym_asm] = ACTIONS(3971), - [anon_sym_AT_LBRACK] = ACTIONS(3971), - [sym___double_quote] = ACTIONS(3971), - [sym___single_quote] = ACTIONS(3971), - [sym___c_double_quote] = ACTIONS(3971), - [sym___c_single_quote] = ACTIONS(3971), - [sym___r_double_quote] = ACTIONS(3971), - [sym___r_single_quote] = ACTIONS(3971), - }, - [1503] = { - [ts_builtin_sym_end] = ACTIONS(3973), - [sym_identifier] = ACTIONS(3975), - [anon_sym_LF] = ACTIONS(3975), - [anon_sym_CR] = ACTIONS(3975), - [anon_sym_CR_LF] = ACTIONS(3975), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3975), - [anon_sym_LBRACE] = ACTIONS(3975), - [anon_sym_const] = ACTIONS(3975), - [anon_sym_LPAREN] = ACTIONS(3975), - [anon_sym___global] = ACTIONS(3975), - [anon_sym_type] = ACTIONS(3975), - [anon_sym_fn] = ACTIONS(3975), - [anon_sym_PLUS] = ACTIONS(3975), - [anon_sym_DASH] = ACTIONS(3975), - [anon_sym_STAR] = ACTIONS(3975), - [anon_sym_struct] = ACTIONS(3975), - [anon_sym_union] = ACTIONS(3975), - [anon_sym_pub] = ACTIONS(3975), - [anon_sym_mut] = ACTIONS(3975), - [anon_sym_enum] = ACTIONS(3975), - [anon_sym_interface] = ACTIONS(3975), - [anon_sym_QMARK] = ACTIONS(3975), - [anon_sym_BANG] = ACTIONS(3975), - [anon_sym_go] = ACTIONS(3975), - [anon_sym_spawn] = ACTIONS(3975), - [anon_sym_json_DOTdecode] = ACTIONS(3975), - [anon_sym_LBRACK2] = ACTIONS(3975), - [anon_sym_TILDE] = ACTIONS(3975), - [anon_sym_CARET] = ACTIONS(3975), - [anon_sym_AMP] = ACTIONS(3975), - [anon_sym_LT_DASH] = ACTIONS(3975), - [sym_none] = ACTIONS(3975), - [sym_true] = ACTIONS(3975), - [sym_false] = ACTIONS(3975), - [sym_nil] = ACTIONS(3975), - [anon_sym_if] = ACTIONS(3975), - [anon_sym_DOLLARif] = ACTIONS(3975), - [anon_sym_match] = ACTIONS(3975), - [anon_sym_select] = ACTIONS(3975), - [anon_sym_lock] = ACTIONS(3975), - [anon_sym_rlock] = ACTIONS(3975), - [anon_sym_unsafe] = ACTIONS(3975), - [anon_sym_sql] = ACTIONS(3975), - [sym_int_literal] = ACTIONS(3975), - [sym_float_literal] = ACTIONS(3975), - [sym_rune_literal] = ACTIONS(3975), - [anon_sym_AT] = ACTIONS(3975), - [anon_sym_shared] = ACTIONS(3975), - [anon_sym_map_LBRACK] = ACTIONS(3975), - [anon_sym_chan] = ACTIONS(3975), - [anon_sym_thread] = ACTIONS(3975), - [anon_sym_atomic] = ACTIONS(3975), - [anon_sym_assert] = ACTIONS(3975), - [anon_sym_defer] = ACTIONS(3975), - [anon_sym_goto] = ACTIONS(3975), - [anon_sym_break] = ACTIONS(3975), - [anon_sym_continue] = ACTIONS(3975), - [anon_sym_return] = ACTIONS(3975), - [anon_sym_DOLLARfor] = ACTIONS(3975), - [anon_sym_for] = ACTIONS(3975), - [anon_sym_POUND] = ACTIONS(3975), - [anon_sym_asm] = ACTIONS(3975), - [anon_sym_AT_LBRACK] = ACTIONS(3975), - [sym___double_quote] = ACTIONS(3975), - [sym___single_quote] = ACTIONS(3975), - [sym___c_double_quote] = ACTIONS(3975), - [sym___c_single_quote] = ACTIONS(3975), - [sym___r_double_quote] = ACTIONS(3975), - [sym___r_single_quote] = ACTIONS(3975), - }, - [1504] = { - [ts_builtin_sym_end] = ACTIONS(3977), - [sym_identifier] = ACTIONS(3979), - [anon_sym_LF] = ACTIONS(3979), - [anon_sym_CR] = ACTIONS(3979), - [anon_sym_CR_LF] = ACTIONS(3979), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3979), - [anon_sym_LBRACE] = ACTIONS(3979), - [anon_sym_const] = ACTIONS(3979), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym___global] = ACTIONS(3979), - [anon_sym_type] = ACTIONS(3979), - [anon_sym_fn] = ACTIONS(3979), - [anon_sym_PLUS] = ACTIONS(3979), - [anon_sym_DASH] = ACTIONS(3979), - [anon_sym_STAR] = ACTIONS(3979), - [anon_sym_struct] = ACTIONS(3979), - [anon_sym_union] = ACTIONS(3979), - [anon_sym_pub] = ACTIONS(3979), - [anon_sym_mut] = ACTIONS(3979), - [anon_sym_enum] = ACTIONS(3979), - [anon_sym_interface] = ACTIONS(3979), - [anon_sym_QMARK] = ACTIONS(3979), - [anon_sym_BANG] = ACTIONS(3979), - [anon_sym_go] = ACTIONS(3979), - [anon_sym_spawn] = ACTIONS(3979), - [anon_sym_json_DOTdecode] = ACTIONS(3979), - [anon_sym_LBRACK2] = ACTIONS(3979), - [anon_sym_TILDE] = ACTIONS(3979), - [anon_sym_CARET] = ACTIONS(3979), - [anon_sym_AMP] = ACTIONS(3979), - [anon_sym_LT_DASH] = ACTIONS(3979), - [sym_none] = ACTIONS(3979), - [sym_true] = ACTIONS(3979), - [sym_false] = ACTIONS(3979), - [sym_nil] = ACTIONS(3979), - [anon_sym_if] = ACTIONS(3979), - [anon_sym_DOLLARif] = ACTIONS(3979), - [anon_sym_match] = ACTIONS(3979), - [anon_sym_select] = ACTIONS(3979), - [anon_sym_lock] = ACTIONS(3979), - [anon_sym_rlock] = ACTIONS(3979), - [anon_sym_unsafe] = ACTIONS(3979), - [anon_sym_sql] = ACTIONS(3979), - [sym_int_literal] = ACTIONS(3979), - [sym_float_literal] = ACTIONS(3979), - [sym_rune_literal] = ACTIONS(3979), - [anon_sym_AT] = ACTIONS(3979), - [anon_sym_shared] = ACTIONS(3979), - [anon_sym_map_LBRACK] = ACTIONS(3979), - [anon_sym_chan] = ACTIONS(3979), - [anon_sym_thread] = ACTIONS(3979), - [anon_sym_atomic] = ACTIONS(3979), - [anon_sym_assert] = ACTIONS(3979), - [anon_sym_defer] = ACTIONS(3979), - [anon_sym_goto] = ACTIONS(3979), - [anon_sym_break] = ACTIONS(3979), - [anon_sym_continue] = ACTIONS(3979), - [anon_sym_return] = ACTIONS(3979), - [anon_sym_DOLLARfor] = ACTIONS(3979), - [anon_sym_for] = ACTIONS(3979), - [anon_sym_POUND] = ACTIONS(3979), - [anon_sym_asm] = ACTIONS(3979), - [anon_sym_AT_LBRACK] = ACTIONS(3979), - [sym___double_quote] = ACTIONS(3979), - [sym___single_quote] = ACTIONS(3979), - [sym___c_double_quote] = ACTIONS(3979), - [sym___c_single_quote] = ACTIONS(3979), - [sym___r_double_quote] = ACTIONS(3979), - [sym___r_single_quote] = ACTIONS(3979), - }, - [1505] = { - [ts_builtin_sym_end] = ACTIONS(3981), - [sym_identifier] = ACTIONS(3983), - [anon_sym_LF] = ACTIONS(3983), - [anon_sym_CR] = ACTIONS(3983), - [anon_sym_CR_LF] = ACTIONS(3983), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3983), - [anon_sym_LBRACE] = ACTIONS(3983), - [anon_sym_const] = ACTIONS(3983), - [anon_sym_LPAREN] = ACTIONS(3983), - [anon_sym___global] = ACTIONS(3983), - [anon_sym_type] = ACTIONS(3983), - [anon_sym_fn] = ACTIONS(3983), - [anon_sym_PLUS] = ACTIONS(3983), - [anon_sym_DASH] = ACTIONS(3983), - [anon_sym_STAR] = ACTIONS(3983), - [anon_sym_struct] = ACTIONS(3983), - [anon_sym_union] = ACTIONS(3983), - [anon_sym_pub] = ACTIONS(3983), - [anon_sym_mut] = ACTIONS(3983), - [anon_sym_enum] = ACTIONS(3983), - [anon_sym_interface] = ACTIONS(3983), - [anon_sym_QMARK] = ACTIONS(3983), - [anon_sym_BANG] = ACTIONS(3983), - [anon_sym_go] = ACTIONS(3983), - [anon_sym_spawn] = ACTIONS(3983), - [anon_sym_json_DOTdecode] = ACTIONS(3983), - [anon_sym_LBRACK2] = ACTIONS(3983), - [anon_sym_TILDE] = ACTIONS(3983), - [anon_sym_CARET] = ACTIONS(3983), - [anon_sym_AMP] = ACTIONS(3983), - [anon_sym_LT_DASH] = ACTIONS(3983), - [sym_none] = ACTIONS(3983), - [sym_true] = ACTIONS(3983), - [sym_false] = ACTIONS(3983), - [sym_nil] = ACTIONS(3983), - [anon_sym_if] = ACTIONS(3983), - [anon_sym_DOLLARif] = ACTIONS(3983), - [anon_sym_match] = ACTIONS(3983), - [anon_sym_select] = ACTIONS(3983), - [anon_sym_lock] = ACTIONS(3983), - [anon_sym_rlock] = ACTIONS(3983), - [anon_sym_unsafe] = ACTIONS(3983), - [anon_sym_sql] = ACTIONS(3983), - [sym_int_literal] = ACTIONS(3983), - [sym_float_literal] = ACTIONS(3983), - [sym_rune_literal] = ACTIONS(3983), - [anon_sym_AT] = ACTIONS(3983), - [anon_sym_shared] = ACTIONS(3983), - [anon_sym_map_LBRACK] = ACTIONS(3983), - [anon_sym_chan] = ACTIONS(3983), - [anon_sym_thread] = ACTIONS(3983), - [anon_sym_atomic] = ACTIONS(3983), - [anon_sym_assert] = ACTIONS(3983), - [anon_sym_defer] = ACTIONS(3983), - [anon_sym_goto] = ACTIONS(3983), - [anon_sym_break] = ACTIONS(3983), - [anon_sym_continue] = ACTIONS(3983), - [anon_sym_return] = ACTIONS(3983), - [anon_sym_DOLLARfor] = ACTIONS(3983), - [anon_sym_for] = ACTIONS(3983), - [anon_sym_POUND] = ACTIONS(3983), - [anon_sym_asm] = ACTIONS(3983), - [anon_sym_AT_LBRACK] = ACTIONS(3983), - [sym___double_quote] = ACTIONS(3983), - [sym___single_quote] = ACTIONS(3983), - [sym___c_double_quote] = ACTIONS(3983), - [sym___c_single_quote] = ACTIONS(3983), - [sym___r_double_quote] = ACTIONS(3983), - [sym___r_single_quote] = ACTIONS(3983), - }, - [1506] = { - [ts_builtin_sym_end] = ACTIONS(3985), - [sym_identifier] = ACTIONS(3987), - [anon_sym_LF] = ACTIONS(3987), - [anon_sym_CR] = ACTIONS(3987), - [anon_sym_CR_LF] = ACTIONS(3987), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3987), - [anon_sym_LBRACE] = ACTIONS(3987), - [anon_sym_const] = ACTIONS(3987), - [anon_sym_LPAREN] = ACTIONS(3987), - [anon_sym___global] = ACTIONS(3987), - [anon_sym_type] = ACTIONS(3987), - [anon_sym_fn] = ACTIONS(3987), - [anon_sym_PLUS] = ACTIONS(3987), - [anon_sym_DASH] = ACTIONS(3987), - [anon_sym_STAR] = ACTIONS(3987), - [anon_sym_struct] = ACTIONS(3987), - [anon_sym_union] = ACTIONS(3987), - [anon_sym_pub] = ACTIONS(3987), - [anon_sym_mut] = ACTIONS(3987), - [anon_sym_enum] = ACTIONS(3987), - [anon_sym_interface] = ACTIONS(3987), - [anon_sym_QMARK] = ACTIONS(3987), - [anon_sym_BANG] = ACTIONS(3987), - [anon_sym_go] = ACTIONS(3987), - [anon_sym_spawn] = ACTIONS(3987), - [anon_sym_json_DOTdecode] = ACTIONS(3987), - [anon_sym_LBRACK2] = ACTIONS(3987), - [anon_sym_TILDE] = ACTIONS(3987), - [anon_sym_CARET] = ACTIONS(3987), - [anon_sym_AMP] = ACTIONS(3987), - [anon_sym_LT_DASH] = ACTIONS(3987), - [sym_none] = ACTIONS(3987), - [sym_true] = ACTIONS(3987), - [sym_false] = ACTIONS(3987), - [sym_nil] = ACTIONS(3987), - [anon_sym_if] = ACTIONS(3987), - [anon_sym_DOLLARif] = ACTIONS(3987), - [anon_sym_match] = ACTIONS(3987), - [anon_sym_select] = ACTIONS(3987), - [anon_sym_lock] = ACTIONS(3987), - [anon_sym_rlock] = ACTIONS(3987), - [anon_sym_unsafe] = ACTIONS(3987), - [anon_sym_sql] = ACTIONS(3987), - [sym_int_literal] = ACTIONS(3987), - [sym_float_literal] = ACTIONS(3987), - [sym_rune_literal] = ACTIONS(3987), - [anon_sym_AT] = ACTIONS(3987), - [anon_sym_shared] = ACTIONS(3987), - [anon_sym_map_LBRACK] = ACTIONS(3987), - [anon_sym_chan] = ACTIONS(3987), - [anon_sym_thread] = ACTIONS(3987), - [anon_sym_atomic] = ACTIONS(3987), - [anon_sym_assert] = ACTIONS(3987), - [anon_sym_defer] = ACTIONS(3987), - [anon_sym_goto] = ACTIONS(3987), - [anon_sym_break] = ACTIONS(3987), - [anon_sym_continue] = ACTIONS(3987), - [anon_sym_return] = ACTIONS(3987), - [anon_sym_DOLLARfor] = ACTIONS(3987), - [anon_sym_for] = ACTIONS(3987), - [anon_sym_POUND] = ACTIONS(3987), - [anon_sym_asm] = ACTIONS(3987), - [anon_sym_AT_LBRACK] = ACTIONS(3987), - [sym___double_quote] = ACTIONS(3987), - [sym___single_quote] = ACTIONS(3987), - [sym___c_double_quote] = ACTIONS(3987), - [sym___c_single_quote] = ACTIONS(3987), - [sym___r_double_quote] = ACTIONS(3987), - [sym___r_single_quote] = ACTIONS(3987), - }, - [1507] = { - [ts_builtin_sym_end] = ACTIONS(3989), - [sym_identifier] = ACTIONS(3991), - [anon_sym_LF] = ACTIONS(3991), - [anon_sym_CR] = ACTIONS(3991), - [anon_sym_CR_LF] = ACTIONS(3991), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3991), - [anon_sym_LBRACE] = ACTIONS(3991), - [anon_sym_const] = ACTIONS(3991), - [anon_sym_LPAREN] = ACTIONS(3991), - [anon_sym___global] = ACTIONS(3991), - [anon_sym_type] = ACTIONS(3991), - [anon_sym_fn] = ACTIONS(3991), - [anon_sym_PLUS] = ACTIONS(3991), - [anon_sym_DASH] = ACTIONS(3991), - [anon_sym_STAR] = ACTIONS(3991), - [anon_sym_struct] = ACTIONS(3991), - [anon_sym_union] = ACTIONS(3991), - [anon_sym_pub] = ACTIONS(3991), - [anon_sym_mut] = ACTIONS(3991), - [anon_sym_enum] = ACTIONS(3991), - [anon_sym_interface] = ACTIONS(3991), - [anon_sym_QMARK] = ACTIONS(3991), - [anon_sym_BANG] = ACTIONS(3991), - [anon_sym_go] = ACTIONS(3991), - [anon_sym_spawn] = ACTIONS(3991), - [anon_sym_json_DOTdecode] = ACTIONS(3991), - [anon_sym_LBRACK2] = ACTIONS(3991), - [anon_sym_TILDE] = ACTIONS(3991), - [anon_sym_CARET] = ACTIONS(3991), - [anon_sym_AMP] = ACTIONS(3991), - [anon_sym_LT_DASH] = ACTIONS(3991), - [sym_none] = ACTIONS(3991), - [sym_true] = ACTIONS(3991), - [sym_false] = ACTIONS(3991), - [sym_nil] = ACTIONS(3991), - [anon_sym_if] = ACTIONS(3991), - [anon_sym_DOLLARif] = ACTIONS(3991), - [anon_sym_match] = ACTIONS(3991), - [anon_sym_select] = ACTIONS(3991), - [anon_sym_lock] = ACTIONS(3991), - [anon_sym_rlock] = ACTIONS(3991), - [anon_sym_unsafe] = ACTIONS(3991), - [anon_sym_sql] = ACTIONS(3991), - [sym_int_literal] = ACTIONS(3991), - [sym_float_literal] = ACTIONS(3991), - [sym_rune_literal] = ACTIONS(3991), - [anon_sym_AT] = ACTIONS(3991), - [anon_sym_shared] = ACTIONS(3991), - [anon_sym_map_LBRACK] = ACTIONS(3991), - [anon_sym_chan] = ACTIONS(3991), - [anon_sym_thread] = ACTIONS(3991), - [anon_sym_atomic] = ACTIONS(3991), - [anon_sym_assert] = ACTIONS(3991), - [anon_sym_defer] = ACTIONS(3991), - [anon_sym_goto] = ACTIONS(3991), - [anon_sym_break] = ACTIONS(3991), - [anon_sym_continue] = ACTIONS(3991), - [anon_sym_return] = ACTIONS(3991), - [anon_sym_DOLLARfor] = ACTIONS(3991), - [anon_sym_for] = ACTIONS(3991), - [anon_sym_POUND] = ACTIONS(3991), - [anon_sym_asm] = ACTIONS(3991), - [anon_sym_AT_LBRACK] = ACTIONS(3991), - [sym___double_quote] = ACTIONS(3991), - [sym___single_quote] = ACTIONS(3991), - [sym___c_double_quote] = ACTIONS(3991), - [sym___c_single_quote] = ACTIONS(3991), - [sym___r_double_quote] = ACTIONS(3991), - [sym___r_single_quote] = ACTIONS(3991), - }, - [1508] = { - [ts_builtin_sym_end] = ACTIONS(3993), - [sym_identifier] = ACTIONS(3995), - [anon_sym_LF] = ACTIONS(3995), - [anon_sym_CR] = ACTIONS(3995), - [anon_sym_CR_LF] = ACTIONS(3995), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(3995), - [anon_sym_const] = ACTIONS(3995), - [anon_sym_LPAREN] = ACTIONS(3995), - [anon_sym___global] = ACTIONS(3995), - [anon_sym_type] = ACTIONS(3995), - [anon_sym_fn] = ACTIONS(3995), - [anon_sym_PLUS] = ACTIONS(3995), - [anon_sym_DASH] = ACTIONS(3995), - [anon_sym_STAR] = ACTIONS(3995), - [anon_sym_struct] = ACTIONS(3995), - [anon_sym_union] = ACTIONS(3995), - [anon_sym_pub] = ACTIONS(3995), - [anon_sym_mut] = ACTIONS(3995), - [anon_sym_enum] = ACTIONS(3995), - [anon_sym_interface] = ACTIONS(3995), - [anon_sym_QMARK] = ACTIONS(3995), - [anon_sym_BANG] = ACTIONS(3995), - [anon_sym_go] = ACTIONS(3995), - [anon_sym_spawn] = ACTIONS(3995), - [anon_sym_json_DOTdecode] = ACTIONS(3995), - [anon_sym_LBRACK2] = ACTIONS(3995), - [anon_sym_TILDE] = ACTIONS(3995), - [anon_sym_CARET] = ACTIONS(3995), - [anon_sym_AMP] = ACTIONS(3995), - [anon_sym_LT_DASH] = ACTIONS(3995), - [sym_none] = ACTIONS(3995), - [sym_true] = ACTIONS(3995), - [sym_false] = ACTIONS(3995), - [sym_nil] = ACTIONS(3995), - [anon_sym_if] = ACTIONS(3995), - [anon_sym_DOLLARif] = ACTIONS(3995), - [anon_sym_match] = ACTIONS(3995), - [anon_sym_select] = ACTIONS(3995), - [anon_sym_lock] = ACTIONS(3995), - [anon_sym_rlock] = ACTIONS(3995), - [anon_sym_unsafe] = ACTIONS(3995), - [anon_sym_sql] = ACTIONS(3995), - [sym_int_literal] = ACTIONS(3995), - [sym_float_literal] = ACTIONS(3995), - [sym_rune_literal] = ACTIONS(3995), - [anon_sym_AT] = ACTIONS(3995), - [anon_sym_shared] = ACTIONS(3995), - [anon_sym_map_LBRACK] = ACTIONS(3995), - [anon_sym_chan] = ACTIONS(3995), - [anon_sym_thread] = ACTIONS(3995), - [anon_sym_atomic] = ACTIONS(3995), - [anon_sym_assert] = ACTIONS(3995), - [anon_sym_defer] = ACTIONS(3995), - [anon_sym_goto] = ACTIONS(3995), - [anon_sym_break] = ACTIONS(3995), - [anon_sym_continue] = ACTIONS(3995), - [anon_sym_return] = ACTIONS(3995), - [anon_sym_DOLLARfor] = ACTIONS(3995), - [anon_sym_for] = ACTIONS(3995), - [anon_sym_POUND] = ACTIONS(3995), - [anon_sym_asm] = ACTIONS(3995), - [anon_sym_AT_LBRACK] = ACTIONS(3995), - [sym___double_quote] = ACTIONS(3995), - [sym___single_quote] = ACTIONS(3995), - [sym___c_double_quote] = ACTIONS(3995), - [sym___c_single_quote] = ACTIONS(3995), - [sym___r_double_quote] = ACTIONS(3995), - [sym___r_single_quote] = ACTIONS(3995), - }, - [1509] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(585), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(583), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_DOT_DOT_DOT] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_AMP_CARET] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_COLON_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(585), - }, - [1510] = { - [ts_builtin_sym_end] = ACTIONS(3997), - [sym_identifier] = ACTIONS(3999), - [anon_sym_LF] = ACTIONS(3999), - [anon_sym_CR] = ACTIONS(3999), - [anon_sym_CR_LF] = ACTIONS(3999), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3999), - [anon_sym_LBRACE] = ACTIONS(3999), - [anon_sym_const] = ACTIONS(3999), - [anon_sym_LPAREN] = ACTIONS(3999), - [anon_sym___global] = ACTIONS(3999), - [anon_sym_type] = ACTIONS(3999), - [anon_sym_fn] = ACTIONS(3999), - [anon_sym_PLUS] = ACTIONS(3999), - [anon_sym_DASH] = ACTIONS(3999), - [anon_sym_STAR] = ACTIONS(3999), - [anon_sym_struct] = ACTIONS(3999), - [anon_sym_union] = ACTIONS(3999), - [anon_sym_pub] = ACTIONS(3999), - [anon_sym_mut] = ACTIONS(3999), - [anon_sym_enum] = ACTIONS(3999), - [anon_sym_interface] = ACTIONS(3999), - [anon_sym_QMARK] = ACTIONS(3999), - [anon_sym_BANG] = ACTIONS(3999), - [anon_sym_go] = ACTIONS(3999), - [anon_sym_spawn] = ACTIONS(3999), - [anon_sym_json_DOTdecode] = ACTIONS(3999), - [anon_sym_LBRACK2] = ACTIONS(3999), - [anon_sym_TILDE] = ACTIONS(3999), - [anon_sym_CARET] = ACTIONS(3999), - [anon_sym_AMP] = ACTIONS(3999), - [anon_sym_LT_DASH] = ACTIONS(3999), - [sym_none] = ACTIONS(3999), - [sym_true] = ACTIONS(3999), - [sym_false] = ACTIONS(3999), - [sym_nil] = ACTIONS(3999), - [anon_sym_if] = ACTIONS(3999), - [anon_sym_DOLLARif] = ACTIONS(3999), - [anon_sym_match] = ACTIONS(3999), - [anon_sym_select] = ACTIONS(3999), - [anon_sym_lock] = ACTIONS(3999), - [anon_sym_rlock] = ACTIONS(3999), - [anon_sym_unsafe] = ACTIONS(3999), - [anon_sym_sql] = ACTIONS(3999), - [sym_int_literal] = ACTIONS(3999), - [sym_float_literal] = ACTIONS(3999), - [sym_rune_literal] = ACTIONS(3999), - [anon_sym_AT] = ACTIONS(3999), - [anon_sym_shared] = ACTIONS(3999), - [anon_sym_map_LBRACK] = ACTIONS(3999), - [anon_sym_chan] = ACTIONS(3999), - [anon_sym_thread] = ACTIONS(3999), - [anon_sym_atomic] = ACTIONS(3999), - [anon_sym_assert] = ACTIONS(3999), - [anon_sym_defer] = ACTIONS(3999), - [anon_sym_goto] = ACTIONS(3999), - [anon_sym_break] = ACTIONS(3999), - [anon_sym_continue] = ACTIONS(3999), - [anon_sym_return] = ACTIONS(3999), - [anon_sym_DOLLARfor] = ACTIONS(3999), - [anon_sym_for] = ACTIONS(3999), - [anon_sym_POUND] = ACTIONS(3999), - [anon_sym_asm] = ACTIONS(3999), - [anon_sym_AT_LBRACK] = ACTIONS(3999), - [sym___double_quote] = ACTIONS(3999), - [sym___single_quote] = ACTIONS(3999), - [sym___c_double_quote] = ACTIONS(3999), - [sym___c_single_quote] = ACTIONS(3999), - [sym___r_double_quote] = ACTIONS(3999), - [sym___r_single_quote] = ACTIONS(3999), - }, - [1511] = { - [ts_builtin_sym_end] = ACTIONS(4001), - [sym_identifier] = ACTIONS(4003), - [anon_sym_LF] = ACTIONS(4003), - [anon_sym_CR] = ACTIONS(4003), - [anon_sym_CR_LF] = ACTIONS(4003), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4003), - [anon_sym_LBRACE] = ACTIONS(4003), - [anon_sym_const] = ACTIONS(4003), - [anon_sym_LPAREN] = ACTIONS(4003), - [anon_sym___global] = ACTIONS(4003), - [anon_sym_type] = ACTIONS(4003), - [anon_sym_fn] = ACTIONS(4003), - [anon_sym_PLUS] = ACTIONS(4003), - [anon_sym_DASH] = ACTIONS(4003), - [anon_sym_STAR] = ACTIONS(4003), - [anon_sym_struct] = ACTIONS(4003), - [anon_sym_union] = ACTIONS(4003), - [anon_sym_pub] = ACTIONS(4003), - [anon_sym_mut] = ACTIONS(4003), - [anon_sym_enum] = ACTIONS(4003), - [anon_sym_interface] = ACTIONS(4003), - [anon_sym_QMARK] = ACTIONS(4003), - [anon_sym_BANG] = ACTIONS(4003), - [anon_sym_go] = ACTIONS(4003), - [anon_sym_spawn] = ACTIONS(4003), - [anon_sym_json_DOTdecode] = ACTIONS(4003), - [anon_sym_LBRACK2] = ACTIONS(4003), - [anon_sym_TILDE] = ACTIONS(4003), - [anon_sym_CARET] = ACTIONS(4003), - [anon_sym_AMP] = ACTIONS(4003), - [anon_sym_LT_DASH] = ACTIONS(4003), - [sym_none] = ACTIONS(4003), - [sym_true] = ACTIONS(4003), - [sym_false] = ACTIONS(4003), - [sym_nil] = ACTIONS(4003), - [anon_sym_if] = ACTIONS(4003), - [anon_sym_DOLLARif] = ACTIONS(4003), - [anon_sym_match] = ACTIONS(4003), - [anon_sym_select] = ACTIONS(4003), - [anon_sym_lock] = ACTIONS(4003), - [anon_sym_rlock] = ACTIONS(4003), - [anon_sym_unsafe] = ACTIONS(4003), - [anon_sym_sql] = ACTIONS(4003), - [sym_int_literal] = ACTIONS(4003), - [sym_float_literal] = ACTIONS(4003), - [sym_rune_literal] = ACTIONS(4003), - [anon_sym_AT] = ACTIONS(4003), - [anon_sym_shared] = ACTIONS(4003), - [anon_sym_map_LBRACK] = ACTIONS(4003), - [anon_sym_chan] = ACTIONS(4003), - [anon_sym_thread] = ACTIONS(4003), - [anon_sym_atomic] = ACTIONS(4003), - [anon_sym_assert] = ACTIONS(4003), - [anon_sym_defer] = ACTIONS(4003), - [anon_sym_goto] = ACTIONS(4003), - [anon_sym_break] = ACTIONS(4003), - [anon_sym_continue] = ACTIONS(4003), - [anon_sym_return] = ACTIONS(4003), - [anon_sym_DOLLARfor] = ACTIONS(4003), - [anon_sym_for] = ACTIONS(4003), - [anon_sym_POUND] = ACTIONS(4003), - [anon_sym_asm] = ACTIONS(4003), - [anon_sym_AT_LBRACK] = ACTIONS(4003), - [sym___double_quote] = ACTIONS(4003), - [sym___single_quote] = ACTIONS(4003), - [sym___c_double_quote] = ACTIONS(4003), - [sym___c_single_quote] = ACTIONS(4003), - [sym___r_double_quote] = ACTIONS(4003), - [sym___r_single_quote] = ACTIONS(4003), - }, - [1512] = { - [ts_builtin_sym_end] = ACTIONS(4005), - [sym_identifier] = ACTIONS(4007), - [anon_sym_LF] = ACTIONS(4007), - [anon_sym_CR] = ACTIONS(4007), - [anon_sym_CR_LF] = ACTIONS(4007), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4007), - [anon_sym_LBRACE] = ACTIONS(4007), - [anon_sym_const] = ACTIONS(4007), - [anon_sym_LPAREN] = ACTIONS(4007), - [anon_sym___global] = ACTIONS(4007), - [anon_sym_type] = ACTIONS(4007), - [anon_sym_fn] = ACTIONS(4007), - [anon_sym_PLUS] = ACTIONS(4007), - [anon_sym_DASH] = ACTIONS(4007), - [anon_sym_STAR] = ACTIONS(4007), - [anon_sym_struct] = ACTIONS(4007), - [anon_sym_union] = ACTIONS(4007), - [anon_sym_pub] = ACTIONS(4007), - [anon_sym_mut] = ACTIONS(4007), - [anon_sym_enum] = ACTIONS(4007), - [anon_sym_interface] = ACTIONS(4007), - [anon_sym_QMARK] = ACTIONS(4007), - [anon_sym_BANG] = ACTIONS(4007), - [anon_sym_go] = ACTIONS(4007), - [anon_sym_spawn] = ACTIONS(4007), - [anon_sym_json_DOTdecode] = ACTIONS(4007), - [anon_sym_LBRACK2] = ACTIONS(4007), - [anon_sym_TILDE] = ACTIONS(4007), - [anon_sym_CARET] = ACTIONS(4007), - [anon_sym_AMP] = ACTIONS(4007), - [anon_sym_LT_DASH] = ACTIONS(4007), - [sym_none] = ACTIONS(4007), - [sym_true] = ACTIONS(4007), - [sym_false] = ACTIONS(4007), - [sym_nil] = ACTIONS(4007), - [anon_sym_if] = ACTIONS(4007), - [anon_sym_DOLLARif] = ACTIONS(4007), - [anon_sym_match] = ACTIONS(4007), - [anon_sym_select] = ACTIONS(4007), - [anon_sym_lock] = ACTIONS(4007), - [anon_sym_rlock] = ACTIONS(4007), - [anon_sym_unsafe] = ACTIONS(4007), - [anon_sym_sql] = ACTIONS(4007), - [sym_int_literal] = ACTIONS(4007), - [sym_float_literal] = ACTIONS(4007), - [sym_rune_literal] = ACTIONS(4007), - [anon_sym_AT] = ACTIONS(4007), - [anon_sym_shared] = ACTIONS(4007), - [anon_sym_map_LBRACK] = ACTIONS(4007), - [anon_sym_chan] = ACTIONS(4007), - [anon_sym_thread] = ACTIONS(4007), - [anon_sym_atomic] = ACTIONS(4007), - [anon_sym_assert] = ACTIONS(4007), - [anon_sym_defer] = ACTIONS(4007), - [anon_sym_goto] = ACTIONS(4007), - [anon_sym_break] = ACTIONS(4007), - [anon_sym_continue] = ACTIONS(4007), - [anon_sym_return] = ACTIONS(4007), - [anon_sym_DOLLARfor] = ACTIONS(4007), - [anon_sym_for] = ACTIONS(4007), - [anon_sym_POUND] = ACTIONS(4007), - [anon_sym_asm] = ACTIONS(4007), - [anon_sym_AT_LBRACK] = ACTIONS(4007), - [sym___double_quote] = ACTIONS(4007), - [sym___single_quote] = ACTIONS(4007), - [sym___c_double_quote] = ACTIONS(4007), - [sym___c_single_quote] = ACTIONS(4007), - [sym___r_double_quote] = ACTIONS(4007), - [sym___r_single_quote] = ACTIONS(4007), - }, - [1513] = { - [ts_builtin_sym_end] = ACTIONS(4009), - [sym_identifier] = ACTIONS(4011), - [anon_sym_LF] = ACTIONS(4011), - [anon_sym_CR] = ACTIONS(4011), - [anon_sym_CR_LF] = ACTIONS(4011), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4011), - [anon_sym_LBRACE] = ACTIONS(4011), - [anon_sym_const] = ACTIONS(4011), - [anon_sym_LPAREN] = ACTIONS(4011), - [anon_sym___global] = ACTIONS(4011), - [anon_sym_type] = ACTIONS(4011), - [anon_sym_fn] = ACTIONS(4011), - [anon_sym_PLUS] = ACTIONS(4011), - [anon_sym_DASH] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(4011), - [anon_sym_struct] = ACTIONS(4011), - [anon_sym_union] = ACTIONS(4011), - [anon_sym_pub] = ACTIONS(4011), - [anon_sym_mut] = ACTIONS(4011), - [anon_sym_enum] = ACTIONS(4011), - [anon_sym_interface] = ACTIONS(4011), - [anon_sym_QMARK] = ACTIONS(4011), - [anon_sym_BANG] = ACTIONS(4011), - [anon_sym_go] = ACTIONS(4011), - [anon_sym_spawn] = ACTIONS(4011), - [anon_sym_json_DOTdecode] = ACTIONS(4011), - [anon_sym_LBRACK2] = ACTIONS(4011), - [anon_sym_TILDE] = ACTIONS(4011), - [anon_sym_CARET] = ACTIONS(4011), - [anon_sym_AMP] = ACTIONS(4011), - [anon_sym_LT_DASH] = ACTIONS(4011), - [sym_none] = ACTIONS(4011), - [sym_true] = ACTIONS(4011), - [sym_false] = ACTIONS(4011), - [sym_nil] = ACTIONS(4011), - [anon_sym_if] = ACTIONS(4011), - [anon_sym_DOLLARif] = ACTIONS(4011), - [anon_sym_match] = ACTIONS(4011), - [anon_sym_select] = ACTIONS(4011), - [anon_sym_lock] = ACTIONS(4011), - [anon_sym_rlock] = ACTIONS(4011), - [anon_sym_unsafe] = ACTIONS(4011), - [anon_sym_sql] = ACTIONS(4011), - [sym_int_literal] = ACTIONS(4011), - [sym_float_literal] = ACTIONS(4011), - [sym_rune_literal] = ACTIONS(4011), - [anon_sym_AT] = ACTIONS(4011), - [anon_sym_shared] = ACTIONS(4011), - [anon_sym_map_LBRACK] = ACTIONS(4011), - [anon_sym_chan] = ACTIONS(4011), - [anon_sym_thread] = ACTIONS(4011), - [anon_sym_atomic] = ACTIONS(4011), - [anon_sym_assert] = ACTIONS(4011), - [anon_sym_defer] = ACTIONS(4011), - [anon_sym_goto] = ACTIONS(4011), - [anon_sym_break] = ACTIONS(4011), - [anon_sym_continue] = ACTIONS(4011), - [anon_sym_return] = ACTIONS(4011), - [anon_sym_DOLLARfor] = ACTIONS(4011), - [anon_sym_for] = ACTIONS(4011), - [anon_sym_POUND] = ACTIONS(4011), - [anon_sym_asm] = ACTIONS(4011), - [anon_sym_AT_LBRACK] = ACTIONS(4011), - [sym___double_quote] = ACTIONS(4011), - [sym___single_quote] = ACTIONS(4011), - [sym___c_double_quote] = ACTIONS(4011), - [sym___c_single_quote] = ACTIONS(4011), - [sym___r_double_quote] = ACTIONS(4011), - [sym___r_single_quote] = ACTIONS(4011), - }, - [1514] = { - [ts_builtin_sym_end] = ACTIONS(4013), - [sym_identifier] = ACTIONS(4015), - [anon_sym_LF] = ACTIONS(4015), - [anon_sym_CR] = ACTIONS(4015), - [anon_sym_CR_LF] = ACTIONS(4015), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4015), - [anon_sym_LBRACE] = ACTIONS(4015), - [anon_sym_const] = ACTIONS(4015), - [anon_sym_LPAREN] = ACTIONS(4015), - [anon_sym___global] = ACTIONS(4015), - [anon_sym_type] = ACTIONS(4015), - [anon_sym_fn] = ACTIONS(4015), - [anon_sym_PLUS] = ACTIONS(4015), - [anon_sym_DASH] = ACTIONS(4015), - [anon_sym_STAR] = ACTIONS(4015), - [anon_sym_struct] = ACTIONS(4015), - [anon_sym_union] = ACTIONS(4015), - [anon_sym_pub] = ACTIONS(4015), - [anon_sym_mut] = ACTIONS(4015), - [anon_sym_enum] = ACTIONS(4015), - [anon_sym_interface] = ACTIONS(4015), - [anon_sym_QMARK] = ACTIONS(4015), - [anon_sym_BANG] = ACTIONS(4015), - [anon_sym_go] = ACTIONS(4015), - [anon_sym_spawn] = ACTIONS(4015), - [anon_sym_json_DOTdecode] = ACTIONS(4015), - [anon_sym_LBRACK2] = ACTIONS(4015), - [anon_sym_TILDE] = ACTIONS(4015), - [anon_sym_CARET] = ACTIONS(4015), - [anon_sym_AMP] = ACTIONS(4015), - [anon_sym_LT_DASH] = ACTIONS(4015), - [sym_none] = ACTIONS(4015), - [sym_true] = ACTIONS(4015), - [sym_false] = ACTIONS(4015), - [sym_nil] = ACTIONS(4015), - [anon_sym_if] = ACTIONS(4015), - [anon_sym_DOLLARif] = ACTIONS(4015), - [anon_sym_match] = ACTIONS(4015), - [anon_sym_select] = ACTIONS(4015), - [anon_sym_lock] = ACTIONS(4015), - [anon_sym_rlock] = ACTIONS(4015), - [anon_sym_unsafe] = ACTIONS(4015), - [anon_sym_sql] = ACTIONS(4015), - [sym_int_literal] = ACTIONS(4015), - [sym_float_literal] = ACTIONS(4015), - [sym_rune_literal] = ACTIONS(4015), - [anon_sym_AT] = ACTIONS(4015), - [anon_sym_shared] = ACTIONS(4015), - [anon_sym_map_LBRACK] = ACTIONS(4015), - [anon_sym_chan] = ACTIONS(4015), - [anon_sym_thread] = ACTIONS(4015), - [anon_sym_atomic] = ACTIONS(4015), - [anon_sym_assert] = ACTIONS(4015), - [anon_sym_defer] = ACTIONS(4015), - [anon_sym_goto] = ACTIONS(4015), - [anon_sym_break] = ACTIONS(4015), - [anon_sym_continue] = ACTIONS(4015), - [anon_sym_return] = ACTIONS(4015), - [anon_sym_DOLLARfor] = ACTIONS(4015), - [anon_sym_for] = ACTIONS(4015), - [anon_sym_POUND] = ACTIONS(4015), - [anon_sym_asm] = ACTIONS(4015), - [anon_sym_AT_LBRACK] = ACTIONS(4015), - [sym___double_quote] = ACTIONS(4015), - [sym___single_quote] = ACTIONS(4015), - [sym___c_double_quote] = ACTIONS(4015), - [sym___c_single_quote] = ACTIONS(4015), - [sym___r_double_quote] = ACTIONS(4015), - [sym___r_single_quote] = ACTIONS(4015), - }, - [1515] = { - [ts_builtin_sym_end] = ACTIONS(4017), - [sym_identifier] = ACTIONS(4019), - [anon_sym_LF] = ACTIONS(4019), - [anon_sym_CR] = ACTIONS(4019), - [anon_sym_CR_LF] = ACTIONS(4019), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4019), - [anon_sym_LBRACE] = ACTIONS(4019), - [anon_sym_const] = ACTIONS(4019), - [anon_sym_LPAREN] = ACTIONS(4019), - [anon_sym___global] = ACTIONS(4019), - [anon_sym_type] = ACTIONS(4019), - [anon_sym_fn] = ACTIONS(4019), - [anon_sym_PLUS] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_STAR] = ACTIONS(4019), - [anon_sym_struct] = ACTIONS(4019), - [anon_sym_union] = ACTIONS(4019), - [anon_sym_pub] = ACTIONS(4019), - [anon_sym_mut] = ACTIONS(4019), - [anon_sym_enum] = ACTIONS(4019), - [anon_sym_interface] = ACTIONS(4019), - [anon_sym_QMARK] = ACTIONS(4019), - [anon_sym_BANG] = ACTIONS(4019), - [anon_sym_go] = ACTIONS(4019), - [anon_sym_spawn] = ACTIONS(4019), - [anon_sym_json_DOTdecode] = ACTIONS(4019), - [anon_sym_LBRACK2] = ACTIONS(4019), - [anon_sym_TILDE] = ACTIONS(4019), - [anon_sym_CARET] = ACTIONS(4019), - [anon_sym_AMP] = ACTIONS(4019), - [anon_sym_LT_DASH] = ACTIONS(4019), - [sym_none] = ACTIONS(4019), - [sym_true] = ACTIONS(4019), - [sym_false] = ACTIONS(4019), - [sym_nil] = ACTIONS(4019), - [anon_sym_if] = ACTIONS(4019), - [anon_sym_DOLLARif] = ACTIONS(4019), - [anon_sym_match] = ACTIONS(4019), - [anon_sym_select] = ACTIONS(4019), - [anon_sym_lock] = ACTIONS(4019), - [anon_sym_rlock] = ACTIONS(4019), - [anon_sym_unsafe] = ACTIONS(4019), - [anon_sym_sql] = ACTIONS(4019), - [sym_int_literal] = ACTIONS(4019), - [sym_float_literal] = ACTIONS(4019), - [sym_rune_literal] = ACTIONS(4019), - [anon_sym_AT] = ACTIONS(4019), - [anon_sym_shared] = ACTIONS(4019), - [anon_sym_map_LBRACK] = ACTIONS(4019), - [anon_sym_chan] = ACTIONS(4019), - [anon_sym_thread] = ACTIONS(4019), - [anon_sym_atomic] = ACTIONS(4019), - [anon_sym_assert] = ACTIONS(4019), - [anon_sym_defer] = ACTIONS(4019), - [anon_sym_goto] = ACTIONS(4019), - [anon_sym_break] = ACTIONS(4019), - [anon_sym_continue] = ACTIONS(4019), - [anon_sym_return] = ACTIONS(4019), - [anon_sym_DOLLARfor] = ACTIONS(4019), - [anon_sym_for] = ACTIONS(4019), - [anon_sym_POUND] = ACTIONS(4019), - [anon_sym_asm] = ACTIONS(4019), - [anon_sym_AT_LBRACK] = ACTIONS(4019), - [sym___double_quote] = ACTIONS(4019), - [sym___single_quote] = ACTIONS(4019), - [sym___c_double_quote] = ACTIONS(4019), - [sym___c_single_quote] = ACTIONS(4019), - [sym___r_double_quote] = ACTIONS(4019), - [sym___r_single_quote] = ACTIONS(4019), - }, - [1516] = { - [ts_builtin_sym_end] = ACTIONS(4021), - [sym_identifier] = ACTIONS(4023), - [anon_sym_LF] = ACTIONS(4023), - [anon_sym_CR] = ACTIONS(4023), - [anon_sym_CR_LF] = ACTIONS(4023), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4023), - [anon_sym_LBRACE] = ACTIONS(4023), - [anon_sym_const] = ACTIONS(4023), - [anon_sym_LPAREN] = ACTIONS(4023), - [anon_sym___global] = ACTIONS(4023), - [anon_sym_type] = ACTIONS(4023), - [anon_sym_fn] = ACTIONS(4023), - [anon_sym_PLUS] = ACTIONS(4023), - [anon_sym_DASH] = ACTIONS(4023), - [anon_sym_STAR] = ACTIONS(4023), - [anon_sym_struct] = ACTIONS(4023), - [anon_sym_union] = ACTIONS(4023), - [anon_sym_pub] = ACTIONS(4023), - [anon_sym_mut] = ACTIONS(4023), - [anon_sym_enum] = ACTIONS(4023), - [anon_sym_interface] = ACTIONS(4023), - [anon_sym_QMARK] = ACTIONS(4023), - [anon_sym_BANG] = ACTIONS(4023), - [anon_sym_go] = ACTIONS(4023), - [anon_sym_spawn] = ACTIONS(4023), - [anon_sym_json_DOTdecode] = ACTIONS(4023), - [anon_sym_LBRACK2] = ACTIONS(4023), - [anon_sym_TILDE] = ACTIONS(4023), - [anon_sym_CARET] = ACTIONS(4023), - [anon_sym_AMP] = ACTIONS(4023), - [anon_sym_LT_DASH] = ACTIONS(4023), - [sym_none] = ACTIONS(4023), - [sym_true] = ACTIONS(4023), - [sym_false] = ACTIONS(4023), - [sym_nil] = ACTIONS(4023), - [anon_sym_if] = ACTIONS(4023), - [anon_sym_DOLLARif] = ACTIONS(4023), - [anon_sym_match] = ACTIONS(4023), - [anon_sym_select] = ACTIONS(4023), - [anon_sym_lock] = ACTIONS(4023), - [anon_sym_rlock] = ACTIONS(4023), - [anon_sym_unsafe] = ACTIONS(4023), - [anon_sym_sql] = ACTIONS(4023), - [sym_int_literal] = ACTIONS(4023), - [sym_float_literal] = ACTIONS(4023), - [sym_rune_literal] = ACTIONS(4023), - [anon_sym_AT] = ACTIONS(4023), - [anon_sym_shared] = ACTIONS(4023), - [anon_sym_map_LBRACK] = ACTIONS(4023), - [anon_sym_chan] = ACTIONS(4023), - [anon_sym_thread] = ACTIONS(4023), - [anon_sym_atomic] = ACTIONS(4023), - [anon_sym_assert] = ACTIONS(4023), - [anon_sym_defer] = ACTIONS(4023), - [anon_sym_goto] = ACTIONS(4023), - [anon_sym_break] = ACTIONS(4023), - [anon_sym_continue] = ACTIONS(4023), - [anon_sym_return] = ACTIONS(4023), - [anon_sym_DOLLARfor] = ACTIONS(4023), - [anon_sym_for] = ACTIONS(4023), - [anon_sym_POUND] = ACTIONS(4023), - [anon_sym_asm] = ACTIONS(4023), - [anon_sym_AT_LBRACK] = ACTIONS(4023), - [sym___double_quote] = ACTIONS(4023), - [sym___single_quote] = ACTIONS(4023), - [sym___c_double_quote] = ACTIONS(4023), - [sym___c_single_quote] = ACTIONS(4023), - [sym___r_double_quote] = ACTIONS(4023), - [sym___r_single_quote] = ACTIONS(4023), - }, - [1517] = { - [ts_builtin_sym_end] = ACTIONS(4025), - [sym_identifier] = ACTIONS(4027), - [anon_sym_LF] = ACTIONS(4027), - [anon_sym_CR] = ACTIONS(4027), - [anon_sym_CR_LF] = ACTIONS(4027), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4027), - [anon_sym_LBRACE] = ACTIONS(4027), - [anon_sym_const] = ACTIONS(4027), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym___global] = ACTIONS(4027), - [anon_sym_type] = ACTIONS(4027), - [anon_sym_fn] = ACTIONS(4027), - [anon_sym_PLUS] = ACTIONS(4027), - [anon_sym_DASH] = ACTIONS(4027), - [anon_sym_STAR] = ACTIONS(4027), - [anon_sym_struct] = ACTIONS(4027), - [anon_sym_union] = ACTIONS(4027), - [anon_sym_pub] = ACTIONS(4027), - [anon_sym_mut] = ACTIONS(4027), - [anon_sym_enum] = ACTIONS(4027), - [anon_sym_interface] = ACTIONS(4027), - [anon_sym_QMARK] = ACTIONS(4027), - [anon_sym_BANG] = ACTIONS(4027), - [anon_sym_go] = ACTIONS(4027), - [anon_sym_spawn] = ACTIONS(4027), - [anon_sym_json_DOTdecode] = ACTIONS(4027), - [anon_sym_LBRACK2] = ACTIONS(4027), - [anon_sym_TILDE] = ACTIONS(4027), - [anon_sym_CARET] = ACTIONS(4027), - [anon_sym_AMP] = ACTIONS(4027), - [anon_sym_LT_DASH] = ACTIONS(4027), - [sym_none] = ACTIONS(4027), - [sym_true] = ACTIONS(4027), - [sym_false] = ACTIONS(4027), - [sym_nil] = ACTIONS(4027), - [anon_sym_if] = ACTIONS(4027), - [anon_sym_DOLLARif] = ACTIONS(4027), - [anon_sym_match] = ACTIONS(4027), - [anon_sym_select] = ACTIONS(4027), - [anon_sym_lock] = ACTIONS(4027), - [anon_sym_rlock] = ACTIONS(4027), - [anon_sym_unsafe] = ACTIONS(4027), - [anon_sym_sql] = ACTIONS(4027), - [sym_int_literal] = ACTIONS(4027), - [sym_float_literal] = ACTIONS(4027), - [sym_rune_literal] = ACTIONS(4027), - [anon_sym_AT] = ACTIONS(4027), - [anon_sym_shared] = ACTIONS(4027), - [anon_sym_map_LBRACK] = ACTIONS(4027), - [anon_sym_chan] = ACTIONS(4027), - [anon_sym_thread] = ACTIONS(4027), - [anon_sym_atomic] = ACTIONS(4027), - [anon_sym_assert] = ACTIONS(4027), - [anon_sym_defer] = ACTIONS(4027), - [anon_sym_goto] = ACTIONS(4027), - [anon_sym_break] = ACTIONS(4027), - [anon_sym_continue] = ACTIONS(4027), - [anon_sym_return] = ACTIONS(4027), - [anon_sym_DOLLARfor] = ACTIONS(4027), - [anon_sym_for] = ACTIONS(4027), - [anon_sym_POUND] = ACTIONS(4027), - [anon_sym_asm] = ACTIONS(4027), - [anon_sym_AT_LBRACK] = ACTIONS(4027), - [sym___double_quote] = ACTIONS(4027), - [sym___single_quote] = ACTIONS(4027), - [sym___c_double_quote] = ACTIONS(4027), - [sym___c_single_quote] = ACTIONS(4027), - [sym___r_double_quote] = ACTIONS(4027), - [sym___r_single_quote] = ACTIONS(4027), - }, - [1518] = { - [ts_builtin_sym_end] = ACTIONS(4029), - [sym_identifier] = ACTIONS(4031), - [anon_sym_LF] = ACTIONS(4031), - [anon_sym_CR] = ACTIONS(4031), - [anon_sym_CR_LF] = ACTIONS(4031), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4031), - [anon_sym_LBRACE] = ACTIONS(4031), - [anon_sym_const] = ACTIONS(4031), - [anon_sym_LPAREN] = ACTIONS(4031), - [anon_sym___global] = ACTIONS(4031), - [anon_sym_type] = ACTIONS(4031), - [anon_sym_fn] = ACTIONS(4031), - [anon_sym_PLUS] = ACTIONS(4031), - [anon_sym_DASH] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(4031), - [anon_sym_struct] = ACTIONS(4031), - [anon_sym_union] = ACTIONS(4031), - [anon_sym_pub] = ACTIONS(4031), - [anon_sym_mut] = ACTIONS(4031), - [anon_sym_enum] = ACTIONS(4031), - [anon_sym_interface] = ACTIONS(4031), - [anon_sym_QMARK] = ACTIONS(4031), - [anon_sym_BANG] = ACTIONS(4031), - [anon_sym_go] = ACTIONS(4031), - [anon_sym_spawn] = ACTIONS(4031), - [anon_sym_json_DOTdecode] = ACTIONS(4031), - [anon_sym_LBRACK2] = ACTIONS(4031), - [anon_sym_TILDE] = ACTIONS(4031), - [anon_sym_CARET] = ACTIONS(4031), - [anon_sym_AMP] = ACTIONS(4031), - [anon_sym_LT_DASH] = ACTIONS(4031), - [sym_none] = ACTIONS(4031), - [sym_true] = ACTIONS(4031), - [sym_false] = ACTIONS(4031), - [sym_nil] = ACTIONS(4031), - [anon_sym_if] = ACTIONS(4031), - [anon_sym_DOLLARif] = ACTIONS(4031), - [anon_sym_match] = ACTIONS(4031), - [anon_sym_select] = ACTIONS(4031), - [anon_sym_lock] = ACTIONS(4031), - [anon_sym_rlock] = ACTIONS(4031), - [anon_sym_unsafe] = ACTIONS(4031), - [anon_sym_sql] = ACTIONS(4031), - [sym_int_literal] = ACTIONS(4031), - [sym_float_literal] = ACTIONS(4031), - [sym_rune_literal] = ACTIONS(4031), - [anon_sym_AT] = ACTIONS(4031), - [anon_sym_shared] = ACTIONS(4031), - [anon_sym_map_LBRACK] = ACTIONS(4031), - [anon_sym_chan] = ACTIONS(4031), - [anon_sym_thread] = ACTIONS(4031), - [anon_sym_atomic] = ACTIONS(4031), - [anon_sym_assert] = ACTIONS(4031), - [anon_sym_defer] = ACTIONS(4031), - [anon_sym_goto] = ACTIONS(4031), - [anon_sym_break] = ACTIONS(4031), - [anon_sym_continue] = ACTIONS(4031), - [anon_sym_return] = ACTIONS(4031), - [anon_sym_DOLLARfor] = ACTIONS(4031), - [anon_sym_for] = ACTIONS(4031), - [anon_sym_POUND] = ACTIONS(4031), - [anon_sym_asm] = ACTIONS(4031), - [anon_sym_AT_LBRACK] = ACTIONS(4031), - [sym___double_quote] = ACTIONS(4031), - [sym___single_quote] = ACTIONS(4031), - [sym___c_double_quote] = ACTIONS(4031), - [sym___c_single_quote] = ACTIONS(4031), - [sym___r_double_quote] = ACTIONS(4031), - [sym___r_single_quote] = ACTIONS(4031), - }, - [1519] = { - [ts_builtin_sym_end] = ACTIONS(4033), - [sym_identifier] = ACTIONS(4035), - [anon_sym_LF] = ACTIONS(4035), - [anon_sym_CR] = ACTIONS(4035), - [anon_sym_CR_LF] = ACTIONS(4035), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4035), - [anon_sym_LBRACE] = ACTIONS(4035), - [anon_sym_const] = ACTIONS(4035), - [anon_sym_LPAREN] = ACTIONS(4035), - [anon_sym___global] = ACTIONS(4035), - [anon_sym_type] = ACTIONS(4035), - [anon_sym_fn] = ACTIONS(4035), - [anon_sym_PLUS] = ACTIONS(4035), - [anon_sym_DASH] = ACTIONS(4035), - [anon_sym_STAR] = ACTIONS(4035), - [anon_sym_struct] = ACTIONS(4035), - [anon_sym_union] = ACTIONS(4035), - [anon_sym_pub] = ACTIONS(4035), - [anon_sym_mut] = ACTIONS(4035), - [anon_sym_enum] = ACTIONS(4035), - [anon_sym_interface] = ACTIONS(4035), - [anon_sym_QMARK] = ACTIONS(4035), - [anon_sym_BANG] = ACTIONS(4035), - [anon_sym_go] = ACTIONS(4035), - [anon_sym_spawn] = ACTIONS(4035), - [anon_sym_json_DOTdecode] = ACTIONS(4035), - [anon_sym_LBRACK2] = ACTIONS(4035), - [anon_sym_TILDE] = ACTIONS(4035), - [anon_sym_CARET] = ACTIONS(4035), - [anon_sym_AMP] = ACTIONS(4035), - [anon_sym_LT_DASH] = ACTIONS(4035), - [sym_none] = ACTIONS(4035), - [sym_true] = ACTIONS(4035), - [sym_false] = ACTIONS(4035), - [sym_nil] = ACTIONS(4035), - [anon_sym_if] = ACTIONS(4035), - [anon_sym_DOLLARif] = ACTIONS(4035), - [anon_sym_match] = ACTIONS(4035), - [anon_sym_select] = ACTIONS(4035), - [anon_sym_lock] = ACTIONS(4035), - [anon_sym_rlock] = ACTIONS(4035), - [anon_sym_unsafe] = ACTIONS(4035), - [anon_sym_sql] = ACTIONS(4035), - [sym_int_literal] = ACTIONS(4035), - [sym_float_literal] = ACTIONS(4035), - [sym_rune_literal] = ACTIONS(4035), - [anon_sym_AT] = ACTIONS(4035), - [anon_sym_shared] = ACTIONS(4035), - [anon_sym_map_LBRACK] = ACTIONS(4035), - [anon_sym_chan] = ACTIONS(4035), - [anon_sym_thread] = ACTIONS(4035), - [anon_sym_atomic] = ACTIONS(4035), - [anon_sym_assert] = ACTIONS(4035), - [anon_sym_defer] = ACTIONS(4035), - [anon_sym_goto] = ACTIONS(4035), - [anon_sym_break] = ACTIONS(4035), - [anon_sym_continue] = ACTIONS(4035), - [anon_sym_return] = ACTIONS(4035), - [anon_sym_DOLLARfor] = ACTIONS(4035), - [anon_sym_for] = ACTIONS(4035), - [anon_sym_POUND] = ACTIONS(4035), - [anon_sym_asm] = ACTIONS(4035), - [anon_sym_AT_LBRACK] = ACTIONS(4035), - [sym___double_quote] = ACTIONS(4035), - [sym___single_quote] = ACTIONS(4035), - [sym___c_double_quote] = ACTIONS(4035), - [sym___c_single_quote] = ACTIONS(4035), - [sym___r_double_quote] = ACTIONS(4035), - [sym___r_single_quote] = ACTIONS(4035), - }, - [1520] = { - [ts_builtin_sym_end] = ACTIONS(4037), - [sym_identifier] = ACTIONS(4039), - [anon_sym_LF] = ACTIONS(4039), - [anon_sym_CR] = ACTIONS(4039), - [anon_sym_CR_LF] = ACTIONS(4039), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4039), - [anon_sym_LBRACE] = ACTIONS(4039), - [anon_sym_const] = ACTIONS(4039), - [anon_sym_LPAREN] = ACTIONS(4039), - [anon_sym___global] = ACTIONS(4039), - [anon_sym_type] = ACTIONS(4039), - [anon_sym_fn] = ACTIONS(4039), - [anon_sym_PLUS] = ACTIONS(4039), - [anon_sym_DASH] = ACTIONS(4039), - [anon_sym_STAR] = ACTIONS(4039), - [anon_sym_struct] = ACTIONS(4039), - [anon_sym_union] = ACTIONS(4039), - [anon_sym_pub] = ACTIONS(4039), - [anon_sym_mut] = ACTIONS(4039), - [anon_sym_enum] = ACTIONS(4039), - [anon_sym_interface] = ACTIONS(4039), - [anon_sym_QMARK] = ACTIONS(4039), - [anon_sym_BANG] = ACTIONS(4039), - [anon_sym_go] = ACTIONS(4039), - [anon_sym_spawn] = ACTIONS(4039), - [anon_sym_json_DOTdecode] = ACTIONS(4039), - [anon_sym_LBRACK2] = ACTIONS(4039), - [anon_sym_TILDE] = ACTIONS(4039), - [anon_sym_CARET] = ACTIONS(4039), - [anon_sym_AMP] = ACTIONS(4039), - [anon_sym_LT_DASH] = ACTIONS(4039), - [sym_none] = ACTIONS(4039), - [sym_true] = ACTIONS(4039), - [sym_false] = ACTIONS(4039), - [sym_nil] = ACTIONS(4039), - [anon_sym_if] = ACTIONS(4039), - [anon_sym_DOLLARif] = ACTIONS(4039), - [anon_sym_match] = ACTIONS(4039), - [anon_sym_select] = ACTIONS(4039), - [anon_sym_lock] = ACTIONS(4039), - [anon_sym_rlock] = ACTIONS(4039), - [anon_sym_unsafe] = ACTIONS(4039), - [anon_sym_sql] = ACTIONS(4039), - [sym_int_literal] = ACTIONS(4039), - [sym_float_literal] = ACTIONS(4039), - [sym_rune_literal] = ACTIONS(4039), - [anon_sym_AT] = ACTIONS(4039), - [anon_sym_shared] = ACTIONS(4039), - [anon_sym_map_LBRACK] = ACTIONS(4039), - [anon_sym_chan] = ACTIONS(4039), - [anon_sym_thread] = ACTIONS(4039), - [anon_sym_atomic] = ACTIONS(4039), - [anon_sym_assert] = ACTIONS(4039), - [anon_sym_defer] = ACTIONS(4039), - [anon_sym_goto] = ACTIONS(4039), - [anon_sym_break] = ACTIONS(4039), - [anon_sym_continue] = ACTIONS(4039), - [anon_sym_return] = ACTIONS(4039), - [anon_sym_DOLLARfor] = ACTIONS(4039), - [anon_sym_for] = ACTIONS(4039), - [anon_sym_POUND] = ACTIONS(4039), - [anon_sym_asm] = ACTIONS(4039), - [anon_sym_AT_LBRACK] = ACTIONS(4039), - [sym___double_quote] = ACTIONS(4039), - [sym___single_quote] = ACTIONS(4039), - [sym___c_double_quote] = ACTIONS(4039), - [sym___c_single_quote] = ACTIONS(4039), - [sym___r_double_quote] = ACTIONS(4039), - [sym___r_single_quote] = ACTIONS(4039), - }, - [1521] = { - [ts_builtin_sym_end] = ACTIONS(4041), - [sym_identifier] = ACTIONS(4043), - [anon_sym_LF] = ACTIONS(4043), - [anon_sym_CR] = ACTIONS(4043), - [anon_sym_CR_LF] = ACTIONS(4043), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4043), - [anon_sym_LBRACE] = ACTIONS(4043), - [anon_sym_const] = ACTIONS(4043), - [anon_sym_LPAREN] = ACTIONS(4043), - [anon_sym___global] = ACTIONS(4043), - [anon_sym_type] = ACTIONS(4043), - [anon_sym_fn] = ACTIONS(4043), - [anon_sym_PLUS] = ACTIONS(4043), - [anon_sym_DASH] = ACTIONS(4043), - [anon_sym_STAR] = ACTIONS(4043), - [anon_sym_struct] = ACTIONS(4043), - [anon_sym_union] = ACTIONS(4043), - [anon_sym_pub] = ACTIONS(4043), - [anon_sym_mut] = ACTIONS(4043), - [anon_sym_enum] = ACTIONS(4043), - [anon_sym_interface] = ACTIONS(4043), - [anon_sym_QMARK] = ACTIONS(4043), - [anon_sym_BANG] = ACTIONS(4043), - [anon_sym_go] = ACTIONS(4043), - [anon_sym_spawn] = ACTIONS(4043), - [anon_sym_json_DOTdecode] = ACTIONS(4043), - [anon_sym_LBRACK2] = ACTIONS(4043), - [anon_sym_TILDE] = ACTIONS(4043), - [anon_sym_CARET] = ACTIONS(4043), - [anon_sym_AMP] = ACTIONS(4043), - [anon_sym_LT_DASH] = ACTIONS(4043), - [sym_none] = ACTIONS(4043), - [sym_true] = ACTIONS(4043), - [sym_false] = ACTIONS(4043), - [sym_nil] = ACTIONS(4043), - [anon_sym_if] = ACTIONS(4043), - [anon_sym_DOLLARif] = ACTIONS(4043), - [anon_sym_match] = ACTIONS(4043), - [anon_sym_select] = ACTIONS(4043), - [anon_sym_lock] = ACTIONS(4043), - [anon_sym_rlock] = ACTIONS(4043), - [anon_sym_unsafe] = ACTIONS(4043), - [anon_sym_sql] = ACTIONS(4043), - [sym_int_literal] = ACTIONS(4043), - [sym_float_literal] = ACTIONS(4043), - [sym_rune_literal] = ACTIONS(4043), - [anon_sym_AT] = ACTIONS(4043), - [anon_sym_shared] = ACTIONS(4043), - [anon_sym_map_LBRACK] = ACTIONS(4043), - [anon_sym_chan] = ACTIONS(4043), - [anon_sym_thread] = ACTIONS(4043), - [anon_sym_atomic] = ACTIONS(4043), - [anon_sym_assert] = ACTIONS(4043), - [anon_sym_defer] = ACTIONS(4043), - [anon_sym_goto] = ACTIONS(4043), - [anon_sym_break] = ACTIONS(4043), - [anon_sym_continue] = ACTIONS(4043), - [anon_sym_return] = ACTIONS(4043), - [anon_sym_DOLLARfor] = ACTIONS(4043), - [anon_sym_for] = ACTIONS(4043), - [anon_sym_POUND] = ACTIONS(4043), - [anon_sym_asm] = ACTIONS(4043), - [anon_sym_AT_LBRACK] = ACTIONS(4043), - [sym___double_quote] = ACTIONS(4043), - [sym___single_quote] = ACTIONS(4043), - [sym___c_double_quote] = ACTIONS(4043), - [sym___c_single_quote] = ACTIONS(4043), - [sym___r_double_quote] = ACTIONS(4043), - [sym___r_single_quote] = ACTIONS(4043), - }, - [1522] = { - [ts_builtin_sym_end] = ACTIONS(4045), - [sym_identifier] = ACTIONS(4047), - [anon_sym_LF] = ACTIONS(4047), - [anon_sym_CR] = ACTIONS(4047), - [anon_sym_CR_LF] = ACTIONS(4047), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4047), - [anon_sym_LBRACE] = ACTIONS(4047), - [anon_sym_const] = ACTIONS(4047), - [anon_sym_LPAREN] = ACTIONS(4047), - [anon_sym___global] = ACTIONS(4047), - [anon_sym_type] = ACTIONS(4047), - [anon_sym_fn] = ACTIONS(4047), - [anon_sym_PLUS] = ACTIONS(4047), - [anon_sym_DASH] = ACTIONS(4047), - [anon_sym_STAR] = ACTIONS(4047), - [anon_sym_struct] = ACTIONS(4047), - [anon_sym_union] = ACTIONS(4047), - [anon_sym_pub] = ACTIONS(4047), - [anon_sym_mut] = ACTIONS(4047), - [anon_sym_enum] = ACTIONS(4047), - [anon_sym_interface] = ACTIONS(4047), - [anon_sym_QMARK] = ACTIONS(4047), - [anon_sym_BANG] = ACTIONS(4047), - [anon_sym_go] = ACTIONS(4047), - [anon_sym_spawn] = ACTIONS(4047), - [anon_sym_json_DOTdecode] = ACTIONS(4047), - [anon_sym_LBRACK2] = ACTIONS(4047), - [anon_sym_TILDE] = ACTIONS(4047), - [anon_sym_CARET] = ACTIONS(4047), - [anon_sym_AMP] = ACTIONS(4047), - [anon_sym_LT_DASH] = ACTIONS(4047), - [sym_none] = ACTIONS(4047), - [sym_true] = ACTIONS(4047), - [sym_false] = ACTIONS(4047), - [sym_nil] = ACTIONS(4047), - [anon_sym_if] = ACTIONS(4047), - [anon_sym_DOLLARif] = ACTIONS(4047), - [anon_sym_match] = ACTIONS(4047), - [anon_sym_select] = ACTIONS(4047), - [anon_sym_lock] = ACTIONS(4047), - [anon_sym_rlock] = ACTIONS(4047), - [anon_sym_unsafe] = ACTIONS(4047), - [anon_sym_sql] = ACTIONS(4047), - [sym_int_literal] = ACTIONS(4047), - [sym_float_literal] = ACTIONS(4047), - [sym_rune_literal] = ACTIONS(4047), - [anon_sym_AT] = ACTIONS(4047), - [anon_sym_shared] = ACTIONS(4047), - [anon_sym_map_LBRACK] = ACTIONS(4047), - [anon_sym_chan] = ACTIONS(4047), - [anon_sym_thread] = ACTIONS(4047), - [anon_sym_atomic] = ACTIONS(4047), - [anon_sym_assert] = ACTIONS(4047), - [anon_sym_defer] = ACTIONS(4047), - [anon_sym_goto] = ACTIONS(4047), - [anon_sym_break] = ACTIONS(4047), - [anon_sym_continue] = ACTIONS(4047), - [anon_sym_return] = ACTIONS(4047), - [anon_sym_DOLLARfor] = ACTIONS(4047), - [anon_sym_for] = ACTIONS(4047), - [anon_sym_POUND] = ACTIONS(4047), - [anon_sym_asm] = ACTIONS(4047), - [anon_sym_AT_LBRACK] = ACTIONS(4047), - [sym___double_quote] = ACTIONS(4047), - [sym___single_quote] = ACTIONS(4047), - [sym___c_double_quote] = ACTIONS(4047), - [sym___c_single_quote] = ACTIONS(4047), - [sym___r_double_quote] = ACTIONS(4047), - [sym___r_single_quote] = ACTIONS(4047), - }, - [1523] = { - [ts_builtin_sym_end] = ACTIONS(4049), - [sym_identifier] = ACTIONS(4051), - [anon_sym_LF] = ACTIONS(4051), - [anon_sym_CR] = ACTIONS(4051), - [anon_sym_CR_LF] = ACTIONS(4051), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4051), - [anon_sym_LBRACE] = ACTIONS(4051), - [anon_sym_const] = ACTIONS(4051), - [anon_sym_LPAREN] = ACTIONS(4051), - [anon_sym___global] = ACTIONS(4051), - [anon_sym_type] = ACTIONS(4051), - [anon_sym_fn] = ACTIONS(4051), - [anon_sym_PLUS] = ACTIONS(4051), - [anon_sym_DASH] = ACTIONS(4051), - [anon_sym_STAR] = ACTIONS(4051), - [anon_sym_struct] = ACTIONS(4051), - [anon_sym_union] = ACTIONS(4051), - [anon_sym_pub] = ACTIONS(4051), - [anon_sym_mut] = ACTIONS(4051), - [anon_sym_enum] = ACTIONS(4051), - [anon_sym_interface] = ACTIONS(4051), - [anon_sym_QMARK] = ACTIONS(4051), - [anon_sym_BANG] = ACTIONS(4051), - [anon_sym_go] = ACTIONS(4051), - [anon_sym_spawn] = ACTIONS(4051), - [anon_sym_json_DOTdecode] = ACTIONS(4051), - [anon_sym_LBRACK2] = ACTIONS(4051), - [anon_sym_TILDE] = ACTIONS(4051), - [anon_sym_CARET] = ACTIONS(4051), - [anon_sym_AMP] = ACTIONS(4051), - [anon_sym_LT_DASH] = ACTIONS(4051), - [sym_none] = ACTIONS(4051), - [sym_true] = ACTIONS(4051), - [sym_false] = ACTIONS(4051), - [sym_nil] = ACTIONS(4051), - [anon_sym_if] = ACTIONS(4051), - [anon_sym_DOLLARif] = ACTIONS(4051), - [anon_sym_match] = ACTIONS(4051), - [anon_sym_select] = ACTIONS(4051), - [anon_sym_lock] = ACTIONS(4051), - [anon_sym_rlock] = ACTIONS(4051), - [anon_sym_unsafe] = ACTIONS(4051), - [anon_sym_sql] = ACTIONS(4051), - [sym_int_literal] = ACTIONS(4051), - [sym_float_literal] = ACTIONS(4051), - [sym_rune_literal] = ACTIONS(4051), - [anon_sym_AT] = ACTIONS(4051), - [anon_sym_shared] = ACTIONS(4051), - [anon_sym_map_LBRACK] = ACTIONS(4051), - [anon_sym_chan] = ACTIONS(4051), - [anon_sym_thread] = ACTIONS(4051), - [anon_sym_atomic] = ACTIONS(4051), - [anon_sym_assert] = ACTIONS(4051), - [anon_sym_defer] = ACTIONS(4051), - [anon_sym_goto] = ACTIONS(4051), - [anon_sym_break] = ACTIONS(4051), - [anon_sym_continue] = ACTIONS(4051), - [anon_sym_return] = ACTIONS(4051), - [anon_sym_DOLLARfor] = ACTIONS(4051), - [anon_sym_for] = ACTIONS(4051), - [anon_sym_POUND] = ACTIONS(4051), - [anon_sym_asm] = ACTIONS(4051), - [anon_sym_AT_LBRACK] = ACTIONS(4051), - [sym___double_quote] = ACTIONS(4051), - [sym___single_quote] = ACTIONS(4051), - [sym___c_double_quote] = ACTIONS(4051), - [sym___c_single_quote] = ACTIONS(4051), - [sym___r_double_quote] = ACTIONS(4051), - [sym___r_single_quote] = ACTIONS(4051), - }, - [1524] = { - [ts_builtin_sym_end] = ACTIONS(4053), - [sym_identifier] = ACTIONS(4055), - [anon_sym_LF] = ACTIONS(4055), - [anon_sym_CR] = ACTIONS(4055), - [anon_sym_CR_LF] = ACTIONS(4055), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4055), - [anon_sym_LBRACE] = ACTIONS(4055), - [anon_sym_const] = ACTIONS(4055), - [anon_sym_LPAREN] = ACTIONS(4055), - [anon_sym___global] = ACTIONS(4055), - [anon_sym_type] = ACTIONS(4055), - [anon_sym_fn] = ACTIONS(4055), - [anon_sym_PLUS] = ACTIONS(4055), - [anon_sym_DASH] = ACTIONS(4055), - [anon_sym_STAR] = ACTIONS(4055), - [anon_sym_struct] = ACTIONS(4055), - [anon_sym_union] = ACTIONS(4055), - [anon_sym_pub] = ACTIONS(4055), - [anon_sym_mut] = ACTIONS(4055), - [anon_sym_enum] = ACTIONS(4055), - [anon_sym_interface] = ACTIONS(4055), - [anon_sym_QMARK] = ACTIONS(4055), - [anon_sym_BANG] = ACTIONS(4055), - [anon_sym_go] = ACTIONS(4055), - [anon_sym_spawn] = ACTIONS(4055), - [anon_sym_json_DOTdecode] = ACTIONS(4055), - [anon_sym_LBRACK2] = ACTIONS(4055), - [anon_sym_TILDE] = ACTIONS(4055), - [anon_sym_CARET] = ACTIONS(4055), - [anon_sym_AMP] = ACTIONS(4055), - [anon_sym_LT_DASH] = ACTIONS(4055), - [sym_none] = ACTIONS(4055), - [sym_true] = ACTIONS(4055), - [sym_false] = ACTIONS(4055), - [sym_nil] = ACTIONS(4055), - [anon_sym_if] = ACTIONS(4055), - [anon_sym_DOLLARif] = ACTIONS(4055), - [anon_sym_match] = ACTIONS(4055), - [anon_sym_select] = ACTIONS(4055), - [anon_sym_lock] = ACTIONS(4055), - [anon_sym_rlock] = ACTIONS(4055), - [anon_sym_unsafe] = ACTIONS(4055), - [anon_sym_sql] = ACTIONS(4055), - [sym_int_literal] = ACTIONS(4055), - [sym_float_literal] = ACTIONS(4055), - [sym_rune_literal] = ACTIONS(4055), - [anon_sym_AT] = ACTIONS(4055), - [anon_sym_shared] = ACTIONS(4055), - [anon_sym_map_LBRACK] = ACTIONS(4055), - [anon_sym_chan] = ACTIONS(4055), - [anon_sym_thread] = ACTIONS(4055), - [anon_sym_atomic] = ACTIONS(4055), - [anon_sym_assert] = ACTIONS(4055), - [anon_sym_defer] = ACTIONS(4055), - [anon_sym_goto] = ACTIONS(4055), - [anon_sym_break] = ACTIONS(4055), - [anon_sym_continue] = ACTIONS(4055), - [anon_sym_return] = ACTIONS(4055), - [anon_sym_DOLLARfor] = ACTIONS(4055), - [anon_sym_for] = ACTIONS(4055), - [anon_sym_POUND] = ACTIONS(4055), - [anon_sym_asm] = ACTIONS(4055), - [anon_sym_AT_LBRACK] = ACTIONS(4055), - [sym___double_quote] = ACTIONS(4055), - [sym___single_quote] = ACTIONS(4055), - [sym___c_double_quote] = ACTIONS(4055), - [sym___c_single_quote] = ACTIONS(4055), - [sym___r_double_quote] = ACTIONS(4055), - [sym___r_single_quote] = ACTIONS(4055), - }, - [1525] = { - [ts_builtin_sym_end] = ACTIONS(4057), - [sym_identifier] = ACTIONS(4059), - [anon_sym_LF] = ACTIONS(4059), - [anon_sym_CR] = ACTIONS(4059), - [anon_sym_CR_LF] = ACTIONS(4059), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4059), - [anon_sym_LBRACE] = ACTIONS(4059), - [anon_sym_const] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4059), - [anon_sym___global] = ACTIONS(4059), - [anon_sym_type] = ACTIONS(4059), - [anon_sym_fn] = ACTIONS(4059), - [anon_sym_PLUS] = ACTIONS(4059), - [anon_sym_DASH] = ACTIONS(4059), - [anon_sym_STAR] = ACTIONS(4059), - [anon_sym_struct] = ACTIONS(4059), - [anon_sym_union] = ACTIONS(4059), - [anon_sym_pub] = ACTIONS(4059), - [anon_sym_mut] = ACTIONS(4059), - [anon_sym_enum] = ACTIONS(4059), - [anon_sym_interface] = ACTIONS(4059), - [anon_sym_QMARK] = ACTIONS(4059), - [anon_sym_BANG] = ACTIONS(4059), - [anon_sym_go] = ACTIONS(4059), - [anon_sym_spawn] = ACTIONS(4059), - [anon_sym_json_DOTdecode] = ACTIONS(4059), - [anon_sym_LBRACK2] = ACTIONS(4059), - [anon_sym_TILDE] = ACTIONS(4059), - [anon_sym_CARET] = ACTIONS(4059), - [anon_sym_AMP] = ACTIONS(4059), - [anon_sym_LT_DASH] = ACTIONS(4059), - [sym_none] = ACTIONS(4059), - [sym_true] = ACTIONS(4059), - [sym_false] = ACTIONS(4059), - [sym_nil] = ACTIONS(4059), - [anon_sym_if] = ACTIONS(4059), - [anon_sym_DOLLARif] = ACTIONS(4059), - [anon_sym_match] = ACTIONS(4059), - [anon_sym_select] = ACTIONS(4059), - [anon_sym_lock] = ACTIONS(4059), - [anon_sym_rlock] = ACTIONS(4059), - [anon_sym_unsafe] = ACTIONS(4059), - [anon_sym_sql] = ACTIONS(4059), - [sym_int_literal] = ACTIONS(4059), - [sym_float_literal] = ACTIONS(4059), - [sym_rune_literal] = ACTIONS(4059), - [anon_sym_AT] = ACTIONS(4059), - [anon_sym_shared] = ACTIONS(4059), - [anon_sym_map_LBRACK] = ACTIONS(4059), - [anon_sym_chan] = ACTIONS(4059), - [anon_sym_thread] = ACTIONS(4059), - [anon_sym_atomic] = ACTIONS(4059), - [anon_sym_assert] = ACTIONS(4059), - [anon_sym_defer] = ACTIONS(4059), - [anon_sym_goto] = ACTIONS(4059), - [anon_sym_break] = ACTIONS(4059), - [anon_sym_continue] = ACTIONS(4059), - [anon_sym_return] = ACTIONS(4059), - [anon_sym_DOLLARfor] = ACTIONS(4059), - [anon_sym_for] = ACTIONS(4059), - [anon_sym_POUND] = ACTIONS(4059), - [anon_sym_asm] = ACTIONS(4059), - [anon_sym_AT_LBRACK] = ACTIONS(4059), - [sym___double_quote] = ACTIONS(4059), - [sym___single_quote] = ACTIONS(4059), - [sym___c_double_quote] = ACTIONS(4059), - [sym___c_single_quote] = ACTIONS(4059), - [sym___r_double_quote] = ACTIONS(4059), - [sym___r_single_quote] = ACTIONS(4059), - }, - [1526] = { - [ts_builtin_sym_end] = ACTIONS(2698), - [sym_identifier] = ACTIONS(2700), - [anon_sym_LF] = ACTIONS(2700), - [anon_sym_CR] = ACTIONS(2700), - [anon_sym_CR_LF] = ACTIONS(2700), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(2700), - [anon_sym_const] = ACTIONS(2700), - [anon_sym_LPAREN] = ACTIONS(2700), - [anon_sym___global] = ACTIONS(2700), - [anon_sym_type] = ACTIONS(2700), - [anon_sym_fn] = ACTIONS(2700), - [anon_sym_PLUS] = ACTIONS(2700), - [anon_sym_DASH] = ACTIONS(2700), - [anon_sym_STAR] = ACTIONS(2700), - [anon_sym_struct] = ACTIONS(2700), - [anon_sym_union] = ACTIONS(2700), - [anon_sym_pub] = ACTIONS(2700), - [anon_sym_mut] = ACTIONS(2700), - [anon_sym_enum] = ACTIONS(2700), - [anon_sym_interface] = ACTIONS(2700), - [anon_sym_QMARK] = ACTIONS(2700), - [anon_sym_BANG] = ACTIONS(2700), - [anon_sym_go] = ACTIONS(2700), - [anon_sym_spawn] = ACTIONS(2700), - [anon_sym_json_DOTdecode] = ACTIONS(2700), - [anon_sym_LBRACK2] = ACTIONS(2700), - [anon_sym_TILDE] = ACTIONS(2700), - [anon_sym_CARET] = ACTIONS(2700), - [anon_sym_AMP] = ACTIONS(2700), - [anon_sym_LT_DASH] = ACTIONS(2700), - [sym_none] = ACTIONS(2700), - [sym_true] = ACTIONS(2700), - [sym_false] = ACTIONS(2700), - [sym_nil] = ACTIONS(2700), - [anon_sym_if] = ACTIONS(2700), - [anon_sym_DOLLARif] = ACTIONS(2700), - [anon_sym_match] = ACTIONS(2700), - [anon_sym_select] = ACTIONS(2700), - [anon_sym_lock] = ACTIONS(2700), - [anon_sym_rlock] = ACTIONS(2700), - [anon_sym_unsafe] = ACTIONS(2700), - [anon_sym_sql] = ACTIONS(2700), - [sym_int_literal] = ACTIONS(2700), - [sym_float_literal] = ACTIONS(2700), - [sym_rune_literal] = ACTIONS(2700), - [anon_sym_AT] = ACTIONS(2700), - [anon_sym_shared] = ACTIONS(2700), - [anon_sym_map_LBRACK] = ACTIONS(2700), - [anon_sym_chan] = ACTIONS(2700), - [anon_sym_thread] = ACTIONS(2700), - [anon_sym_atomic] = ACTIONS(2700), - [anon_sym_assert] = ACTIONS(2700), - [anon_sym_defer] = ACTIONS(2700), - [anon_sym_goto] = ACTIONS(2700), - [anon_sym_break] = ACTIONS(2700), - [anon_sym_continue] = ACTIONS(2700), - [anon_sym_return] = ACTIONS(2700), - [anon_sym_DOLLARfor] = ACTIONS(2700), - [anon_sym_for] = ACTIONS(2700), - [anon_sym_POUND] = ACTIONS(2700), - [anon_sym_asm] = ACTIONS(2700), - [anon_sym_AT_LBRACK] = ACTIONS(2700), - [sym___double_quote] = ACTIONS(2700), - [sym___single_quote] = ACTIONS(2700), - [sym___c_double_quote] = ACTIONS(2700), - [sym___c_single_quote] = ACTIONS(2700), - [sym___r_double_quote] = ACTIONS(2700), - [sym___r_single_quote] = ACTIONS(2700), - }, - [1527] = { - [ts_builtin_sym_end] = ACTIONS(4061), - [sym_identifier] = ACTIONS(4063), - [anon_sym_LF] = ACTIONS(4063), - [anon_sym_CR] = ACTIONS(4063), - [anon_sym_CR_LF] = ACTIONS(4063), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4063), - [anon_sym_LBRACE] = ACTIONS(4063), - [anon_sym_const] = ACTIONS(4063), - [anon_sym_LPAREN] = ACTIONS(4063), - [anon_sym___global] = ACTIONS(4063), - [anon_sym_type] = ACTIONS(4063), - [anon_sym_fn] = ACTIONS(4063), - [anon_sym_PLUS] = ACTIONS(4063), - [anon_sym_DASH] = ACTIONS(4063), - [anon_sym_STAR] = ACTIONS(4063), - [anon_sym_struct] = ACTIONS(4063), - [anon_sym_union] = ACTIONS(4063), - [anon_sym_pub] = ACTIONS(4063), - [anon_sym_mut] = ACTIONS(4063), - [anon_sym_enum] = ACTIONS(4063), - [anon_sym_interface] = ACTIONS(4063), - [anon_sym_QMARK] = ACTIONS(4063), - [anon_sym_BANG] = ACTIONS(4063), - [anon_sym_go] = ACTIONS(4063), - [anon_sym_spawn] = ACTIONS(4063), - [anon_sym_json_DOTdecode] = ACTIONS(4063), - [anon_sym_LBRACK2] = ACTIONS(4063), - [anon_sym_TILDE] = ACTIONS(4063), - [anon_sym_CARET] = ACTIONS(4063), - [anon_sym_AMP] = ACTIONS(4063), - [anon_sym_LT_DASH] = ACTIONS(4063), - [sym_none] = ACTIONS(4063), - [sym_true] = ACTIONS(4063), - [sym_false] = ACTIONS(4063), - [sym_nil] = ACTIONS(4063), - [anon_sym_if] = ACTIONS(4063), - [anon_sym_DOLLARif] = ACTIONS(4063), - [anon_sym_match] = ACTIONS(4063), - [anon_sym_select] = ACTIONS(4063), - [anon_sym_lock] = ACTIONS(4063), - [anon_sym_rlock] = ACTIONS(4063), - [anon_sym_unsafe] = ACTIONS(4063), - [anon_sym_sql] = ACTIONS(4063), - [sym_int_literal] = ACTIONS(4063), - [sym_float_literal] = ACTIONS(4063), - [sym_rune_literal] = ACTIONS(4063), - [anon_sym_AT] = ACTIONS(4063), - [anon_sym_shared] = ACTIONS(4063), - [anon_sym_map_LBRACK] = ACTIONS(4063), - [anon_sym_chan] = ACTIONS(4063), - [anon_sym_thread] = ACTIONS(4063), - [anon_sym_atomic] = ACTIONS(4063), - [anon_sym_assert] = ACTIONS(4063), - [anon_sym_defer] = ACTIONS(4063), - [anon_sym_goto] = ACTIONS(4063), - [anon_sym_break] = ACTIONS(4063), - [anon_sym_continue] = ACTIONS(4063), - [anon_sym_return] = ACTIONS(4063), - [anon_sym_DOLLARfor] = ACTIONS(4063), - [anon_sym_for] = ACTIONS(4063), - [anon_sym_POUND] = ACTIONS(4063), - [anon_sym_asm] = ACTIONS(4063), - [anon_sym_AT_LBRACK] = ACTIONS(4063), - [sym___double_quote] = ACTIONS(4063), - [sym___single_quote] = ACTIONS(4063), - [sym___c_double_quote] = ACTIONS(4063), - [sym___c_single_quote] = ACTIONS(4063), - [sym___r_double_quote] = ACTIONS(4063), - [sym___r_single_quote] = ACTIONS(4063), - }, - [1528] = { - [ts_builtin_sym_end] = ACTIONS(4065), - [sym_identifier] = ACTIONS(4067), - [anon_sym_LF] = ACTIONS(4067), - [anon_sym_CR] = ACTIONS(4067), - [anon_sym_CR_LF] = ACTIONS(4067), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4067), - [anon_sym_LBRACE] = ACTIONS(4067), - [anon_sym_const] = ACTIONS(4067), - [anon_sym_LPAREN] = ACTIONS(4067), - [anon_sym___global] = ACTIONS(4067), - [anon_sym_type] = ACTIONS(4067), - [anon_sym_fn] = ACTIONS(4067), - [anon_sym_PLUS] = ACTIONS(4067), - [anon_sym_DASH] = ACTIONS(4067), - [anon_sym_STAR] = ACTIONS(4067), - [anon_sym_struct] = ACTIONS(4067), - [anon_sym_union] = ACTIONS(4067), - [anon_sym_pub] = ACTIONS(4067), - [anon_sym_mut] = ACTIONS(4067), - [anon_sym_enum] = ACTIONS(4067), - [anon_sym_interface] = ACTIONS(4067), - [anon_sym_QMARK] = ACTIONS(4067), - [anon_sym_BANG] = ACTIONS(4067), - [anon_sym_go] = ACTIONS(4067), - [anon_sym_spawn] = ACTIONS(4067), - [anon_sym_json_DOTdecode] = ACTIONS(4067), - [anon_sym_LBRACK2] = ACTIONS(4067), - [anon_sym_TILDE] = ACTIONS(4067), - [anon_sym_CARET] = ACTIONS(4067), - [anon_sym_AMP] = ACTIONS(4067), - [anon_sym_LT_DASH] = ACTIONS(4067), - [sym_none] = ACTIONS(4067), - [sym_true] = ACTIONS(4067), - [sym_false] = ACTIONS(4067), - [sym_nil] = ACTIONS(4067), - [anon_sym_if] = ACTIONS(4067), - [anon_sym_DOLLARif] = ACTIONS(4067), - [anon_sym_match] = ACTIONS(4067), - [anon_sym_select] = ACTIONS(4067), - [anon_sym_lock] = ACTIONS(4067), - [anon_sym_rlock] = ACTIONS(4067), - [anon_sym_unsafe] = ACTIONS(4067), - [anon_sym_sql] = ACTIONS(4067), - [sym_int_literal] = ACTIONS(4067), - [sym_float_literal] = ACTIONS(4067), - [sym_rune_literal] = ACTIONS(4067), - [anon_sym_AT] = ACTIONS(4067), - [anon_sym_shared] = ACTIONS(4067), - [anon_sym_map_LBRACK] = ACTIONS(4067), - [anon_sym_chan] = ACTIONS(4067), - [anon_sym_thread] = ACTIONS(4067), - [anon_sym_atomic] = ACTIONS(4067), - [anon_sym_assert] = ACTIONS(4067), - [anon_sym_defer] = ACTIONS(4067), - [anon_sym_goto] = ACTIONS(4067), - [anon_sym_break] = ACTIONS(4067), - [anon_sym_continue] = ACTIONS(4067), - [anon_sym_return] = ACTIONS(4067), - [anon_sym_DOLLARfor] = ACTIONS(4067), - [anon_sym_for] = ACTIONS(4067), - [anon_sym_POUND] = ACTIONS(4067), - [anon_sym_asm] = ACTIONS(4067), - [anon_sym_AT_LBRACK] = ACTIONS(4067), - [sym___double_quote] = ACTIONS(4067), - [sym___single_quote] = ACTIONS(4067), - [sym___c_double_quote] = ACTIONS(4067), - [sym___c_single_quote] = ACTIONS(4067), - [sym___r_double_quote] = ACTIONS(4067), - [sym___r_single_quote] = ACTIONS(4067), - }, - [1529] = { - [ts_builtin_sym_end] = ACTIONS(4069), - [sym_identifier] = ACTIONS(4071), - [anon_sym_LF] = ACTIONS(4071), - [anon_sym_CR] = ACTIONS(4071), - [anon_sym_CR_LF] = ACTIONS(4071), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4071), - [anon_sym_LBRACE] = ACTIONS(4071), - [anon_sym_const] = ACTIONS(4071), - [anon_sym_LPAREN] = ACTIONS(4071), - [anon_sym___global] = ACTIONS(4071), - [anon_sym_type] = ACTIONS(4071), - [anon_sym_fn] = ACTIONS(4071), - [anon_sym_PLUS] = ACTIONS(4071), - [anon_sym_DASH] = ACTIONS(4071), - [anon_sym_STAR] = ACTIONS(4071), - [anon_sym_struct] = ACTIONS(4071), - [anon_sym_union] = ACTIONS(4071), - [anon_sym_pub] = ACTIONS(4071), - [anon_sym_mut] = ACTIONS(4071), - [anon_sym_enum] = ACTIONS(4071), - [anon_sym_interface] = ACTIONS(4071), - [anon_sym_QMARK] = ACTIONS(4071), - [anon_sym_BANG] = ACTIONS(4071), - [anon_sym_go] = ACTIONS(4071), - [anon_sym_spawn] = ACTIONS(4071), - [anon_sym_json_DOTdecode] = ACTIONS(4071), - [anon_sym_LBRACK2] = ACTIONS(4071), - [anon_sym_TILDE] = ACTIONS(4071), - [anon_sym_CARET] = ACTIONS(4071), - [anon_sym_AMP] = ACTIONS(4071), - [anon_sym_LT_DASH] = ACTIONS(4071), - [sym_none] = ACTIONS(4071), - [sym_true] = ACTIONS(4071), - [sym_false] = ACTIONS(4071), - [sym_nil] = ACTIONS(4071), - [anon_sym_if] = ACTIONS(4071), - [anon_sym_DOLLARif] = ACTIONS(4071), - [anon_sym_match] = ACTIONS(4071), - [anon_sym_select] = ACTIONS(4071), - [anon_sym_lock] = ACTIONS(4071), - [anon_sym_rlock] = ACTIONS(4071), - [anon_sym_unsafe] = ACTIONS(4071), - [anon_sym_sql] = ACTIONS(4071), - [sym_int_literal] = ACTIONS(4071), - [sym_float_literal] = ACTIONS(4071), - [sym_rune_literal] = ACTIONS(4071), - [anon_sym_AT] = ACTIONS(4071), - [anon_sym_shared] = ACTIONS(4071), - [anon_sym_map_LBRACK] = ACTIONS(4071), - [anon_sym_chan] = ACTIONS(4071), - [anon_sym_thread] = ACTIONS(4071), - [anon_sym_atomic] = ACTIONS(4071), - [anon_sym_assert] = ACTIONS(4071), - [anon_sym_defer] = ACTIONS(4071), - [anon_sym_goto] = ACTIONS(4071), - [anon_sym_break] = ACTIONS(4071), - [anon_sym_continue] = ACTIONS(4071), - [anon_sym_return] = ACTIONS(4071), - [anon_sym_DOLLARfor] = ACTIONS(4071), - [anon_sym_for] = ACTIONS(4071), - [anon_sym_POUND] = ACTIONS(4071), - [anon_sym_asm] = ACTIONS(4071), - [anon_sym_AT_LBRACK] = ACTIONS(4071), - [sym___double_quote] = ACTIONS(4071), - [sym___single_quote] = ACTIONS(4071), - [sym___c_double_quote] = ACTIONS(4071), - [sym___c_single_quote] = ACTIONS(4071), - [sym___r_double_quote] = ACTIONS(4071), - [sym___r_single_quote] = ACTIONS(4071), - }, - [1530] = { - [ts_builtin_sym_end] = ACTIONS(4073), - [sym_identifier] = ACTIONS(4075), - [anon_sym_LF] = ACTIONS(4075), - [anon_sym_CR] = ACTIONS(4075), - [anon_sym_CR_LF] = ACTIONS(4075), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4075), - [anon_sym_LBRACE] = ACTIONS(4075), - [anon_sym_const] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(4075), - [anon_sym___global] = ACTIONS(4075), - [anon_sym_type] = ACTIONS(4075), - [anon_sym_fn] = ACTIONS(4075), - [anon_sym_PLUS] = ACTIONS(4075), - [anon_sym_DASH] = ACTIONS(4075), - [anon_sym_STAR] = ACTIONS(4075), - [anon_sym_struct] = ACTIONS(4075), - [anon_sym_union] = ACTIONS(4075), - [anon_sym_pub] = ACTIONS(4075), - [anon_sym_mut] = ACTIONS(4075), - [anon_sym_enum] = ACTIONS(4075), - [anon_sym_interface] = ACTIONS(4075), - [anon_sym_QMARK] = ACTIONS(4075), - [anon_sym_BANG] = ACTIONS(4075), - [anon_sym_go] = ACTIONS(4075), - [anon_sym_spawn] = ACTIONS(4075), - [anon_sym_json_DOTdecode] = ACTIONS(4075), - [anon_sym_LBRACK2] = ACTIONS(4075), - [anon_sym_TILDE] = ACTIONS(4075), - [anon_sym_CARET] = ACTIONS(4075), - [anon_sym_AMP] = ACTIONS(4075), - [anon_sym_LT_DASH] = ACTIONS(4075), - [sym_none] = ACTIONS(4075), - [sym_true] = ACTIONS(4075), - [sym_false] = ACTIONS(4075), - [sym_nil] = ACTIONS(4075), - [anon_sym_if] = ACTIONS(4075), - [anon_sym_DOLLARif] = ACTIONS(4075), - [anon_sym_match] = ACTIONS(4075), - [anon_sym_select] = ACTIONS(4075), - [anon_sym_lock] = ACTIONS(4075), - [anon_sym_rlock] = ACTIONS(4075), - [anon_sym_unsafe] = ACTIONS(4075), - [anon_sym_sql] = ACTIONS(4075), - [sym_int_literal] = ACTIONS(4075), - [sym_float_literal] = ACTIONS(4075), - [sym_rune_literal] = ACTIONS(4075), - [anon_sym_AT] = ACTIONS(4075), - [anon_sym_shared] = ACTIONS(4075), - [anon_sym_map_LBRACK] = ACTIONS(4075), - [anon_sym_chan] = ACTIONS(4075), - [anon_sym_thread] = ACTIONS(4075), - [anon_sym_atomic] = ACTIONS(4075), - [anon_sym_assert] = ACTIONS(4075), - [anon_sym_defer] = ACTIONS(4075), - [anon_sym_goto] = ACTIONS(4075), - [anon_sym_break] = ACTIONS(4075), - [anon_sym_continue] = ACTIONS(4075), - [anon_sym_return] = ACTIONS(4075), - [anon_sym_DOLLARfor] = ACTIONS(4075), - [anon_sym_for] = ACTIONS(4075), - [anon_sym_POUND] = ACTIONS(4075), - [anon_sym_asm] = ACTIONS(4075), - [anon_sym_AT_LBRACK] = ACTIONS(4075), - [sym___double_quote] = ACTIONS(4075), - [sym___single_quote] = ACTIONS(4075), - [sym___c_double_quote] = ACTIONS(4075), - [sym___c_single_quote] = ACTIONS(4075), - [sym___r_double_quote] = ACTIONS(4075), - [sym___r_single_quote] = ACTIONS(4075), - }, - [1531] = { - [ts_builtin_sym_end] = ACTIONS(4077), - [sym_identifier] = ACTIONS(4079), - [anon_sym_LF] = ACTIONS(4079), - [anon_sym_CR] = ACTIONS(4079), - [anon_sym_CR_LF] = ACTIONS(4079), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4079), - [anon_sym_LBRACE] = ACTIONS(4079), - [anon_sym_const] = ACTIONS(4079), - [anon_sym_LPAREN] = ACTIONS(4079), - [anon_sym___global] = ACTIONS(4079), - [anon_sym_type] = ACTIONS(4079), - [anon_sym_fn] = ACTIONS(4079), - [anon_sym_PLUS] = ACTIONS(4079), - [anon_sym_DASH] = ACTIONS(4079), - [anon_sym_STAR] = ACTIONS(4079), - [anon_sym_struct] = ACTIONS(4079), - [anon_sym_union] = ACTIONS(4079), - [anon_sym_pub] = ACTIONS(4079), - [anon_sym_mut] = ACTIONS(4079), - [anon_sym_enum] = ACTIONS(4079), - [anon_sym_interface] = ACTIONS(4079), - [anon_sym_QMARK] = ACTIONS(4079), - [anon_sym_BANG] = ACTIONS(4079), - [anon_sym_go] = ACTIONS(4079), - [anon_sym_spawn] = ACTIONS(4079), - [anon_sym_json_DOTdecode] = ACTIONS(4079), - [anon_sym_LBRACK2] = ACTIONS(4079), - [anon_sym_TILDE] = ACTIONS(4079), - [anon_sym_CARET] = ACTIONS(4079), - [anon_sym_AMP] = ACTIONS(4079), - [anon_sym_LT_DASH] = ACTIONS(4079), - [sym_none] = ACTIONS(4079), - [sym_true] = ACTIONS(4079), - [sym_false] = ACTIONS(4079), - [sym_nil] = ACTIONS(4079), - [anon_sym_if] = ACTIONS(4079), - [anon_sym_DOLLARif] = ACTIONS(4079), - [anon_sym_match] = ACTIONS(4079), - [anon_sym_select] = ACTIONS(4079), - [anon_sym_lock] = ACTIONS(4079), - [anon_sym_rlock] = ACTIONS(4079), - [anon_sym_unsafe] = ACTIONS(4079), - [anon_sym_sql] = ACTIONS(4079), - [sym_int_literal] = ACTIONS(4079), - [sym_float_literal] = ACTIONS(4079), - [sym_rune_literal] = ACTIONS(4079), - [anon_sym_AT] = ACTIONS(4079), - [anon_sym_shared] = ACTIONS(4079), - [anon_sym_map_LBRACK] = ACTIONS(4079), - [anon_sym_chan] = ACTIONS(4079), - [anon_sym_thread] = ACTIONS(4079), - [anon_sym_atomic] = ACTIONS(4079), - [anon_sym_assert] = ACTIONS(4079), - [anon_sym_defer] = ACTIONS(4079), - [anon_sym_goto] = ACTIONS(4079), - [anon_sym_break] = ACTIONS(4079), - [anon_sym_continue] = ACTIONS(4079), - [anon_sym_return] = ACTIONS(4079), - [anon_sym_DOLLARfor] = ACTIONS(4079), - [anon_sym_for] = ACTIONS(4079), - [anon_sym_POUND] = ACTIONS(4079), - [anon_sym_asm] = ACTIONS(4079), - [anon_sym_AT_LBRACK] = ACTIONS(4079), - [sym___double_quote] = ACTIONS(4079), - [sym___single_quote] = ACTIONS(4079), - [sym___c_double_quote] = ACTIONS(4079), - [sym___c_single_quote] = ACTIONS(4079), - [sym___r_double_quote] = ACTIONS(4079), - [sym___r_single_quote] = ACTIONS(4079), - }, - [1532] = { - [ts_builtin_sym_end] = ACTIONS(4081), - [sym_identifier] = ACTIONS(4083), - [anon_sym_LF] = ACTIONS(4083), - [anon_sym_CR] = ACTIONS(4083), - [anon_sym_CR_LF] = ACTIONS(4083), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4083), - [anon_sym_LBRACE] = ACTIONS(4083), - [anon_sym_const] = ACTIONS(4083), - [anon_sym_LPAREN] = ACTIONS(4083), - [anon_sym___global] = ACTIONS(4083), - [anon_sym_type] = ACTIONS(4083), - [anon_sym_fn] = ACTIONS(4083), - [anon_sym_PLUS] = ACTIONS(4083), - [anon_sym_DASH] = ACTIONS(4083), - [anon_sym_STAR] = ACTIONS(4083), - [anon_sym_struct] = ACTIONS(4083), - [anon_sym_union] = ACTIONS(4083), - [anon_sym_pub] = ACTIONS(4083), - [anon_sym_mut] = ACTIONS(4083), - [anon_sym_enum] = ACTIONS(4083), - [anon_sym_interface] = ACTIONS(4083), - [anon_sym_QMARK] = ACTIONS(4083), - [anon_sym_BANG] = ACTIONS(4083), - [anon_sym_go] = ACTIONS(4083), - [anon_sym_spawn] = ACTIONS(4083), - [anon_sym_json_DOTdecode] = ACTIONS(4083), - [anon_sym_LBRACK2] = ACTIONS(4083), - [anon_sym_TILDE] = ACTIONS(4083), - [anon_sym_CARET] = ACTIONS(4083), - [anon_sym_AMP] = ACTIONS(4083), - [anon_sym_LT_DASH] = ACTIONS(4083), - [sym_none] = ACTIONS(4083), - [sym_true] = ACTIONS(4083), - [sym_false] = ACTIONS(4083), - [sym_nil] = ACTIONS(4083), - [anon_sym_if] = ACTIONS(4083), - [anon_sym_DOLLARif] = ACTIONS(4083), - [anon_sym_match] = ACTIONS(4083), - [anon_sym_select] = ACTIONS(4083), - [anon_sym_lock] = ACTIONS(4083), - [anon_sym_rlock] = ACTIONS(4083), - [anon_sym_unsafe] = ACTIONS(4083), - [anon_sym_sql] = ACTIONS(4083), - [sym_int_literal] = ACTIONS(4083), - [sym_float_literal] = ACTIONS(4083), - [sym_rune_literal] = ACTIONS(4083), - [anon_sym_AT] = ACTIONS(4083), - [anon_sym_shared] = ACTIONS(4083), - [anon_sym_map_LBRACK] = ACTIONS(4083), - [anon_sym_chan] = ACTIONS(4083), - [anon_sym_thread] = ACTIONS(4083), - [anon_sym_atomic] = ACTIONS(4083), - [anon_sym_assert] = ACTIONS(4083), - [anon_sym_defer] = ACTIONS(4083), - [anon_sym_goto] = ACTIONS(4083), - [anon_sym_break] = ACTIONS(4083), - [anon_sym_continue] = ACTIONS(4083), - [anon_sym_return] = ACTIONS(4083), - [anon_sym_DOLLARfor] = ACTIONS(4083), - [anon_sym_for] = ACTIONS(4083), - [anon_sym_POUND] = ACTIONS(4083), - [anon_sym_asm] = ACTIONS(4083), - [anon_sym_AT_LBRACK] = ACTIONS(4083), - [sym___double_quote] = ACTIONS(4083), - [sym___single_quote] = ACTIONS(4083), - [sym___c_double_quote] = ACTIONS(4083), - [sym___c_single_quote] = ACTIONS(4083), - [sym___r_double_quote] = ACTIONS(4083), - [sym___r_single_quote] = ACTIONS(4083), - }, - [1533] = { - [ts_builtin_sym_end] = ACTIONS(4085), - [sym_identifier] = ACTIONS(4087), - [anon_sym_LF] = ACTIONS(4087), - [anon_sym_CR] = ACTIONS(4087), - [anon_sym_CR_LF] = ACTIONS(4087), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4087), - [anon_sym_LBRACE] = ACTIONS(4087), - [anon_sym_const] = ACTIONS(4087), - [anon_sym_LPAREN] = ACTIONS(4087), - [anon_sym___global] = ACTIONS(4087), - [anon_sym_type] = ACTIONS(4087), - [anon_sym_fn] = ACTIONS(4087), - [anon_sym_PLUS] = ACTIONS(4087), - [anon_sym_DASH] = ACTIONS(4087), - [anon_sym_STAR] = ACTIONS(4087), - [anon_sym_struct] = ACTIONS(4087), - [anon_sym_union] = ACTIONS(4087), - [anon_sym_pub] = ACTIONS(4087), - [anon_sym_mut] = ACTIONS(4087), - [anon_sym_enum] = ACTIONS(4087), - [anon_sym_interface] = ACTIONS(4087), - [anon_sym_QMARK] = ACTIONS(4087), - [anon_sym_BANG] = ACTIONS(4087), - [anon_sym_go] = ACTIONS(4087), - [anon_sym_spawn] = ACTIONS(4087), - [anon_sym_json_DOTdecode] = ACTIONS(4087), - [anon_sym_LBRACK2] = ACTIONS(4087), - [anon_sym_TILDE] = ACTIONS(4087), - [anon_sym_CARET] = ACTIONS(4087), - [anon_sym_AMP] = ACTIONS(4087), - [anon_sym_LT_DASH] = ACTIONS(4087), - [sym_none] = ACTIONS(4087), - [sym_true] = ACTIONS(4087), - [sym_false] = ACTIONS(4087), - [sym_nil] = ACTIONS(4087), - [anon_sym_if] = ACTIONS(4087), - [anon_sym_DOLLARif] = ACTIONS(4087), - [anon_sym_match] = ACTIONS(4087), - [anon_sym_select] = ACTIONS(4087), - [anon_sym_lock] = ACTIONS(4087), - [anon_sym_rlock] = ACTIONS(4087), - [anon_sym_unsafe] = ACTIONS(4087), - [anon_sym_sql] = ACTIONS(4087), - [sym_int_literal] = ACTIONS(4087), - [sym_float_literal] = ACTIONS(4087), - [sym_rune_literal] = ACTIONS(4087), - [anon_sym_AT] = ACTIONS(4087), - [anon_sym_shared] = ACTIONS(4087), - [anon_sym_map_LBRACK] = ACTIONS(4087), - [anon_sym_chan] = ACTIONS(4087), - [anon_sym_thread] = ACTIONS(4087), - [anon_sym_atomic] = ACTIONS(4087), - [anon_sym_assert] = ACTIONS(4087), - [anon_sym_defer] = ACTIONS(4087), - [anon_sym_goto] = ACTIONS(4087), - [anon_sym_break] = ACTIONS(4087), - [anon_sym_continue] = ACTIONS(4087), - [anon_sym_return] = ACTIONS(4087), - [anon_sym_DOLLARfor] = ACTIONS(4087), - [anon_sym_for] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(4087), - [anon_sym_asm] = ACTIONS(4087), - [anon_sym_AT_LBRACK] = ACTIONS(4087), - [sym___double_quote] = ACTIONS(4087), - [sym___single_quote] = ACTIONS(4087), - [sym___c_double_quote] = ACTIONS(4087), - [sym___c_single_quote] = ACTIONS(4087), - [sym___r_double_quote] = ACTIONS(4087), - [sym___r_single_quote] = ACTIONS(4087), - }, - [1534] = { - [ts_builtin_sym_end] = ACTIONS(4089), - [sym_identifier] = ACTIONS(4091), - [anon_sym_LF] = ACTIONS(4091), - [anon_sym_CR] = ACTIONS(4091), - [anon_sym_CR_LF] = ACTIONS(4091), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4091), - [anon_sym_LBRACE] = ACTIONS(4091), - [anon_sym_const] = ACTIONS(4091), - [anon_sym_LPAREN] = ACTIONS(4091), - [anon_sym___global] = ACTIONS(4091), - [anon_sym_type] = ACTIONS(4091), - [anon_sym_fn] = ACTIONS(4091), - [anon_sym_PLUS] = ACTIONS(4091), - [anon_sym_DASH] = ACTIONS(4091), - [anon_sym_STAR] = ACTIONS(4091), - [anon_sym_struct] = ACTIONS(4091), - [anon_sym_union] = ACTIONS(4091), - [anon_sym_pub] = ACTIONS(4091), - [anon_sym_mut] = ACTIONS(4091), - [anon_sym_enum] = ACTIONS(4091), - [anon_sym_interface] = ACTIONS(4091), - [anon_sym_QMARK] = ACTIONS(4091), - [anon_sym_BANG] = ACTIONS(4091), - [anon_sym_go] = ACTIONS(4091), - [anon_sym_spawn] = ACTIONS(4091), - [anon_sym_json_DOTdecode] = ACTIONS(4091), - [anon_sym_LBRACK2] = ACTIONS(4091), - [anon_sym_TILDE] = ACTIONS(4091), - [anon_sym_CARET] = ACTIONS(4091), - [anon_sym_AMP] = ACTIONS(4091), - [anon_sym_LT_DASH] = ACTIONS(4091), - [sym_none] = ACTIONS(4091), - [sym_true] = ACTIONS(4091), - [sym_false] = ACTIONS(4091), - [sym_nil] = ACTIONS(4091), - [anon_sym_if] = ACTIONS(4091), - [anon_sym_DOLLARif] = ACTIONS(4091), - [anon_sym_match] = ACTIONS(4091), - [anon_sym_select] = ACTIONS(4091), - [anon_sym_lock] = ACTIONS(4091), - [anon_sym_rlock] = ACTIONS(4091), - [anon_sym_unsafe] = ACTIONS(4091), - [anon_sym_sql] = ACTIONS(4091), - [sym_int_literal] = ACTIONS(4091), - [sym_float_literal] = ACTIONS(4091), - [sym_rune_literal] = ACTIONS(4091), - [anon_sym_AT] = ACTIONS(4091), - [anon_sym_shared] = ACTIONS(4091), - [anon_sym_map_LBRACK] = ACTIONS(4091), - [anon_sym_chan] = ACTIONS(4091), - [anon_sym_thread] = ACTIONS(4091), - [anon_sym_atomic] = ACTIONS(4091), - [anon_sym_assert] = ACTIONS(4091), - [anon_sym_defer] = ACTIONS(4091), - [anon_sym_goto] = ACTIONS(4091), - [anon_sym_break] = ACTIONS(4091), - [anon_sym_continue] = ACTIONS(4091), - [anon_sym_return] = ACTIONS(4091), - [anon_sym_DOLLARfor] = ACTIONS(4091), - [anon_sym_for] = ACTIONS(4091), - [anon_sym_POUND] = ACTIONS(4091), - [anon_sym_asm] = ACTIONS(4091), - [anon_sym_AT_LBRACK] = ACTIONS(4091), - [sym___double_quote] = ACTIONS(4091), - [sym___single_quote] = ACTIONS(4091), - [sym___c_double_quote] = ACTIONS(4091), - [sym___c_single_quote] = ACTIONS(4091), - [sym___r_double_quote] = ACTIONS(4091), - [sym___r_single_quote] = ACTIONS(4091), - }, - [1535] = { - [ts_builtin_sym_end] = ACTIONS(4093), - [sym_identifier] = ACTIONS(4095), - [anon_sym_LF] = ACTIONS(4095), - [anon_sym_CR] = ACTIONS(4095), - [anon_sym_CR_LF] = ACTIONS(4095), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4095), - [anon_sym_LBRACE] = ACTIONS(4095), - [anon_sym_const] = ACTIONS(4095), - [anon_sym_LPAREN] = ACTIONS(4095), - [anon_sym___global] = ACTIONS(4095), - [anon_sym_type] = ACTIONS(4095), - [anon_sym_fn] = ACTIONS(4095), - [anon_sym_PLUS] = ACTIONS(4095), - [anon_sym_DASH] = ACTIONS(4095), - [anon_sym_STAR] = ACTIONS(4095), - [anon_sym_struct] = ACTIONS(4095), - [anon_sym_union] = ACTIONS(4095), - [anon_sym_pub] = ACTIONS(4095), - [anon_sym_mut] = ACTIONS(4095), - [anon_sym_enum] = ACTIONS(4095), - [anon_sym_interface] = ACTIONS(4095), - [anon_sym_QMARK] = ACTIONS(4095), - [anon_sym_BANG] = ACTIONS(4095), - [anon_sym_go] = ACTIONS(4095), - [anon_sym_spawn] = ACTIONS(4095), - [anon_sym_json_DOTdecode] = ACTIONS(4095), - [anon_sym_LBRACK2] = ACTIONS(4095), - [anon_sym_TILDE] = ACTIONS(4095), - [anon_sym_CARET] = ACTIONS(4095), - [anon_sym_AMP] = ACTIONS(4095), - [anon_sym_LT_DASH] = ACTIONS(4095), - [sym_none] = ACTIONS(4095), - [sym_true] = ACTIONS(4095), - [sym_false] = ACTIONS(4095), - [sym_nil] = ACTIONS(4095), - [anon_sym_if] = ACTIONS(4095), - [anon_sym_DOLLARif] = ACTIONS(4095), - [anon_sym_match] = ACTIONS(4095), - [anon_sym_select] = ACTIONS(4095), - [anon_sym_lock] = ACTIONS(4095), - [anon_sym_rlock] = ACTIONS(4095), - [anon_sym_unsafe] = ACTIONS(4095), - [anon_sym_sql] = ACTIONS(4095), - [sym_int_literal] = ACTIONS(4095), - [sym_float_literal] = ACTIONS(4095), - [sym_rune_literal] = ACTIONS(4095), - [anon_sym_AT] = ACTIONS(4095), - [anon_sym_shared] = ACTIONS(4095), - [anon_sym_map_LBRACK] = ACTIONS(4095), - [anon_sym_chan] = ACTIONS(4095), - [anon_sym_thread] = ACTIONS(4095), - [anon_sym_atomic] = ACTIONS(4095), - [anon_sym_assert] = ACTIONS(4095), - [anon_sym_defer] = ACTIONS(4095), - [anon_sym_goto] = ACTIONS(4095), - [anon_sym_break] = ACTIONS(4095), - [anon_sym_continue] = ACTIONS(4095), - [anon_sym_return] = ACTIONS(4095), - [anon_sym_DOLLARfor] = ACTIONS(4095), - [anon_sym_for] = ACTIONS(4095), - [anon_sym_POUND] = ACTIONS(4095), - [anon_sym_asm] = ACTIONS(4095), - [anon_sym_AT_LBRACK] = ACTIONS(4095), - [sym___double_quote] = ACTIONS(4095), - [sym___single_quote] = ACTIONS(4095), - [sym___c_double_quote] = ACTIONS(4095), - [sym___c_single_quote] = ACTIONS(4095), - [sym___r_double_quote] = ACTIONS(4095), - [sym___r_single_quote] = ACTIONS(4095), - }, - [1536] = { - [ts_builtin_sym_end] = ACTIONS(4097), - [sym_identifier] = ACTIONS(4099), - [anon_sym_LF] = ACTIONS(4099), - [anon_sym_CR] = ACTIONS(4099), - [anon_sym_CR_LF] = ACTIONS(4099), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4099), - [anon_sym_LBRACE] = ACTIONS(4099), - [anon_sym_const] = ACTIONS(4099), - [anon_sym_LPAREN] = ACTIONS(4099), - [anon_sym___global] = ACTIONS(4099), - [anon_sym_type] = ACTIONS(4099), - [anon_sym_fn] = ACTIONS(4099), - [anon_sym_PLUS] = ACTIONS(4099), - [anon_sym_DASH] = ACTIONS(4099), - [anon_sym_STAR] = ACTIONS(4099), - [anon_sym_struct] = ACTIONS(4099), - [anon_sym_union] = ACTIONS(4099), - [anon_sym_pub] = ACTIONS(4099), - [anon_sym_mut] = ACTIONS(4099), - [anon_sym_enum] = ACTIONS(4099), - [anon_sym_interface] = ACTIONS(4099), - [anon_sym_QMARK] = ACTIONS(4099), - [anon_sym_BANG] = ACTIONS(4099), - [anon_sym_go] = ACTIONS(4099), - [anon_sym_spawn] = ACTIONS(4099), - [anon_sym_json_DOTdecode] = ACTIONS(4099), - [anon_sym_LBRACK2] = ACTIONS(4099), - [anon_sym_TILDE] = ACTIONS(4099), - [anon_sym_CARET] = ACTIONS(4099), - [anon_sym_AMP] = ACTIONS(4099), - [anon_sym_LT_DASH] = ACTIONS(4099), - [sym_none] = ACTIONS(4099), - [sym_true] = ACTIONS(4099), - [sym_false] = ACTIONS(4099), - [sym_nil] = ACTIONS(4099), - [anon_sym_if] = ACTIONS(4099), - [anon_sym_DOLLARif] = ACTIONS(4099), - [anon_sym_match] = ACTIONS(4099), - [anon_sym_select] = ACTIONS(4099), - [anon_sym_lock] = ACTIONS(4099), - [anon_sym_rlock] = ACTIONS(4099), - [anon_sym_unsafe] = ACTIONS(4099), - [anon_sym_sql] = ACTIONS(4099), - [sym_int_literal] = ACTIONS(4099), - [sym_float_literal] = ACTIONS(4099), - [sym_rune_literal] = ACTIONS(4099), - [anon_sym_AT] = ACTIONS(4099), - [anon_sym_shared] = ACTIONS(4099), - [anon_sym_map_LBRACK] = ACTIONS(4099), - [anon_sym_chan] = ACTIONS(4099), - [anon_sym_thread] = ACTIONS(4099), - [anon_sym_atomic] = ACTIONS(4099), - [anon_sym_assert] = ACTIONS(4099), - [anon_sym_defer] = ACTIONS(4099), - [anon_sym_goto] = ACTIONS(4099), - [anon_sym_break] = ACTIONS(4099), - [anon_sym_continue] = ACTIONS(4099), - [anon_sym_return] = ACTIONS(4099), - [anon_sym_DOLLARfor] = ACTIONS(4099), - [anon_sym_for] = ACTIONS(4099), - [anon_sym_POUND] = ACTIONS(4099), - [anon_sym_asm] = ACTIONS(4099), - [anon_sym_AT_LBRACK] = ACTIONS(4099), - [sym___double_quote] = ACTIONS(4099), - [sym___single_quote] = ACTIONS(4099), - [sym___c_double_quote] = ACTIONS(4099), - [sym___c_single_quote] = ACTIONS(4099), - [sym___r_double_quote] = ACTIONS(4099), - [sym___r_single_quote] = ACTIONS(4099), - }, - [1537] = { - [ts_builtin_sym_end] = ACTIONS(4101), - [sym_identifier] = ACTIONS(4103), - [anon_sym_LF] = ACTIONS(4103), - [anon_sym_CR] = ACTIONS(4103), - [anon_sym_CR_LF] = ACTIONS(4103), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4103), - [anon_sym_LBRACE] = ACTIONS(4103), - [anon_sym_const] = ACTIONS(4103), - [anon_sym_LPAREN] = ACTIONS(4103), - [anon_sym___global] = ACTIONS(4103), - [anon_sym_type] = ACTIONS(4103), - [anon_sym_fn] = ACTIONS(4103), - [anon_sym_PLUS] = ACTIONS(4103), - [anon_sym_DASH] = ACTIONS(4103), - [anon_sym_STAR] = ACTIONS(4103), - [anon_sym_struct] = ACTIONS(4103), - [anon_sym_union] = ACTIONS(4103), - [anon_sym_pub] = ACTIONS(4103), - [anon_sym_mut] = ACTIONS(4103), - [anon_sym_enum] = ACTIONS(4103), - [anon_sym_interface] = ACTIONS(4103), - [anon_sym_QMARK] = ACTIONS(4103), - [anon_sym_BANG] = ACTIONS(4103), - [anon_sym_go] = ACTIONS(4103), - [anon_sym_spawn] = ACTIONS(4103), - [anon_sym_json_DOTdecode] = ACTIONS(4103), - [anon_sym_LBRACK2] = ACTIONS(4103), - [anon_sym_TILDE] = ACTIONS(4103), - [anon_sym_CARET] = ACTIONS(4103), - [anon_sym_AMP] = ACTIONS(4103), - [anon_sym_LT_DASH] = ACTIONS(4103), - [sym_none] = ACTIONS(4103), - [sym_true] = ACTIONS(4103), - [sym_false] = ACTIONS(4103), - [sym_nil] = ACTIONS(4103), - [anon_sym_if] = ACTIONS(4103), - [anon_sym_DOLLARif] = ACTIONS(4103), - [anon_sym_match] = ACTIONS(4103), - [anon_sym_select] = ACTIONS(4103), - [anon_sym_lock] = ACTIONS(4103), - [anon_sym_rlock] = ACTIONS(4103), - [anon_sym_unsafe] = ACTIONS(4103), - [anon_sym_sql] = ACTIONS(4103), - [sym_int_literal] = ACTIONS(4103), - [sym_float_literal] = ACTIONS(4103), - [sym_rune_literal] = ACTIONS(4103), - [anon_sym_AT] = ACTIONS(4103), - [anon_sym_shared] = ACTIONS(4103), - [anon_sym_map_LBRACK] = ACTIONS(4103), - [anon_sym_chan] = ACTIONS(4103), - [anon_sym_thread] = ACTIONS(4103), - [anon_sym_atomic] = ACTIONS(4103), - [anon_sym_assert] = ACTIONS(4103), - [anon_sym_defer] = ACTIONS(4103), - [anon_sym_goto] = ACTIONS(4103), - [anon_sym_break] = ACTIONS(4103), - [anon_sym_continue] = ACTIONS(4103), - [anon_sym_return] = ACTIONS(4103), - [anon_sym_DOLLARfor] = ACTIONS(4103), - [anon_sym_for] = ACTIONS(4103), - [anon_sym_POUND] = ACTIONS(4103), - [anon_sym_asm] = ACTIONS(4103), - [anon_sym_AT_LBRACK] = ACTIONS(4103), - [sym___double_quote] = ACTIONS(4103), - [sym___single_quote] = ACTIONS(4103), - [sym___c_double_quote] = ACTIONS(4103), - [sym___c_single_quote] = ACTIONS(4103), - [sym___r_double_quote] = ACTIONS(4103), - [sym___r_single_quote] = ACTIONS(4103), - }, - [1538] = { - [ts_builtin_sym_end] = ACTIONS(4105), - [sym_identifier] = ACTIONS(4107), - [anon_sym_LF] = ACTIONS(4107), - [anon_sym_CR] = ACTIONS(4107), - [anon_sym_CR_LF] = ACTIONS(4107), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4107), - [anon_sym_LBRACE] = ACTIONS(4107), - [anon_sym_const] = ACTIONS(4107), - [anon_sym_LPAREN] = ACTIONS(4107), - [anon_sym___global] = ACTIONS(4107), - [anon_sym_type] = ACTIONS(4107), - [anon_sym_fn] = ACTIONS(4107), - [anon_sym_PLUS] = ACTIONS(4107), - [anon_sym_DASH] = ACTIONS(4107), - [anon_sym_STAR] = ACTIONS(4107), - [anon_sym_struct] = ACTIONS(4107), - [anon_sym_union] = ACTIONS(4107), - [anon_sym_pub] = ACTIONS(4107), - [anon_sym_mut] = ACTIONS(4107), - [anon_sym_enum] = ACTIONS(4107), - [anon_sym_interface] = ACTIONS(4107), - [anon_sym_QMARK] = ACTIONS(4107), - [anon_sym_BANG] = ACTIONS(4107), - [anon_sym_go] = ACTIONS(4107), - [anon_sym_spawn] = ACTIONS(4107), - [anon_sym_json_DOTdecode] = ACTIONS(4107), - [anon_sym_LBRACK2] = ACTIONS(4107), - [anon_sym_TILDE] = ACTIONS(4107), - [anon_sym_CARET] = ACTIONS(4107), - [anon_sym_AMP] = ACTIONS(4107), - [anon_sym_LT_DASH] = ACTIONS(4107), - [sym_none] = ACTIONS(4107), - [sym_true] = ACTIONS(4107), - [sym_false] = ACTIONS(4107), - [sym_nil] = ACTIONS(4107), - [anon_sym_if] = ACTIONS(4107), - [anon_sym_DOLLARif] = ACTIONS(4107), - [anon_sym_match] = ACTIONS(4107), - [anon_sym_select] = ACTIONS(4107), - [anon_sym_lock] = ACTIONS(4107), - [anon_sym_rlock] = ACTIONS(4107), - [anon_sym_unsafe] = ACTIONS(4107), - [anon_sym_sql] = ACTIONS(4107), - [sym_int_literal] = ACTIONS(4107), - [sym_float_literal] = ACTIONS(4107), - [sym_rune_literal] = ACTIONS(4107), - [anon_sym_AT] = ACTIONS(4107), - [anon_sym_shared] = ACTIONS(4107), - [anon_sym_map_LBRACK] = ACTIONS(4107), - [anon_sym_chan] = ACTIONS(4107), - [anon_sym_thread] = ACTIONS(4107), - [anon_sym_atomic] = ACTIONS(4107), - [anon_sym_assert] = ACTIONS(4107), - [anon_sym_defer] = ACTIONS(4107), - [anon_sym_goto] = ACTIONS(4107), - [anon_sym_break] = ACTIONS(4107), - [anon_sym_continue] = ACTIONS(4107), - [anon_sym_return] = ACTIONS(4107), - [anon_sym_DOLLARfor] = ACTIONS(4107), - [anon_sym_for] = ACTIONS(4107), - [anon_sym_POUND] = ACTIONS(4107), - [anon_sym_asm] = ACTIONS(4107), - [anon_sym_AT_LBRACK] = ACTIONS(4107), - [sym___double_quote] = ACTIONS(4107), - [sym___single_quote] = ACTIONS(4107), - [sym___c_double_quote] = ACTIONS(4107), - [sym___c_single_quote] = ACTIONS(4107), - [sym___r_double_quote] = ACTIONS(4107), - [sym___r_single_quote] = ACTIONS(4107), - }, - [1539] = { - [ts_builtin_sym_end] = ACTIONS(4109), - [sym_identifier] = ACTIONS(4111), - [anon_sym_LF] = ACTIONS(4111), - [anon_sym_CR] = ACTIONS(4111), - [anon_sym_CR_LF] = ACTIONS(4111), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4111), - [anon_sym_LBRACE] = ACTIONS(4111), - [anon_sym_const] = ACTIONS(4111), - [anon_sym_LPAREN] = ACTIONS(4111), - [anon_sym___global] = ACTIONS(4111), - [anon_sym_type] = ACTIONS(4111), - [anon_sym_fn] = ACTIONS(4111), - [anon_sym_PLUS] = ACTIONS(4111), - [anon_sym_DASH] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(4111), - [anon_sym_struct] = ACTIONS(4111), - [anon_sym_union] = ACTIONS(4111), - [anon_sym_pub] = ACTIONS(4111), - [anon_sym_mut] = ACTIONS(4111), - [anon_sym_enum] = ACTIONS(4111), - [anon_sym_interface] = ACTIONS(4111), - [anon_sym_QMARK] = ACTIONS(4111), - [anon_sym_BANG] = ACTIONS(4111), - [anon_sym_go] = ACTIONS(4111), - [anon_sym_spawn] = ACTIONS(4111), - [anon_sym_json_DOTdecode] = ACTIONS(4111), - [anon_sym_LBRACK2] = ACTIONS(4111), - [anon_sym_TILDE] = ACTIONS(4111), - [anon_sym_CARET] = ACTIONS(4111), - [anon_sym_AMP] = ACTIONS(4111), - [anon_sym_LT_DASH] = ACTIONS(4111), - [sym_none] = ACTIONS(4111), - [sym_true] = ACTIONS(4111), - [sym_false] = ACTIONS(4111), - [sym_nil] = ACTIONS(4111), - [anon_sym_if] = ACTIONS(4111), - [anon_sym_DOLLARif] = ACTIONS(4111), - [anon_sym_match] = ACTIONS(4111), - [anon_sym_select] = ACTIONS(4111), - [anon_sym_lock] = ACTIONS(4111), - [anon_sym_rlock] = ACTIONS(4111), - [anon_sym_unsafe] = ACTIONS(4111), - [anon_sym_sql] = ACTIONS(4111), - [sym_int_literal] = ACTIONS(4111), - [sym_float_literal] = ACTIONS(4111), - [sym_rune_literal] = ACTIONS(4111), - [anon_sym_AT] = ACTIONS(4111), - [anon_sym_shared] = ACTIONS(4111), - [anon_sym_map_LBRACK] = ACTIONS(4111), - [anon_sym_chan] = ACTIONS(4111), - [anon_sym_thread] = ACTIONS(4111), - [anon_sym_atomic] = ACTIONS(4111), - [anon_sym_assert] = ACTIONS(4111), - [anon_sym_defer] = ACTIONS(4111), - [anon_sym_goto] = ACTIONS(4111), - [anon_sym_break] = ACTIONS(4111), - [anon_sym_continue] = ACTIONS(4111), - [anon_sym_return] = ACTIONS(4111), - [anon_sym_DOLLARfor] = ACTIONS(4111), - [anon_sym_for] = ACTIONS(4111), - [anon_sym_POUND] = ACTIONS(4111), - [anon_sym_asm] = ACTIONS(4111), - [anon_sym_AT_LBRACK] = ACTIONS(4111), - [sym___double_quote] = ACTIONS(4111), - [sym___single_quote] = ACTIONS(4111), - [sym___c_double_quote] = ACTIONS(4111), - [sym___c_single_quote] = ACTIONS(4111), - [sym___r_double_quote] = ACTIONS(4111), - [sym___r_single_quote] = ACTIONS(4111), - }, - [1540] = { - [ts_builtin_sym_end] = ACTIONS(4113), - [sym_identifier] = ACTIONS(4115), - [anon_sym_LF] = ACTIONS(4115), - [anon_sym_CR] = ACTIONS(4115), - [anon_sym_CR_LF] = ACTIONS(4115), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4115), - [anon_sym_const] = ACTIONS(4115), - [anon_sym_LPAREN] = ACTIONS(4115), - [anon_sym___global] = ACTIONS(4115), - [anon_sym_type] = ACTIONS(4115), - [anon_sym_fn] = ACTIONS(4115), - [anon_sym_PLUS] = ACTIONS(4115), - [anon_sym_DASH] = ACTIONS(4115), - [anon_sym_STAR] = ACTIONS(4115), - [anon_sym_struct] = ACTIONS(4115), - [anon_sym_union] = ACTIONS(4115), - [anon_sym_pub] = ACTIONS(4115), - [anon_sym_mut] = ACTIONS(4115), - [anon_sym_enum] = ACTIONS(4115), - [anon_sym_interface] = ACTIONS(4115), - [anon_sym_QMARK] = ACTIONS(4115), - [anon_sym_BANG] = ACTIONS(4115), - [anon_sym_go] = ACTIONS(4115), - [anon_sym_spawn] = ACTIONS(4115), - [anon_sym_json_DOTdecode] = ACTIONS(4115), - [anon_sym_LBRACK2] = ACTIONS(4115), - [anon_sym_TILDE] = ACTIONS(4115), - [anon_sym_CARET] = ACTIONS(4115), - [anon_sym_AMP] = ACTIONS(4115), - [anon_sym_LT_DASH] = ACTIONS(4115), - [sym_none] = ACTIONS(4115), - [sym_true] = ACTIONS(4115), - [sym_false] = ACTIONS(4115), - [sym_nil] = ACTIONS(4115), - [anon_sym_if] = ACTIONS(4115), - [anon_sym_DOLLARif] = ACTIONS(4115), - [anon_sym_match] = ACTIONS(4115), - [anon_sym_select] = ACTIONS(4115), - [anon_sym_lock] = ACTIONS(4115), - [anon_sym_rlock] = ACTIONS(4115), - [anon_sym_unsafe] = ACTIONS(4115), - [anon_sym_sql] = ACTIONS(4115), - [sym_int_literal] = ACTIONS(4115), - [sym_float_literal] = ACTIONS(4115), - [sym_rune_literal] = ACTIONS(4115), - [anon_sym_AT] = ACTIONS(4115), - [anon_sym_shared] = ACTIONS(4115), - [anon_sym_map_LBRACK] = ACTIONS(4115), - [anon_sym_chan] = ACTIONS(4115), - [anon_sym_thread] = ACTIONS(4115), - [anon_sym_atomic] = ACTIONS(4115), - [anon_sym_assert] = ACTIONS(4115), - [anon_sym_defer] = ACTIONS(4115), - [anon_sym_goto] = ACTIONS(4115), - [anon_sym_break] = ACTIONS(4115), - [anon_sym_continue] = ACTIONS(4115), - [anon_sym_return] = ACTIONS(4115), - [anon_sym_DOLLARfor] = ACTIONS(4115), - [anon_sym_for] = ACTIONS(4115), - [anon_sym_POUND] = ACTIONS(4115), - [anon_sym_asm] = ACTIONS(4115), - [anon_sym_AT_LBRACK] = ACTIONS(4115), - [sym___double_quote] = ACTIONS(4115), - [sym___single_quote] = ACTIONS(4115), - [sym___c_double_quote] = ACTIONS(4115), - [sym___c_single_quote] = ACTIONS(4115), - [sym___r_double_quote] = ACTIONS(4115), - [sym___r_single_quote] = ACTIONS(4115), - }, - [1541] = { - [ts_builtin_sym_end] = ACTIONS(4117), - [sym_identifier] = ACTIONS(4119), - [anon_sym_LF] = ACTIONS(4119), - [anon_sym_CR] = ACTIONS(4119), - [anon_sym_CR_LF] = ACTIONS(4119), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4119), - [anon_sym_LBRACE] = ACTIONS(4119), - [anon_sym_const] = ACTIONS(4119), - [anon_sym_LPAREN] = ACTIONS(4119), - [anon_sym___global] = ACTIONS(4119), - [anon_sym_type] = ACTIONS(4119), - [anon_sym_fn] = ACTIONS(4119), - [anon_sym_PLUS] = ACTIONS(4119), - [anon_sym_DASH] = ACTIONS(4119), - [anon_sym_STAR] = ACTIONS(4119), - [anon_sym_struct] = ACTIONS(4119), - [anon_sym_union] = ACTIONS(4119), - [anon_sym_pub] = ACTIONS(4119), - [anon_sym_mut] = ACTIONS(4119), - [anon_sym_enum] = ACTIONS(4119), - [anon_sym_interface] = ACTIONS(4119), - [anon_sym_QMARK] = ACTIONS(4119), - [anon_sym_BANG] = ACTIONS(4119), - [anon_sym_go] = ACTIONS(4119), - [anon_sym_spawn] = ACTIONS(4119), - [anon_sym_json_DOTdecode] = ACTIONS(4119), - [anon_sym_LBRACK2] = ACTIONS(4119), - [anon_sym_TILDE] = ACTIONS(4119), - [anon_sym_CARET] = ACTIONS(4119), - [anon_sym_AMP] = ACTIONS(4119), - [anon_sym_LT_DASH] = ACTIONS(4119), - [sym_none] = ACTIONS(4119), - [sym_true] = ACTIONS(4119), - [sym_false] = ACTIONS(4119), - [sym_nil] = ACTIONS(4119), - [anon_sym_if] = ACTIONS(4119), - [anon_sym_DOLLARif] = ACTIONS(4119), - [anon_sym_match] = ACTIONS(4119), - [anon_sym_select] = ACTIONS(4119), - [anon_sym_lock] = ACTIONS(4119), - [anon_sym_rlock] = ACTIONS(4119), - [anon_sym_unsafe] = ACTIONS(4119), - [anon_sym_sql] = ACTIONS(4119), - [sym_int_literal] = ACTIONS(4119), - [sym_float_literal] = ACTIONS(4119), - [sym_rune_literal] = ACTIONS(4119), - [anon_sym_AT] = ACTIONS(4119), - [anon_sym_shared] = ACTIONS(4119), - [anon_sym_map_LBRACK] = ACTIONS(4119), - [anon_sym_chan] = ACTIONS(4119), - [anon_sym_thread] = ACTIONS(4119), - [anon_sym_atomic] = ACTIONS(4119), - [anon_sym_assert] = ACTIONS(4119), - [anon_sym_defer] = ACTIONS(4119), - [anon_sym_goto] = ACTIONS(4119), - [anon_sym_break] = ACTIONS(4119), - [anon_sym_continue] = ACTIONS(4119), - [anon_sym_return] = ACTIONS(4119), - [anon_sym_DOLLARfor] = ACTIONS(4119), - [anon_sym_for] = ACTIONS(4119), - [anon_sym_POUND] = ACTIONS(4119), - [anon_sym_asm] = ACTIONS(4119), - [anon_sym_AT_LBRACK] = ACTIONS(4119), - [sym___double_quote] = ACTIONS(4119), - [sym___single_quote] = ACTIONS(4119), - [sym___c_double_quote] = ACTIONS(4119), - [sym___c_single_quote] = ACTIONS(4119), - [sym___r_double_quote] = ACTIONS(4119), - [sym___r_single_quote] = ACTIONS(4119), - }, - [1542] = { - [ts_builtin_sym_end] = ACTIONS(4121), - [sym_identifier] = ACTIONS(4123), - [anon_sym_LF] = ACTIONS(4123), - [anon_sym_CR] = ACTIONS(4123), - [anon_sym_CR_LF] = ACTIONS(4123), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4123), - [anon_sym_LBRACE] = ACTIONS(4123), - [anon_sym_const] = ACTIONS(4123), - [anon_sym_LPAREN] = ACTIONS(4123), - [anon_sym___global] = ACTIONS(4123), - [anon_sym_type] = ACTIONS(4123), - [anon_sym_fn] = ACTIONS(4123), - [anon_sym_PLUS] = ACTIONS(4123), - [anon_sym_DASH] = ACTIONS(4123), - [anon_sym_STAR] = ACTIONS(4123), - [anon_sym_struct] = ACTIONS(4123), - [anon_sym_union] = ACTIONS(4123), - [anon_sym_pub] = ACTIONS(4123), - [anon_sym_mut] = ACTIONS(4123), - [anon_sym_enum] = ACTIONS(4123), - [anon_sym_interface] = ACTIONS(4123), - [anon_sym_QMARK] = ACTIONS(4123), - [anon_sym_BANG] = ACTIONS(4123), - [anon_sym_go] = ACTIONS(4123), - [anon_sym_spawn] = ACTIONS(4123), - [anon_sym_json_DOTdecode] = ACTIONS(4123), - [anon_sym_LBRACK2] = ACTIONS(4123), - [anon_sym_TILDE] = ACTIONS(4123), - [anon_sym_CARET] = ACTIONS(4123), - [anon_sym_AMP] = ACTIONS(4123), - [anon_sym_LT_DASH] = ACTIONS(4123), - [sym_none] = ACTIONS(4123), - [sym_true] = ACTIONS(4123), - [sym_false] = ACTIONS(4123), - [sym_nil] = ACTIONS(4123), - [anon_sym_if] = ACTIONS(4123), - [anon_sym_DOLLARif] = ACTIONS(4123), - [anon_sym_match] = ACTIONS(4123), - [anon_sym_select] = ACTIONS(4123), - [anon_sym_lock] = ACTIONS(4123), - [anon_sym_rlock] = ACTIONS(4123), - [anon_sym_unsafe] = ACTIONS(4123), - [anon_sym_sql] = ACTIONS(4123), - [sym_int_literal] = ACTIONS(4123), - [sym_float_literal] = ACTIONS(4123), - [sym_rune_literal] = ACTIONS(4123), - [anon_sym_AT] = ACTIONS(4123), - [anon_sym_shared] = ACTIONS(4123), - [anon_sym_map_LBRACK] = ACTIONS(4123), - [anon_sym_chan] = ACTIONS(4123), - [anon_sym_thread] = ACTIONS(4123), - [anon_sym_atomic] = ACTIONS(4123), - [anon_sym_assert] = ACTIONS(4123), - [anon_sym_defer] = ACTIONS(4123), - [anon_sym_goto] = ACTIONS(4123), - [anon_sym_break] = ACTIONS(4123), - [anon_sym_continue] = ACTIONS(4123), - [anon_sym_return] = ACTIONS(4123), - [anon_sym_DOLLARfor] = ACTIONS(4123), - [anon_sym_for] = ACTIONS(4123), - [anon_sym_POUND] = ACTIONS(4123), - [anon_sym_asm] = ACTIONS(4123), - [anon_sym_AT_LBRACK] = ACTIONS(4123), - [sym___double_quote] = ACTIONS(4123), - [sym___single_quote] = ACTIONS(4123), - [sym___c_double_quote] = ACTIONS(4123), - [sym___c_single_quote] = ACTIONS(4123), - [sym___r_double_quote] = ACTIONS(4123), - [sym___r_single_quote] = ACTIONS(4123), - }, - [1543] = { - [ts_builtin_sym_end] = ACTIONS(4125), - [sym_identifier] = ACTIONS(4127), - [anon_sym_LF] = ACTIONS(4127), - [anon_sym_CR] = ACTIONS(4127), - [anon_sym_CR_LF] = ACTIONS(4127), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4127), - [anon_sym_LBRACE] = ACTIONS(4127), - [anon_sym_const] = ACTIONS(4127), - [anon_sym_LPAREN] = ACTIONS(4127), - [anon_sym___global] = ACTIONS(4127), - [anon_sym_type] = ACTIONS(4127), - [anon_sym_fn] = ACTIONS(4127), - [anon_sym_PLUS] = ACTIONS(4127), - [anon_sym_DASH] = ACTIONS(4127), - [anon_sym_STAR] = ACTIONS(4127), - [anon_sym_struct] = ACTIONS(4127), - [anon_sym_union] = ACTIONS(4127), - [anon_sym_pub] = ACTIONS(4127), - [anon_sym_mut] = ACTIONS(4127), - [anon_sym_enum] = ACTIONS(4127), - [anon_sym_interface] = ACTIONS(4127), - [anon_sym_QMARK] = ACTIONS(4127), - [anon_sym_BANG] = ACTIONS(4127), - [anon_sym_go] = ACTIONS(4127), - [anon_sym_spawn] = ACTIONS(4127), - [anon_sym_json_DOTdecode] = ACTIONS(4127), - [anon_sym_LBRACK2] = ACTIONS(4127), - [anon_sym_TILDE] = ACTIONS(4127), - [anon_sym_CARET] = ACTIONS(4127), - [anon_sym_AMP] = ACTIONS(4127), - [anon_sym_LT_DASH] = ACTIONS(4127), - [sym_none] = ACTIONS(4127), - [sym_true] = ACTIONS(4127), - [sym_false] = ACTIONS(4127), - [sym_nil] = ACTIONS(4127), - [anon_sym_if] = ACTIONS(4127), - [anon_sym_DOLLARif] = ACTIONS(4127), - [anon_sym_match] = ACTIONS(4127), - [anon_sym_select] = ACTIONS(4127), - [anon_sym_lock] = ACTIONS(4127), - [anon_sym_rlock] = ACTIONS(4127), - [anon_sym_unsafe] = ACTIONS(4127), - [anon_sym_sql] = ACTIONS(4127), - [sym_int_literal] = ACTIONS(4127), - [sym_float_literal] = ACTIONS(4127), - [sym_rune_literal] = ACTIONS(4127), - [anon_sym_AT] = ACTIONS(4127), - [anon_sym_shared] = ACTIONS(4127), - [anon_sym_map_LBRACK] = ACTIONS(4127), - [anon_sym_chan] = ACTIONS(4127), - [anon_sym_thread] = ACTIONS(4127), - [anon_sym_atomic] = ACTIONS(4127), - [anon_sym_assert] = ACTIONS(4127), - [anon_sym_defer] = ACTIONS(4127), - [anon_sym_goto] = ACTIONS(4127), - [anon_sym_break] = ACTIONS(4127), - [anon_sym_continue] = ACTIONS(4127), - [anon_sym_return] = ACTIONS(4127), - [anon_sym_DOLLARfor] = ACTIONS(4127), - [anon_sym_for] = ACTIONS(4127), - [anon_sym_POUND] = ACTIONS(4127), - [anon_sym_asm] = ACTIONS(4127), - [anon_sym_AT_LBRACK] = ACTIONS(4127), - [sym___double_quote] = ACTIONS(4127), - [sym___single_quote] = ACTIONS(4127), - [sym___c_double_quote] = ACTIONS(4127), - [sym___c_single_quote] = ACTIONS(4127), - [sym___r_double_quote] = ACTIONS(4127), - [sym___r_single_quote] = ACTIONS(4127), - }, - [1544] = { - [ts_builtin_sym_end] = ACTIONS(4129), - [sym_identifier] = ACTIONS(4131), - [anon_sym_LF] = ACTIONS(4131), - [anon_sym_CR] = ACTIONS(4131), - [anon_sym_CR_LF] = ACTIONS(4131), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4131), - [anon_sym_LBRACE] = ACTIONS(4131), - [anon_sym_const] = ACTIONS(4131), - [anon_sym_LPAREN] = ACTIONS(4131), - [anon_sym___global] = ACTIONS(4131), - [anon_sym_type] = ACTIONS(4131), - [anon_sym_fn] = ACTIONS(4131), - [anon_sym_PLUS] = ACTIONS(4131), - [anon_sym_DASH] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(4131), - [anon_sym_struct] = ACTIONS(4131), - [anon_sym_union] = ACTIONS(4131), - [anon_sym_pub] = ACTIONS(4131), - [anon_sym_mut] = ACTIONS(4131), - [anon_sym_enum] = ACTIONS(4131), - [anon_sym_interface] = ACTIONS(4131), - [anon_sym_QMARK] = ACTIONS(4131), - [anon_sym_BANG] = ACTIONS(4131), - [anon_sym_go] = ACTIONS(4131), - [anon_sym_spawn] = ACTIONS(4131), - [anon_sym_json_DOTdecode] = ACTIONS(4131), - [anon_sym_LBRACK2] = ACTIONS(4131), - [anon_sym_TILDE] = ACTIONS(4131), - [anon_sym_CARET] = ACTIONS(4131), - [anon_sym_AMP] = ACTIONS(4131), - [anon_sym_LT_DASH] = ACTIONS(4131), - [sym_none] = ACTIONS(4131), - [sym_true] = ACTIONS(4131), - [sym_false] = ACTIONS(4131), - [sym_nil] = ACTIONS(4131), - [anon_sym_if] = ACTIONS(4131), - [anon_sym_DOLLARif] = ACTIONS(4131), - [anon_sym_match] = ACTIONS(4131), - [anon_sym_select] = ACTIONS(4131), - [anon_sym_lock] = ACTIONS(4131), - [anon_sym_rlock] = ACTIONS(4131), - [anon_sym_unsafe] = ACTIONS(4131), - [anon_sym_sql] = ACTIONS(4131), - [sym_int_literal] = ACTIONS(4131), - [sym_float_literal] = ACTIONS(4131), - [sym_rune_literal] = ACTIONS(4131), - [anon_sym_AT] = ACTIONS(4131), - [anon_sym_shared] = ACTIONS(4131), - [anon_sym_map_LBRACK] = ACTIONS(4131), - [anon_sym_chan] = ACTIONS(4131), - [anon_sym_thread] = ACTIONS(4131), - [anon_sym_atomic] = ACTIONS(4131), - [anon_sym_assert] = ACTIONS(4131), - [anon_sym_defer] = ACTIONS(4131), - [anon_sym_goto] = ACTIONS(4131), - [anon_sym_break] = ACTIONS(4131), - [anon_sym_continue] = ACTIONS(4131), - [anon_sym_return] = ACTIONS(4131), - [anon_sym_DOLLARfor] = ACTIONS(4131), - [anon_sym_for] = ACTIONS(4131), - [anon_sym_POUND] = ACTIONS(4131), - [anon_sym_asm] = ACTIONS(4131), - [anon_sym_AT_LBRACK] = ACTIONS(4131), - [sym___double_quote] = ACTIONS(4131), - [sym___single_quote] = ACTIONS(4131), - [sym___c_double_quote] = ACTIONS(4131), - [sym___c_single_quote] = ACTIONS(4131), - [sym___r_double_quote] = ACTIONS(4131), - [sym___r_single_quote] = ACTIONS(4131), - }, - [1545] = { - [ts_builtin_sym_end] = ACTIONS(4133), - [sym_identifier] = ACTIONS(4135), - [anon_sym_LF] = ACTIONS(4135), - [anon_sym_CR] = ACTIONS(4135), - [anon_sym_CR_LF] = ACTIONS(4135), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4135), - [anon_sym_LBRACE] = ACTIONS(4135), - [anon_sym_const] = ACTIONS(4135), - [anon_sym_LPAREN] = ACTIONS(4135), - [anon_sym___global] = ACTIONS(4135), - [anon_sym_type] = ACTIONS(4135), - [anon_sym_fn] = ACTIONS(4135), - [anon_sym_PLUS] = ACTIONS(4135), - [anon_sym_DASH] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(4135), - [anon_sym_struct] = ACTIONS(4135), - [anon_sym_union] = ACTIONS(4135), - [anon_sym_pub] = ACTIONS(4135), - [anon_sym_mut] = ACTIONS(4135), - [anon_sym_enum] = ACTIONS(4135), - [anon_sym_interface] = ACTIONS(4135), - [anon_sym_QMARK] = ACTIONS(4135), - [anon_sym_BANG] = ACTIONS(4135), - [anon_sym_go] = ACTIONS(4135), - [anon_sym_spawn] = ACTIONS(4135), - [anon_sym_json_DOTdecode] = ACTIONS(4135), - [anon_sym_LBRACK2] = ACTIONS(4135), - [anon_sym_TILDE] = ACTIONS(4135), - [anon_sym_CARET] = ACTIONS(4135), - [anon_sym_AMP] = ACTIONS(4135), - [anon_sym_LT_DASH] = ACTIONS(4135), - [sym_none] = ACTIONS(4135), - [sym_true] = ACTIONS(4135), - [sym_false] = ACTIONS(4135), - [sym_nil] = ACTIONS(4135), - [anon_sym_if] = ACTIONS(4135), - [anon_sym_DOLLARif] = ACTIONS(4135), - [anon_sym_match] = ACTIONS(4135), - [anon_sym_select] = ACTIONS(4135), - [anon_sym_lock] = ACTIONS(4135), - [anon_sym_rlock] = ACTIONS(4135), - [anon_sym_unsafe] = ACTIONS(4135), - [anon_sym_sql] = ACTIONS(4135), - [sym_int_literal] = ACTIONS(4135), - [sym_float_literal] = ACTIONS(4135), - [sym_rune_literal] = ACTIONS(4135), - [anon_sym_AT] = ACTIONS(4135), - [anon_sym_shared] = ACTIONS(4135), - [anon_sym_map_LBRACK] = ACTIONS(4135), - [anon_sym_chan] = ACTIONS(4135), - [anon_sym_thread] = ACTIONS(4135), - [anon_sym_atomic] = ACTIONS(4135), - [anon_sym_assert] = ACTIONS(4135), - [anon_sym_defer] = ACTIONS(4135), - [anon_sym_goto] = ACTIONS(4135), - [anon_sym_break] = ACTIONS(4135), - [anon_sym_continue] = ACTIONS(4135), - [anon_sym_return] = ACTIONS(4135), - [anon_sym_DOLLARfor] = ACTIONS(4135), - [anon_sym_for] = ACTIONS(4135), - [anon_sym_POUND] = ACTIONS(4135), - [anon_sym_asm] = ACTIONS(4135), - [anon_sym_AT_LBRACK] = ACTIONS(4135), - [sym___double_quote] = ACTIONS(4135), - [sym___single_quote] = ACTIONS(4135), - [sym___c_double_quote] = ACTIONS(4135), - [sym___c_single_quote] = ACTIONS(4135), - [sym___r_double_quote] = ACTIONS(4135), - [sym___r_single_quote] = ACTIONS(4135), - }, - [1546] = { - [ts_builtin_sym_end] = ACTIONS(4137), - [sym_identifier] = ACTIONS(4139), - [anon_sym_LF] = ACTIONS(4139), - [anon_sym_CR] = ACTIONS(4139), - [anon_sym_CR_LF] = ACTIONS(4139), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4139), - [anon_sym_LBRACE] = ACTIONS(4139), - [anon_sym_const] = ACTIONS(4139), - [anon_sym_LPAREN] = ACTIONS(4139), - [anon_sym___global] = ACTIONS(4139), - [anon_sym_type] = ACTIONS(4139), - [anon_sym_fn] = ACTIONS(4139), - [anon_sym_PLUS] = ACTIONS(4139), - [anon_sym_DASH] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(4139), - [anon_sym_struct] = ACTIONS(4139), - [anon_sym_union] = ACTIONS(4139), - [anon_sym_pub] = ACTIONS(4139), - [anon_sym_mut] = ACTIONS(4139), - [anon_sym_enum] = ACTIONS(4139), - [anon_sym_interface] = ACTIONS(4139), - [anon_sym_QMARK] = ACTIONS(4139), - [anon_sym_BANG] = ACTIONS(4139), - [anon_sym_go] = ACTIONS(4139), - [anon_sym_spawn] = ACTIONS(4139), - [anon_sym_json_DOTdecode] = ACTIONS(4139), - [anon_sym_LBRACK2] = ACTIONS(4139), - [anon_sym_TILDE] = ACTIONS(4139), - [anon_sym_CARET] = ACTIONS(4139), - [anon_sym_AMP] = ACTIONS(4139), - [anon_sym_LT_DASH] = ACTIONS(4139), - [sym_none] = ACTIONS(4139), - [sym_true] = ACTIONS(4139), - [sym_false] = ACTIONS(4139), - [sym_nil] = ACTIONS(4139), - [anon_sym_if] = ACTIONS(4139), - [anon_sym_DOLLARif] = ACTIONS(4139), - [anon_sym_match] = ACTIONS(4139), - [anon_sym_select] = ACTIONS(4139), - [anon_sym_lock] = ACTIONS(4139), - [anon_sym_rlock] = ACTIONS(4139), - [anon_sym_unsafe] = ACTIONS(4139), - [anon_sym_sql] = ACTIONS(4139), - [sym_int_literal] = ACTIONS(4139), - [sym_float_literal] = ACTIONS(4139), - [sym_rune_literal] = ACTIONS(4139), - [anon_sym_AT] = ACTIONS(4139), - [anon_sym_shared] = ACTIONS(4139), - [anon_sym_map_LBRACK] = ACTIONS(4139), - [anon_sym_chan] = ACTIONS(4139), - [anon_sym_thread] = ACTIONS(4139), - [anon_sym_atomic] = ACTIONS(4139), - [anon_sym_assert] = ACTIONS(4139), - [anon_sym_defer] = ACTIONS(4139), - [anon_sym_goto] = ACTIONS(4139), - [anon_sym_break] = ACTIONS(4139), - [anon_sym_continue] = ACTIONS(4139), - [anon_sym_return] = ACTIONS(4139), - [anon_sym_DOLLARfor] = ACTIONS(4139), - [anon_sym_for] = ACTIONS(4139), - [anon_sym_POUND] = ACTIONS(4139), - [anon_sym_asm] = ACTIONS(4139), - [anon_sym_AT_LBRACK] = ACTIONS(4139), - [sym___double_quote] = ACTIONS(4139), - [sym___single_quote] = ACTIONS(4139), - [sym___c_double_quote] = ACTIONS(4139), - [sym___c_single_quote] = ACTIONS(4139), - [sym___r_double_quote] = ACTIONS(4139), - [sym___r_single_quote] = ACTIONS(4139), - }, - [1547] = { - [ts_builtin_sym_end] = ACTIONS(4141), - [sym_identifier] = ACTIONS(4143), - [anon_sym_LF] = ACTIONS(4143), - [anon_sym_CR] = ACTIONS(4143), - [anon_sym_CR_LF] = ACTIONS(4143), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4143), - [anon_sym_LBRACE] = ACTIONS(4143), - [anon_sym_const] = ACTIONS(4143), - [anon_sym_LPAREN] = ACTIONS(4143), - [anon_sym___global] = ACTIONS(4143), - [anon_sym_type] = ACTIONS(4143), - [anon_sym_fn] = ACTIONS(4143), - [anon_sym_PLUS] = ACTIONS(4143), - [anon_sym_DASH] = ACTIONS(4143), - [anon_sym_STAR] = ACTIONS(4143), - [anon_sym_struct] = ACTIONS(4143), - [anon_sym_union] = ACTIONS(4143), - [anon_sym_pub] = ACTIONS(4143), - [anon_sym_mut] = ACTIONS(4143), - [anon_sym_enum] = ACTIONS(4143), - [anon_sym_interface] = ACTIONS(4143), - [anon_sym_QMARK] = ACTIONS(4143), - [anon_sym_BANG] = ACTIONS(4143), - [anon_sym_go] = ACTIONS(4143), - [anon_sym_spawn] = ACTIONS(4143), - [anon_sym_json_DOTdecode] = ACTIONS(4143), - [anon_sym_LBRACK2] = ACTIONS(4143), - [anon_sym_TILDE] = ACTIONS(4143), - [anon_sym_CARET] = ACTIONS(4143), - [anon_sym_AMP] = ACTIONS(4143), - [anon_sym_LT_DASH] = ACTIONS(4143), - [sym_none] = ACTIONS(4143), - [sym_true] = ACTIONS(4143), - [sym_false] = ACTIONS(4143), - [sym_nil] = ACTIONS(4143), - [anon_sym_if] = ACTIONS(4143), - [anon_sym_DOLLARif] = ACTIONS(4143), - [anon_sym_match] = ACTIONS(4143), - [anon_sym_select] = ACTIONS(4143), - [anon_sym_lock] = ACTIONS(4143), - [anon_sym_rlock] = ACTIONS(4143), - [anon_sym_unsafe] = ACTIONS(4143), - [anon_sym_sql] = ACTIONS(4143), - [sym_int_literal] = ACTIONS(4143), - [sym_float_literal] = ACTIONS(4143), - [sym_rune_literal] = ACTIONS(4143), - [anon_sym_AT] = ACTIONS(4143), - [anon_sym_shared] = ACTIONS(4143), - [anon_sym_map_LBRACK] = ACTIONS(4143), - [anon_sym_chan] = ACTIONS(4143), - [anon_sym_thread] = ACTIONS(4143), - [anon_sym_atomic] = ACTIONS(4143), - [anon_sym_assert] = ACTIONS(4143), - [anon_sym_defer] = ACTIONS(4143), - [anon_sym_goto] = ACTIONS(4143), - [anon_sym_break] = ACTIONS(4143), - [anon_sym_continue] = ACTIONS(4143), - [anon_sym_return] = ACTIONS(4143), - [anon_sym_DOLLARfor] = ACTIONS(4143), - [anon_sym_for] = ACTIONS(4143), - [anon_sym_POUND] = ACTIONS(4143), - [anon_sym_asm] = ACTIONS(4143), - [anon_sym_AT_LBRACK] = ACTIONS(4143), - [sym___double_quote] = ACTIONS(4143), - [sym___single_quote] = ACTIONS(4143), - [sym___c_double_quote] = ACTIONS(4143), - [sym___c_single_quote] = ACTIONS(4143), - [sym___r_double_quote] = ACTIONS(4143), - [sym___r_single_quote] = ACTIONS(4143), - }, - [1548] = { - [ts_builtin_sym_end] = ACTIONS(4145), - [sym_identifier] = ACTIONS(4147), - [anon_sym_LF] = ACTIONS(4147), - [anon_sym_CR] = ACTIONS(4147), - [anon_sym_CR_LF] = ACTIONS(4147), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4147), - [anon_sym_LBRACE] = ACTIONS(4147), - [anon_sym_const] = ACTIONS(4147), - [anon_sym_LPAREN] = ACTIONS(4147), - [anon_sym___global] = ACTIONS(4147), - [anon_sym_type] = ACTIONS(4147), - [anon_sym_fn] = ACTIONS(4147), - [anon_sym_PLUS] = ACTIONS(4147), - [anon_sym_DASH] = ACTIONS(4147), - [anon_sym_STAR] = ACTIONS(4147), - [anon_sym_struct] = ACTIONS(4147), - [anon_sym_union] = ACTIONS(4147), - [anon_sym_pub] = ACTIONS(4147), - [anon_sym_mut] = ACTIONS(4147), - [anon_sym_enum] = ACTIONS(4147), - [anon_sym_interface] = ACTIONS(4147), - [anon_sym_QMARK] = ACTIONS(4147), - [anon_sym_BANG] = ACTIONS(4147), - [anon_sym_go] = ACTIONS(4147), - [anon_sym_spawn] = ACTIONS(4147), - [anon_sym_json_DOTdecode] = ACTIONS(4147), - [anon_sym_LBRACK2] = ACTIONS(4147), - [anon_sym_TILDE] = ACTIONS(4147), - [anon_sym_CARET] = ACTIONS(4147), - [anon_sym_AMP] = ACTIONS(4147), - [anon_sym_LT_DASH] = ACTIONS(4147), - [sym_none] = ACTIONS(4147), - [sym_true] = ACTIONS(4147), - [sym_false] = ACTIONS(4147), - [sym_nil] = ACTIONS(4147), - [anon_sym_if] = ACTIONS(4147), - [anon_sym_DOLLARif] = ACTIONS(4147), - [anon_sym_match] = ACTIONS(4147), - [anon_sym_select] = ACTIONS(4147), - [anon_sym_lock] = ACTIONS(4147), - [anon_sym_rlock] = ACTIONS(4147), - [anon_sym_unsafe] = ACTIONS(4147), - [anon_sym_sql] = ACTIONS(4147), - [sym_int_literal] = ACTIONS(4147), - [sym_float_literal] = ACTIONS(4147), - [sym_rune_literal] = ACTIONS(4147), - [anon_sym_AT] = ACTIONS(4147), - [anon_sym_shared] = ACTIONS(4147), - [anon_sym_map_LBRACK] = ACTIONS(4147), - [anon_sym_chan] = ACTIONS(4147), - [anon_sym_thread] = ACTIONS(4147), - [anon_sym_atomic] = ACTIONS(4147), - [anon_sym_assert] = ACTIONS(4147), - [anon_sym_defer] = ACTIONS(4147), - [anon_sym_goto] = ACTIONS(4147), - [anon_sym_break] = ACTIONS(4147), - [anon_sym_continue] = ACTIONS(4147), - [anon_sym_return] = ACTIONS(4147), - [anon_sym_DOLLARfor] = ACTIONS(4147), - [anon_sym_for] = ACTIONS(4147), - [anon_sym_POUND] = ACTIONS(4147), - [anon_sym_asm] = ACTIONS(4147), - [anon_sym_AT_LBRACK] = ACTIONS(4147), - [sym___double_quote] = ACTIONS(4147), - [sym___single_quote] = ACTIONS(4147), - [sym___c_double_quote] = ACTIONS(4147), - [sym___c_single_quote] = ACTIONS(4147), - [sym___r_double_quote] = ACTIONS(4147), - [sym___r_single_quote] = ACTIONS(4147), - }, - [1549] = { - [ts_builtin_sym_end] = ACTIONS(4149), - [sym_identifier] = ACTIONS(4151), - [anon_sym_LF] = ACTIONS(4151), - [anon_sym_CR] = ACTIONS(4151), - [anon_sym_CR_LF] = ACTIONS(4151), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4151), - [anon_sym_LBRACE] = ACTIONS(4151), - [anon_sym_const] = ACTIONS(4151), - [anon_sym_LPAREN] = ACTIONS(4151), - [anon_sym___global] = ACTIONS(4151), - [anon_sym_type] = ACTIONS(4151), - [anon_sym_fn] = ACTIONS(4151), - [anon_sym_PLUS] = ACTIONS(4151), - [anon_sym_DASH] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(4151), - [anon_sym_struct] = ACTIONS(4151), - [anon_sym_union] = ACTIONS(4151), - [anon_sym_pub] = ACTIONS(4151), - [anon_sym_mut] = ACTIONS(4151), - [anon_sym_enum] = ACTIONS(4151), - [anon_sym_interface] = ACTIONS(4151), - [anon_sym_QMARK] = ACTIONS(4151), - [anon_sym_BANG] = ACTIONS(4151), - [anon_sym_go] = ACTIONS(4151), - [anon_sym_spawn] = ACTIONS(4151), - [anon_sym_json_DOTdecode] = ACTIONS(4151), - [anon_sym_LBRACK2] = ACTIONS(4151), - [anon_sym_TILDE] = ACTIONS(4151), - [anon_sym_CARET] = ACTIONS(4151), - [anon_sym_AMP] = ACTIONS(4151), - [anon_sym_LT_DASH] = ACTIONS(4151), - [sym_none] = ACTIONS(4151), - [sym_true] = ACTIONS(4151), - [sym_false] = ACTIONS(4151), - [sym_nil] = ACTIONS(4151), - [anon_sym_if] = ACTIONS(4151), - [anon_sym_DOLLARif] = ACTIONS(4151), - [anon_sym_match] = ACTIONS(4151), - [anon_sym_select] = ACTIONS(4151), - [anon_sym_lock] = ACTIONS(4151), - [anon_sym_rlock] = ACTIONS(4151), - [anon_sym_unsafe] = ACTIONS(4151), - [anon_sym_sql] = ACTIONS(4151), - [sym_int_literal] = ACTIONS(4151), - [sym_float_literal] = ACTIONS(4151), - [sym_rune_literal] = ACTIONS(4151), - [anon_sym_AT] = ACTIONS(4151), - [anon_sym_shared] = ACTIONS(4151), - [anon_sym_map_LBRACK] = ACTIONS(4151), - [anon_sym_chan] = ACTIONS(4151), - [anon_sym_thread] = ACTIONS(4151), - [anon_sym_atomic] = ACTIONS(4151), - [anon_sym_assert] = ACTIONS(4151), - [anon_sym_defer] = ACTIONS(4151), - [anon_sym_goto] = ACTIONS(4151), - [anon_sym_break] = ACTIONS(4151), - [anon_sym_continue] = ACTIONS(4151), - [anon_sym_return] = ACTIONS(4151), - [anon_sym_DOLLARfor] = ACTIONS(4151), - [anon_sym_for] = ACTIONS(4151), - [anon_sym_POUND] = ACTIONS(4151), - [anon_sym_asm] = ACTIONS(4151), - [anon_sym_AT_LBRACK] = ACTIONS(4151), - [sym___double_quote] = ACTIONS(4151), - [sym___single_quote] = ACTIONS(4151), - [sym___c_double_quote] = ACTIONS(4151), - [sym___c_single_quote] = ACTIONS(4151), - [sym___r_double_quote] = ACTIONS(4151), - [sym___r_single_quote] = ACTIONS(4151), - }, - [1550] = { - [ts_builtin_sym_end] = ACTIONS(4153), - [sym_identifier] = ACTIONS(4155), - [anon_sym_LF] = ACTIONS(4155), - [anon_sym_CR] = ACTIONS(4155), - [anon_sym_CR_LF] = ACTIONS(4155), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4155), - [anon_sym_LBRACE] = ACTIONS(4155), - [anon_sym_const] = ACTIONS(4155), - [anon_sym_LPAREN] = ACTIONS(4155), - [anon_sym___global] = ACTIONS(4155), - [anon_sym_type] = ACTIONS(4155), - [anon_sym_fn] = ACTIONS(4155), - [anon_sym_PLUS] = ACTIONS(4155), - [anon_sym_DASH] = ACTIONS(4155), - [anon_sym_STAR] = ACTIONS(4155), - [anon_sym_struct] = ACTIONS(4155), - [anon_sym_union] = ACTIONS(4155), - [anon_sym_pub] = ACTIONS(4155), - [anon_sym_mut] = ACTIONS(4155), - [anon_sym_enum] = ACTIONS(4155), - [anon_sym_interface] = ACTIONS(4155), - [anon_sym_QMARK] = ACTIONS(4155), - [anon_sym_BANG] = ACTIONS(4155), - [anon_sym_go] = ACTIONS(4155), - [anon_sym_spawn] = ACTIONS(4155), - [anon_sym_json_DOTdecode] = ACTIONS(4155), - [anon_sym_LBRACK2] = ACTIONS(4155), - [anon_sym_TILDE] = ACTIONS(4155), - [anon_sym_CARET] = ACTIONS(4155), - [anon_sym_AMP] = ACTIONS(4155), - [anon_sym_LT_DASH] = ACTIONS(4155), - [sym_none] = ACTIONS(4155), - [sym_true] = ACTIONS(4155), - [sym_false] = ACTIONS(4155), - [sym_nil] = ACTIONS(4155), - [anon_sym_if] = ACTIONS(4155), - [anon_sym_DOLLARif] = ACTIONS(4155), - [anon_sym_match] = ACTIONS(4155), - [anon_sym_select] = ACTIONS(4155), - [anon_sym_lock] = ACTIONS(4155), - [anon_sym_rlock] = ACTIONS(4155), - [anon_sym_unsafe] = ACTIONS(4155), - [anon_sym_sql] = ACTIONS(4155), - [sym_int_literal] = ACTIONS(4155), - [sym_float_literal] = ACTIONS(4155), - [sym_rune_literal] = ACTIONS(4155), - [anon_sym_AT] = ACTIONS(4155), - [anon_sym_shared] = ACTIONS(4155), - [anon_sym_map_LBRACK] = ACTIONS(4155), - [anon_sym_chan] = ACTIONS(4155), - [anon_sym_thread] = ACTIONS(4155), - [anon_sym_atomic] = ACTIONS(4155), - [anon_sym_assert] = ACTIONS(4155), - [anon_sym_defer] = ACTIONS(4155), - [anon_sym_goto] = ACTIONS(4155), - [anon_sym_break] = ACTIONS(4155), - [anon_sym_continue] = ACTIONS(4155), - [anon_sym_return] = ACTIONS(4155), - [anon_sym_DOLLARfor] = ACTIONS(4155), - [anon_sym_for] = ACTIONS(4155), - [anon_sym_POUND] = ACTIONS(4155), - [anon_sym_asm] = ACTIONS(4155), - [anon_sym_AT_LBRACK] = ACTIONS(4155), - [sym___double_quote] = ACTIONS(4155), - [sym___single_quote] = ACTIONS(4155), - [sym___c_double_quote] = ACTIONS(4155), - [sym___c_single_quote] = ACTIONS(4155), - [sym___r_double_quote] = ACTIONS(4155), - [sym___r_single_quote] = ACTIONS(4155), - }, - [1551] = { - [ts_builtin_sym_end] = ACTIONS(4157), - [sym_identifier] = ACTIONS(4159), - [anon_sym_LF] = ACTIONS(4159), - [anon_sym_CR] = ACTIONS(4159), - [anon_sym_CR_LF] = ACTIONS(4159), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4159), - [anon_sym_LBRACE] = ACTIONS(4159), - [anon_sym_const] = ACTIONS(4159), - [anon_sym_LPAREN] = ACTIONS(4159), - [anon_sym___global] = ACTIONS(4159), - [anon_sym_type] = ACTIONS(4159), - [anon_sym_fn] = ACTIONS(4159), - [anon_sym_PLUS] = ACTIONS(4159), - [anon_sym_DASH] = ACTIONS(4159), - [anon_sym_STAR] = ACTIONS(4159), - [anon_sym_struct] = ACTIONS(4159), - [anon_sym_union] = ACTIONS(4159), - [anon_sym_pub] = ACTIONS(4159), - [anon_sym_mut] = ACTIONS(4159), - [anon_sym_enum] = ACTIONS(4159), - [anon_sym_interface] = ACTIONS(4159), - [anon_sym_QMARK] = ACTIONS(4159), - [anon_sym_BANG] = ACTIONS(4159), - [anon_sym_go] = ACTIONS(4159), - [anon_sym_spawn] = ACTIONS(4159), - [anon_sym_json_DOTdecode] = ACTIONS(4159), - [anon_sym_LBRACK2] = ACTIONS(4159), - [anon_sym_TILDE] = ACTIONS(4159), - [anon_sym_CARET] = ACTIONS(4159), - [anon_sym_AMP] = ACTIONS(4159), - [anon_sym_LT_DASH] = ACTIONS(4159), - [sym_none] = ACTIONS(4159), - [sym_true] = ACTIONS(4159), - [sym_false] = ACTIONS(4159), - [sym_nil] = ACTIONS(4159), - [anon_sym_if] = ACTIONS(4159), - [anon_sym_DOLLARif] = ACTIONS(4159), - [anon_sym_match] = ACTIONS(4159), - [anon_sym_select] = ACTIONS(4159), - [anon_sym_lock] = ACTIONS(4159), - [anon_sym_rlock] = ACTIONS(4159), - [anon_sym_unsafe] = ACTIONS(4159), - [anon_sym_sql] = ACTIONS(4159), - [sym_int_literal] = ACTIONS(4159), - [sym_float_literal] = ACTIONS(4159), - [sym_rune_literal] = ACTIONS(4159), - [anon_sym_AT] = ACTIONS(4159), - [anon_sym_shared] = ACTIONS(4159), - [anon_sym_map_LBRACK] = ACTIONS(4159), - [anon_sym_chan] = ACTIONS(4159), - [anon_sym_thread] = ACTIONS(4159), - [anon_sym_atomic] = ACTIONS(4159), - [anon_sym_assert] = ACTIONS(4159), - [anon_sym_defer] = ACTIONS(4159), - [anon_sym_goto] = ACTIONS(4159), - [anon_sym_break] = ACTIONS(4159), - [anon_sym_continue] = ACTIONS(4159), - [anon_sym_return] = ACTIONS(4159), - [anon_sym_DOLLARfor] = ACTIONS(4159), - [anon_sym_for] = ACTIONS(4159), - [anon_sym_POUND] = ACTIONS(4159), - [anon_sym_asm] = ACTIONS(4159), - [anon_sym_AT_LBRACK] = ACTIONS(4159), - [sym___double_quote] = ACTIONS(4159), - [sym___single_quote] = ACTIONS(4159), - [sym___c_double_quote] = ACTIONS(4159), - [sym___c_single_quote] = ACTIONS(4159), - [sym___r_double_quote] = ACTIONS(4159), - [sym___r_single_quote] = ACTIONS(4159), - }, - [1552] = { - [ts_builtin_sym_end] = ACTIONS(4161), - [sym_identifier] = ACTIONS(4163), - [anon_sym_LF] = ACTIONS(4163), - [anon_sym_CR] = ACTIONS(4163), - [anon_sym_CR_LF] = ACTIONS(4163), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4163), - [anon_sym_LBRACE] = ACTIONS(4163), - [anon_sym_const] = ACTIONS(4163), - [anon_sym_LPAREN] = ACTIONS(4163), - [anon_sym___global] = ACTIONS(4163), - [anon_sym_type] = ACTIONS(4163), - [anon_sym_fn] = ACTIONS(4163), - [anon_sym_PLUS] = ACTIONS(4163), - [anon_sym_DASH] = ACTIONS(4163), - [anon_sym_STAR] = ACTIONS(4163), - [anon_sym_struct] = ACTIONS(4163), - [anon_sym_union] = ACTIONS(4163), - [anon_sym_pub] = ACTIONS(4163), - [anon_sym_mut] = ACTIONS(4163), - [anon_sym_enum] = ACTIONS(4163), - [anon_sym_interface] = ACTIONS(4163), - [anon_sym_QMARK] = ACTIONS(4163), - [anon_sym_BANG] = ACTIONS(4163), - [anon_sym_go] = ACTIONS(4163), - [anon_sym_spawn] = ACTIONS(4163), - [anon_sym_json_DOTdecode] = ACTIONS(4163), - [anon_sym_LBRACK2] = ACTIONS(4163), - [anon_sym_TILDE] = ACTIONS(4163), - [anon_sym_CARET] = ACTIONS(4163), - [anon_sym_AMP] = ACTIONS(4163), - [anon_sym_LT_DASH] = ACTIONS(4163), - [sym_none] = ACTIONS(4163), - [sym_true] = ACTIONS(4163), - [sym_false] = ACTIONS(4163), - [sym_nil] = ACTIONS(4163), - [anon_sym_if] = ACTIONS(4163), - [anon_sym_DOLLARif] = ACTIONS(4163), - [anon_sym_match] = ACTIONS(4163), - [anon_sym_select] = ACTIONS(4163), - [anon_sym_lock] = ACTIONS(4163), - [anon_sym_rlock] = ACTIONS(4163), - [anon_sym_unsafe] = ACTIONS(4163), - [anon_sym_sql] = ACTIONS(4163), - [sym_int_literal] = ACTIONS(4163), - [sym_float_literal] = ACTIONS(4163), - [sym_rune_literal] = ACTIONS(4163), - [anon_sym_AT] = ACTIONS(4163), - [anon_sym_shared] = ACTIONS(4163), - [anon_sym_map_LBRACK] = ACTIONS(4163), - [anon_sym_chan] = ACTIONS(4163), - [anon_sym_thread] = ACTIONS(4163), - [anon_sym_atomic] = ACTIONS(4163), - [anon_sym_assert] = ACTIONS(4163), - [anon_sym_defer] = ACTIONS(4163), - [anon_sym_goto] = ACTIONS(4163), - [anon_sym_break] = ACTIONS(4163), - [anon_sym_continue] = ACTIONS(4163), - [anon_sym_return] = ACTIONS(4163), - [anon_sym_DOLLARfor] = ACTIONS(4163), - [anon_sym_for] = ACTIONS(4163), - [anon_sym_POUND] = ACTIONS(4163), - [anon_sym_asm] = ACTIONS(4163), - [anon_sym_AT_LBRACK] = ACTIONS(4163), - [sym___double_quote] = ACTIONS(4163), - [sym___single_quote] = ACTIONS(4163), - [sym___c_double_quote] = ACTIONS(4163), - [sym___c_single_quote] = ACTIONS(4163), - [sym___r_double_quote] = ACTIONS(4163), - [sym___r_single_quote] = ACTIONS(4163), - }, - [1553] = { - [ts_builtin_sym_end] = ACTIONS(4165), - [sym_identifier] = ACTIONS(4167), - [anon_sym_LF] = ACTIONS(4169), - [anon_sym_CR] = ACTIONS(4169), - [anon_sym_CR_LF] = ACTIONS(4169), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4167), - [anon_sym_LBRACE] = ACTIONS(4167), - [anon_sym_const] = ACTIONS(4167), - [anon_sym_LPAREN] = ACTIONS(4167), - [anon_sym___global] = ACTIONS(4167), - [anon_sym_type] = ACTIONS(4167), - [anon_sym_fn] = ACTIONS(4167), - [anon_sym_PLUS] = ACTIONS(4167), - [anon_sym_DASH] = ACTIONS(4167), - [anon_sym_STAR] = ACTIONS(4167), - [anon_sym_struct] = ACTIONS(4167), - [anon_sym_union] = ACTIONS(4167), - [anon_sym_pub] = ACTIONS(4167), - [anon_sym_mut] = ACTIONS(4167), - [anon_sym_enum] = ACTIONS(4167), - [anon_sym_interface] = ACTIONS(4167), - [anon_sym_QMARK] = ACTIONS(4167), - [anon_sym_BANG] = ACTIONS(4167), - [anon_sym_go] = ACTIONS(4167), - [anon_sym_spawn] = ACTIONS(4167), - [anon_sym_json_DOTdecode] = ACTIONS(4167), - [anon_sym_LBRACK2] = ACTIONS(4167), - [anon_sym_TILDE] = ACTIONS(4167), - [anon_sym_CARET] = ACTIONS(4167), - [anon_sym_AMP] = ACTIONS(4167), - [anon_sym_LT_DASH] = ACTIONS(4167), - [sym_none] = ACTIONS(4167), - [sym_true] = ACTIONS(4167), - [sym_false] = ACTIONS(4167), - [sym_nil] = ACTIONS(4167), - [anon_sym_if] = ACTIONS(4167), - [anon_sym_DOLLARif] = ACTIONS(4167), - [anon_sym_match] = ACTIONS(4167), - [anon_sym_select] = ACTIONS(4167), - [anon_sym_lock] = ACTIONS(4167), - [anon_sym_rlock] = ACTIONS(4167), - [anon_sym_unsafe] = ACTIONS(4167), - [anon_sym_sql] = ACTIONS(4167), - [sym_int_literal] = ACTIONS(4167), - [sym_float_literal] = ACTIONS(4167), - [sym_rune_literal] = ACTIONS(4167), - [anon_sym_AT] = ACTIONS(4167), - [anon_sym_shared] = ACTIONS(4167), - [anon_sym_map_LBRACK] = ACTIONS(4167), - [anon_sym_chan] = ACTIONS(4167), - [anon_sym_thread] = ACTIONS(4167), - [anon_sym_atomic] = ACTIONS(4167), - [anon_sym_assert] = ACTIONS(4167), - [anon_sym_defer] = ACTIONS(4167), - [anon_sym_goto] = ACTIONS(4167), - [anon_sym_break] = ACTIONS(4167), - [anon_sym_continue] = ACTIONS(4167), - [anon_sym_return] = ACTIONS(4167), - [anon_sym_DOLLARfor] = ACTIONS(4167), - [anon_sym_for] = ACTIONS(4167), - [anon_sym_POUND] = ACTIONS(4167), - [anon_sym_asm] = ACTIONS(4167), - [anon_sym_AT_LBRACK] = ACTIONS(4167), - [sym___double_quote] = ACTIONS(4167), - [sym___single_quote] = ACTIONS(4167), - [sym___c_double_quote] = ACTIONS(4167), - [sym___c_single_quote] = ACTIONS(4167), - [sym___r_double_quote] = ACTIONS(4167), - [sym___r_single_quote] = ACTIONS(4167), - }, - [1554] = { - [ts_builtin_sym_end] = ACTIONS(4171), - [sym_identifier] = ACTIONS(4173), - [anon_sym_LF] = ACTIONS(4173), - [anon_sym_CR] = ACTIONS(4173), - [anon_sym_CR_LF] = ACTIONS(4173), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4173), - [anon_sym_LBRACE] = ACTIONS(4173), - [anon_sym_const] = ACTIONS(4173), - [anon_sym_LPAREN] = ACTIONS(4173), - [anon_sym___global] = ACTIONS(4173), - [anon_sym_type] = ACTIONS(4173), - [anon_sym_fn] = ACTIONS(4173), - [anon_sym_PLUS] = ACTIONS(4173), - [anon_sym_DASH] = ACTIONS(4173), - [anon_sym_STAR] = ACTIONS(4173), - [anon_sym_struct] = ACTIONS(4173), - [anon_sym_union] = ACTIONS(4173), - [anon_sym_pub] = ACTIONS(4173), - [anon_sym_mut] = ACTIONS(4173), - [anon_sym_enum] = ACTIONS(4173), - [anon_sym_interface] = ACTIONS(4173), - [anon_sym_QMARK] = ACTIONS(4173), - [anon_sym_BANG] = ACTIONS(4173), - [anon_sym_go] = ACTIONS(4173), - [anon_sym_spawn] = ACTIONS(4173), - [anon_sym_json_DOTdecode] = ACTIONS(4173), - [anon_sym_LBRACK2] = ACTIONS(4173), - [anon_sym_TILDE] = ACTIONS(4173), - [anon_sym_CARET] = ACTIONS(4173), - [anon_sym_AMP] = ACTIONS(4173), - [anon_sym_LT_DASH] = ACTIONS(4173), - [sym_none] = ACTIONS(4173), - [sym_true] = ACTIONS(4173), - [sym_false] = ACTIONS(4173), - [sym_nil] = ACTIONS(4173), - [anon_sym_if] = ACTIONS(4173), - [anon_sym_DOLLARif] = ACTIONS(4173), - [anon_sym_match] = ACTIONS(4173), - [anon_sym_select] = ACTIONS(4173), - [anon_sym_lock] = ACTIONS(4173), - [anon_sym_rlock] = ACTIONS(4173), - [anon_sym_unsafe] = ACTIONS(4173), - [anon_sym_sql] = ACTIONS(4173), - [sym_int_literal] = ACTIONS(4173), - [sym_float_literal] = ACTIONS(4173), - [sym_rune_literal] = ACTIONS(4173), - [anon_sym_AT] = ACTIONS(4173), - [anon_sym_shared] = ACTIONS(4173), - [anon_sym_map_LBRACK] = ACTIONS(4173), - [anon_sym_chan] = ACTIONS(4173), - [anon_sym_thread] = ACTIONS(4173), - [anon_sym_atomic] = ACTIONS(4173), - [anon_sym_assert] = ACTIONS(4173), - [anon_sym_defer] = ACTIONS(4173), - [anon_sym_goto] = ACTIONS(4173), - [anon_sym_break] = ACTIONS(4173), - [anon_sym_continue] = ACTIONS(4173), - [anon_sym_return] = ACTIONS(4173), - [anon_sym_DOLLARfor] = ACTIONS(4173), - [anon_sym_for] = ACTIONS(4173), - [anon_sym_POUND] = ACTIONS(4173), - [anon_sym_asm] = ACTIONS(4173), - [anon_sym_AT_LBRACK] = ACTIONS(4173), - [sym___double_quote] = ACTIONS(4173), - [sym___single_quote] = ACTIONS(4173), - [sym___c_double_quote] = ACTIONS(4173), - [sym___c_single_quote] = ACTIONS(4173), - [sym___r_double_quote] = ACTIONS(4173), - [sym___r_single_quote] = ACTIONS(4173), - }, - [1555] = { - [ts_builtin_sym_end] = ACTIONS(4175), - [sym_identifier] = ACTIONS(4177), - [anon_sym_LF] = ACTIONS(4177), - [anon_sym_CR] = ACTIONS(4177), - [anon_sym_CR_LF] = ACTIONS(4177), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4177), - [anon_sym_LBRACE] = ACTIONS(4177), - [anon_sym_const] = ACTIONS(4177), - [anon_sym_LPAREN] = ACTIONS(4177), - [anon_sym___global] = ACTIONS(4177), - [anon_sym_type] = ACTIONS(4177), - [anon_sym_fn] = ACTIONS(4177), - [anon_sym_PLUS] = ACTIONS(4177), - [anon_sym_DASH] = ACTIONS(4177), - [anon_sym_STAR] = ACTIONS(4177), - [anon_sym_struct] = ACTIONS(4177), - [anon_sym_union] = ACTIONS(4177), - [anon_sym_pub] = ACTIONS(4177), - [anon_sym_mut] = ACTIONS(4177), - [anon_sym_enum] = ACTIONS(4177), - [anon_sym_interface] = ACTIONS(4177), - [anon_sym_QMARK] = ACTIONS(4177), - [anon_sym_BANG] = ACTIONS(4177), - [anon_sym_go] = ACTIONS(4177), - [anon_sym_spawn] = ACTIONS(4177), - [anon_sym_json_DOTdecode] = ACTIONS(4177), - [anon_sym_LBRACK2] = ACTIONS(4177), - [anon_sym_TILDE] = ACTIONS(4177), - [anon_sym_CARET] = ACTIONS(4177), - [anon_sym_AMP] = ACTIONS(4177), - [anon_sym_LT_DASH] = ACTIONS(4177), - [sym_none] = ACTIONS(4177), - [sym_true] = ACTIONS(4177), - [sym_false] = ACTIONS(4177), - [sym_nil] = ACTIONS(4177), - [anon_sym_if] = ACTIONS(4177), - [anon_sym_DOLLARif] = ACTIONS(4177), - [anon_sym_match] = ACTIONS(4177), - [anon_sym_select] = ACTIONS(4177), - [anon_sym_lock] = ACTIONS(4177), - [anon_sym_rlock] = ACTIONS(4177), - [anon_sym_unsafe] = ACTIONS(4177), - [anon_sym_sql] = ACTIONS(4177), - [sym_int_literal] = ACTIONS(4177), - [sym_float_literal] = ACTIONS(4177), - [sym_rune_literal] = ACTIONS(4177), - [anon_sym_AT] = ACTIONS(4177), - [anon_sym_shared] = ACTIONS(4177), - [anon_sym_map_LBRACK] = ACTIONS(4177), - [anon_sym_chan] = ACTIONS(4177), - [anon_sym_thread] = ACTIONS(4177), - [anon_sym_atomic] = ACTIONS(4177), - [anon_sym_assert] = ACTIONS(4177), - [anon_sym_defer] = ACTIONS(4177), - [anon_sym_goto] = ACTIONS(4177), - [anon_sym_break] = ACTIONS(4177), - [anon_sym_continue] = ACTIONS(4177), - [anon_sym_return] = ACTIONS(4177), - [anon_sym_DOLLARfor] = ACTIONS(4177), - [anon_sym_for] = ACTIONS(4177), - [anon_sym_POUND] = ACTIONS(4177), - [anon_sym_asm] = ACTIONS(4177), - [anon_sym_AT_LBRACK] = ACTIONS(4177), - [sym___double_quote] = ACTIONS(4177), - [sym___single_quote] = ACTIONS(4177), - [sym___c_double_quote] = ACTIONS(4177), - [sym___c_single_quote] = ACTIONS(4177), - [sym___r_double_quote] = ACTIONS(4177), - [sym___r_single_quote] = ACTIONS(4177), - }, - [1556] = { - [ts_builtin_sym_end] = ACTIONS(4179), - [sym_identifier] = ACTIONS(4181), - [anon_sym_LF] = ACTIONS(4181), - [anon_sym_CR] = ACTIONS(4181), - [anon_sym_CR_LF] = ACTIONS(4181), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4181), - [anon_sym_LBRACE] = ACTIONS(4181), - [anon_sym_const] = ACTIONS(4181), - [anon_sym_LPAREN] = ACTIONS(4181), - [anon_sym___global] = ACTIONS(4181), - [anon_sym_type] = ACTIONS(4181), - [anon_sym_fn] = ACTIONS(4181), - [anon_sym_PLUS] = ACTIONS(4181), - [anon_sym_DASH] = ACTIONS(4181), - [anon_sym_STAR] = ACTIONS(4181), - [anon_sym_struct] = ACTIONS(4181), - [anon_sym_union] = ACTIONS(4181), - [anon_sym_pub] = ACTIONS(4181), - [anon_sym_mut] = ACTIONS(4181), - [anon_sym_enum] = ACTIONS(4181), - [anon_sym_interface] = ACTIONS(4181), - [anon_sym_QMARK] = ACTIONS(4181), - [anon_sym_BANG] = ACTIONS(4181), - [anon_sym_go] = ACTIONS(4181), - [anon_sym_spawn] = ACTIONS(4181), - [anon_sym_json_DOTdecode] = ACTIONS(4181), - [anon_sym_LBRACK2] = ACTIONS(4181), - [anon_sym_TILDE] = ACTIONS(4181), - [anon_sym_CARET] = ACTIONS(4181), - [anon_sym_AMP] = ACTIONS(4181), - [anon_sym_LT_DASH] = ACTIONS(4181), - [sym_none] = ACTIONS(4181), - [sym_true] = ACTIONS(4181), - [sym_false] = ACTIONS(4181), - [sym_nil] = ACTIONS(4181), - [anon_sym_if] = ACTIONS(4181), - [anon_sym_DOLLARif] = ACTIONS(4181), - [anon_sym_match] = ACTIONS(4181), - [anon_sym_select] = ACTIONS(4181), - [anon_sym_lock] = ACTIONS(4181), - [anon_sym_rlock] = ACTIONS(4181), - [anon_sym_unsafe] = ACTIONS(4181), - [anon_sym_sql] = ACTIONS(4181), - [sym_int_literal] = ACTIONS(4181), - [sym_float_literal] = ACTIONS(4181), - [sym_rune_literal] = ACTIONS(4181), - [anon_sym_AT] = ACTIONS(4181), - [anon_sym_shared] = ACTIONS(4181), - [anon_sym_map_LBRACK] = ACTIONS(4181), - [anon_sym_chan] = ACTIONS(4181), - [anon_sym_thread] = ACTIONS(4181), - [anon_sym_atomic] = ACTIONS(4181), - [anon_sym_assert] = ACTIONS(4181), - [anon_sym_defer] = ACTIONS(4181), - [anon_sym_goto] = ACTIONS(4181), - [anon_sym_break] = ACTIONS(4181), - [anon_sym_continue] = ACTIONS(4181), - [anon_sym_return] = ACTIONS(4181), - [anon_sym_DOLLARfor] = ACTIONS(4181), - [anon_sym_for] = ACTIONS(4181), - [anon_sym_POUND] = ACTIONS(4181), - [anon_sym_asm] = ACTIONS(4181), - [anon_sym_AT_LBRACK] = ACTIONS(4181), - [sym___double_quote] = ACTIONS(4181), - [sym___single_quote] = ACTIONS(4181), - [sym___c_double_quote] = ACTIONS(4181), - [sym___c_single_quote] = ACTIONS(4181), - [sym___r_double_quote] = ACTIONS(4181), - [sym___r_single_quote] = ACTIONS(4181), - }, - [1557] = { - [ts_builtin_sym_end] = ACTIONS(1764), - [sym_identifier] = ACTIONS(1766), - [anon_sym_LF] = ACTIONS(1766), - [anon_sym_CR] = ACTIONS(1766), - [anon_sym_CR_LF] = ACTIONS(1766), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(1766), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_const] = ACTIONS(1766), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym___global] = ACTIONS(1766), - [anon_sym_type] = ACTIONS(1766), - [anon_sym_fn] = ACTIONS(1766), - [anon_sym_PLUS] = ACTIONS(1766), - [anon_sym_DASH] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_struct] = ACTIONS(1766), - [anon_sym_union] = ACTIONS(1766), - [anon_sym_pub] = ACTIONS(1766), - [anon_sym_mut] = ACTIONS(1766), - [anon_sym_enum] = ACTIONS(1766), - [anon_sym_interface] = ACTIONS(1766), - [anon_sym_QMARK] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1766), - [anon_sym_go] = ACTIONS(1766), - [anon_sym_spawn] = ACTIONS(1766), - [anon_sym_json_DOTdecode] = ACTIONS(1766), - [anon_sym_LBRACK2] = ACTIONS(1766), - [anon_sym_TILDE] = ACTIONS(1766), - [anon_sym_CARET] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1766), - [anon_sym_LT_DASH] = ACTIONS(1766), - [sym_none] = ACTIONS(1766), - [sym_true] = ACTIONS(1766), - [sym_false] = ACTIONS(1766), - [sym_nil] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1766), - [anon_sym_DOLLARif] = ACTIONS(1766), - [anon_sym_match] = ACTIONS(1766), - [anon_sym_select] = ACTIONS(1766), - [anon_sym_lock] = ACTIONS(1766), - [anon_sym_rlock] = ACTIONS(1766), - [anon_sym_unsafe] = ACTIONS(1766), - [anon_sym_sql] = ACTIONS(1766), - [sym_int_literal] = ACTIONS(1766), - [sym_float_literal] = ACTIONS(1766), - [sym_rune_literal] = ACTIONS(1766), - [anon_sym_AT] = ACTIONS(1766), - [anon_sym_shared] = ACTIONS(1766), - [anon_sym_map_LBRACK] = ACTIONS(1766), - [anon_sym_chan] = ACTIONS(1766), - [anon_sym_thread] = ACTIONS(1766), - [anon_sym_atomic] = ACTIONS(1766), - [anon_sym_assert] = ACTIONS(1766), - [anon_sym_defer] = ACTIONS(1766), - [anon_sym_goto] = ACTIONS(1766), - [anon_sym_break] = ACTIONS(1766), - [anon_sym_continue] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1766), - [anon_sym_DOLLARfor] = ACTIONS(1766), - [anon_sym_for] = ACTIONS(1766), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_asm] = ACTIONS(1766), - [anon_sym_AT_LBRACK] = ACTIONS(1766), - [sym___double_quote] = ACTIONS(1766), - [sym___single_quote] = ACTIONS(1766), - [sym___c_double_quote] = ACTIONS(1766), - [sym___c_single_quote] = ACTIONS(1766), - [sym___r_double_quote] = ACTIONS(1766), - [sym___r_single_quote] = ACTIONS(1766), - }, - [1558] = { - [ts_builtin_sym_end] = ACTIONS(4183), - [sym_identifier] = ACTIONS(4185), - [anon_sym_LF] = ACTIONS(4185), - [anon_sym_CR] = ACTIONS(4185), - [anon_sym_CR_LF] = ACTIONS(4185), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4185), - [anon_sym_LBRACE] = ACTIONS(4185), - [anon_sym_const] = ACTIONS(4185), - [anon_sym_LPAREN] = ACTIONS(4185), - [anon_sym___global] = ACTIONS(4185), - [anon_sym_type] = ACTIONS(4185), - [anon_sym_fn] = ACTIONS(4185), - [anon_sym_PLUS] = ACTIONS(4185), - [anon_sym_DASH] = ACTIONS(4185), - [anon_sym_STAR] = ACTIONS(4185), - [anon_sym_struct] = ACTIONS(4185), - [anon_sym_union] = ACTIONS(4185), - [anon_sym_pub] = ACTIONS(4185), - [anon_sym_mut] = ACTIONS(4185), - [anon_sym_enum] = ACTIONS(4185), - [anon_sym_interface] = ACTIONS(4185), - [anon_sym_QMARK] = ACTIONS(4185), - [anon_sym_BANG] = ACTIONS(4185), - [anon_sym_go] = ACTIONS(4185), - [anon_sym_spawn] = ACTIONS(4185), - [anon_sym_json_DOTdecode] = ACTIONS(4185), - [anon_sym_LBRACK2] = ACTIONS(4185), - [anon_sym_TILDE] = ACTIONS(4185), - [anon_sym_CARET] = ACTIONS(4185), - [anon_sym_AMP] = ACTIONS(4185), - [anon_sym_LT_DASH] = ACTIONS(4185), - [sym_none] = ACTIONS(4185), - [sym_true] = ACTIONS(4185), - [sym_false] = ACTIONS(4185), - [sym_nil] = ACTIONS(4185), - [anon_sym_if] = ACTIONS(4185), - [anon_sym_DOLLARif] = ACTIONS(4185), - [anon_sym_match] = ACTIONS(4185), - [anon_sym_select] = ACTIONS(4185), - [anon_sym_lock] = ACTIONS(4185), - [anon_sym_rlock] = ACTIONS(4185), - [anon_sym_unsafe] = ACTIONS(4185), - [anon_sym_sql] = ACTIONS(4185), - [sym_int_literal] = ACTIONS(4185), - [sym_float_literal] = ACTIONS(4185), - [sym_rune_literal] = ACTIONS(4185), - [anon_sym_AT] = ACTIONS(4185), - [anon_sym_shared] = ACTIONS(4185), - [anon_sym_map_LBRACK] = ACTIONS(4185), - [anon_sym_chan] = ACTIONS(4185), - [anon_sym_thread] = ACTIONS(4185), - [anon_sym_atomic] = ACTIONS(4185), - [anon_sym_assert] = ACTIONS(4185), - [anon_sym_defer] = ACTIONS(4185), - [anon_sym_goto] = ACTIONS(4185), - [anon_sym_break] = ACTIONS(4185), - [anon_sym_continue] = ACTIONS(4185), - [anon_sym_return] = ACTIONS(4185), - [anon_sym_DOLLARfor] = ACTIONS(4185), - [anon_sym_for] = ACTIONS(4185), - [anon_sym_POUND] = ACTIONS(4185), - [anon_sym_asm] = ACTIONS(4185), - [anon_sym_AT_LBRACK] = ACTIONS(4185), - [sym___double_quote] = ACTIONS(4185), - [sym___single_quote] = ACTIONS(4185), - [sym___c_double_quote] = ACTIONS(4185), - [sym___c_single_quote] = ACTIONS(4185), - [sym___r_double_quote] = ACTIONS(4185), - [sym___r_single_quote] = ACTIONS(4185), - }, - [1559] = { - [ts_builtin_sym_end] = ACTIONS(4187), - [sym_identifier] = ACTIONS(4189), - [anon_sym_LF] = ACTIONS(4189), - [anon_sym_CR] = ACTIONS(4189), - [anon_sym_CR_LF] = ACTIONS(4189), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4189), - [anon_sym_LBRACE] = ACTIONS(4189), - [anon_sym_const] = ACTIONS(4189), - [anon_sym_LPAREN] = ACTIONS(4189), - [anon_sym___global] = ACTIONS(4189), - [anon_sym_type] = ACTIONS(4189), - [anon_sym_fn] = ACTIONS(4189), - [anon_sym_PLUS] = ACTIONS(4189), - [anon_sym_DASH] = ACTIONS(4189), - [anon_sym_STAR] = ACTIONS(4189), - [anon_sym_struct] = ACTIONS(4189), - [anon_sym_union] = ACTIONS(4189), - [anon_sym_pub] = ACTIONS(4189), - [anon_sym_mut] = ACTIONS(4189), - [anon_sym_enum] = ACTIONS(4189), - [anon_sym_interface] = ACTIONS(4189), - [anon_sym_QMARK] = ACTIONS(4189), - [anon_sym_BANG] = ACTIONS(4189), - [anon_sym_go] = ACTIONS(4189), - [anon_sym_spawn] = ACTIONS(4189), - [anon_sym_json_DOTdecode] = ACTIONS(4189), - [anon_sym_LBRACK2] = ACTIONS(4189), - [anon_sym_TILDE] = ACTIONS(4189), - [anon_sym_CARET] = ACTIONS(4189), - [anon_sym_AMP] = ACTIONS(4189), - [anon_sym_LT_DASH] = ACTIONS(4189), - [sym_none] = ACTIONS(4189), - [sym_true] = ACTIONS(4189), - [sym_false] = ACTIONS(4189), - [sym_nil] = ACTIONS(4189), - [anon_sym_if] = ACTIONS(4189), - [anon_sym_DOLLARif] = ACTIONS(4189), - [anon_sym_match] = ACTIONS(4189), - [anon_sym_select] = ACTIONS(4189), - [anon_sym_lock] = ACTIONS(4189), - [anon_sym_rlock] = ACTIONS(4189), - [anon_sym_unsafe] = ACTIONS(4189), - [anon_sym_sql] = ACTIONS(4189), - [sym_int_literal] = ACTIONS(4189), - [sym_float_literal] = ACTIONS(4189), - [sym_rune_literal] = ACTIONS(4189), - [anon_sym_AT] = ACTIONS(4189), - [anon_sym_shared] = ACTIONS(4189), - [anon_sym_map_LBRACK] = ACTIONS(4189), - [anon_sym_chan] = ACTIONS(4189), - [anon_sym_thread] = ACTIONS(4189), - [anon_sym_atomic] = ACTIONS(4189), - [anon_sym_assert] = ACTIONS(4189), - [anon_sym_defer] = ACTIONS(4189), - [anon_sym_goto] = ACTIONS(4189), - [anon_sym_break] = ACTIONS(4189), - [anon_sym_continue] = ACTIONS(4189), - [anon_sym_return] = ACTIONS(4189), - [anon_sym_DOLLARfor] = ACTIONS(4189), - [anon_sym_for] = ACTIONS(4189), - [anon_sym_POUND] = ACTIONS(4189), - [anon_sym_asm] = ACTIONS(4189), - [anon_sym_AT_LBRACK] = ACTIONS(4189), - [sym___double_quote] = ACTIONS(4189), - [sym___single_quote] = ACTIONS(4189), - [sym___c_double_quote] = ACTIONS(4189), - [sym___c_single_quote] = ACTIONS(4189), - [sym___r_double_quote] = ACTIONS(4189), - [sym___r_single_quote] = ACTIONS(4189), - }, - [1560] = { - [ts_builtin_sym_end] = ACTIONS(4191), - [sym_identifier] = ACTIONS(4193), - [anon_sym_LF] = ACTIONS(4193), - [anon_sym_CR] = ACTIONS(4193), - [anon_sym_CR_LF] = ACTIONS(4193), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4193), - [anon_sym_LBRACE] = ACTIONS(4193), - [anon_sym_const] = ACTIONS(4193), - [anon_sym_LPAREN] = ACTIONS(4193), - [anon_sym___global] = ACTIONS(4193), - [anon_sym_type] = ACTIONS(4193), - [anon_sym_fn] = ACTIONS(4193), - [anon_sym_PLUS] = ACTIONS(4193), - [anon_sym_DASH] = ACTIONS(4193), - [anon_sym_STAR] = ACTIONS(4193), - [anon_sym_struct] = ACTIONS(4193), - [anon_sym_union] = ACTIONS(4193), - [anon_sym_pub] = ACTIONS(4193), - [anon_sym_mut] = ACTIONS(4193), - [anon_sym_enum] = ACTIONS(4193), - [anon_sym_interface] = ACTIONS(4193), - [anon_sym_QMARK] = ACTIONS(4193), - [anon_sym_BANG] = ACTIONS(4193), - [anon_sym_go] = ACTIONS(4193), - [anon_sym_spawn] = ACTIONS(4193), - [anon_sym_json_DOTdecode] = ACTIONS(4193), - [anon_sym_LBRACK2] = ACTIONS(4193), - [anon_sym_TILDE] = ACTIONS(4193), - [anon_sym_CARET] = ACTIONS(4193), - [anon_sym_AMP] = ACTIONS(4193), - [anon_sym_LT_DASH] = ACTIONS(4193), - [sym_none] = ACTIONS(4193), - [sym_true] = ACTIONS(4193), - [sym_false] = ACTIONS(4193), - [sym_nil] = ACTIONS(4193), - [anon_sym_if] = ACTIONS(4193), - [anon_sym_DOLLARif] = ACTIONS(4193), - [anon_sym_match] = ACTIONS(4193), - [anon_sym_select] = ACTIONS(4193), - [anon_sym_lock] = ACTIONS(4193), - [anon_sym_rlock] = ACTIONS(4193), - [anon_sym_unsafe] = ACTIONS(4193), - [anon_sym_sql] = ACTIONS(4193), - [sym_int_literal] = ACTIONS(4193), - [sym_float_literal] = ACTIONS(4193), - [sym_rune_literal] = ACTIONS(4193), - [anon_sym_AT] = ACTIONS(4193), - [anon_sym_shared] = ACTIONS(4193), - [anon_sym_map_LBRACK] = ACTIONS(4193), - [anon_sym_chan] = ACTIONS(4193), - [anon_sym_thread] = ACTIONS(4193), - [anon_sym_atomic] = ACTIONS(4193), - [anon_sym_assert] = ACTIONS(4193), - [anon_sym_defer] = ACTIONS(4193), - [anon_sym_goto] = ACTIONS(4193), - [anon_sym_break] = ACTIONS(4193), - [anon_sym_continue] = ACTIONS(4193), - [anon_sym_return] = ACTIONS(4193), - [anon_sym_DOLLARfor] = ACTIONS(4193), - [anon_sym_for] = ACTIONS(4193), - [anon_sym_POUND] = ACTIONS(4193), - [anon_sym_asm] = ACTIONS(4193), - [anon_sym_AT_LBRACK] = ACTIONS(4193), - [sym___double_quote] = ACTIONS(4193), - [sym___single_quote] = ACTIONS(4193), - [sym___c_double_quote] = ACTIONS(4193), - [sym___c_single_quote] = ACTIONS(4193), - [sym___r_double_quote] = ACTIONS(4193), - [sym___r_single_quote] = ACTIONS(4193), - }, - [1561] = { - [ts_builtin_sym_end] = ACTIONS(4195), - [sym_identifier] = ACTIONS(4197), - [anon_sym_LF] = ACTIONS(4197), - [anon_sym_CR] = ACTIONS(4197), - [anon_sym_CR_LF] = ACTIONS(4197), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4197), - [anon_sym_LBRACE] = ACTIONS(4197), - [anon_sym_const] = ACTIONS(4197), - [anon_sym_LPAREN] = ACTIONS(4197), - [anon_sym___global] = ACTIONS(4197), - [anon_sym_type] = ACTIONS(4197), - [anon_sym_fn] = ACTIONS(4197), - [anon_sym_PLUS] = ACTIONS(4197), - [anon_sym_DASH] = ACTIONS(4197), - [anon_sym_STAR] = ACTIONS(4197), - [anon_sym_struct] = ACTIONS(4197), - [anon_sym_union] = ACTIONS(4197), - [anon_sym_pub] = ACTIONS(4197), - [anon_sym_mut] = ACTIONS(4197), - [anon_sym_enum] = ACTIONS(4197), - [anon_sym_interface] = ACTIONS(4197), - [anon_sym_QMARK] = ACTIONS(4197), - [anon_sym_BANG] = ACTIONS(4197), - [anon_sym_go] = ACTIONS(4197), - [anon_sym_spawn] = ACTIONS(4197), - [anon_sym_json_DOTdecode] = ACTIONS(4197), - [anon_sym_LBRACK2] = ACTIONS(4197), - [anon_sym_TILDE] = ACTIONS(4197), - [anon_sym_CARET] = ACTIONS(4197), - [anon_sym_AMP] = ACTIONS(4197), - [anon_sym_LT_DASH] = ACTIONS(4197), - [sym_none] = ACTIONS(4197), - [sym_true] = ACTIONS(4197), - [sym_false] = ACTIONS(4197), - [sym_nil] = ACTIONS(4197), - [anon_sym_if] = ACTIONS(4197), - [anon_sym_DOLLARif] = ACTIONS(4197), - [anon_sym_match] = ACTIONS(4197), - [anon_sym_select] = ACTIONS(4197), - [anon_sym_lock] = ACTIONS(4197), - [anon_sym_rlock] = ACTIONS(4197), - [anon_sym_unsafe] = ACTIONS(4197), - [anon_sym_sql] = ACTIONS(4197), - [sym_int_literal] = ACTIONS(4197), - [sym_float_literal] = ACTIONS(4197), - [sym_rune_literal] = ACTIONS(4197), - [anon_sym_AT] = ACTIONS(4197), - [anon_sym_shared] = ACTIONS(4197), - [anon_sym_map_LBRACK] = ACTIONS(4197), - [anon_sym_chan] = ACTIONS(4197), - [anon_sym_thread] = ACTIONS(4197), - [anon_sym_atomic] = ACTIONS(4197), - [anon_sym_assert] = ACTIONS(4197), - [anon_sym_defer] = ACTIONS(4197), - [anon_sym_goto] = ACTIONS(4197), - [anon_sym_break] = ACTIONS(4197), - [anon_sym_continue] = ACTIONS(4197), - [anon_sym_return] = ACTIONS(4197), - [anon_sym_DOLLARfor] = ACTIONS(4197), - [anon_sym_for] = ACTIONS(4197), - [anon_sym_POUND] = ACTIONS(4197), - [anon_sym_asm] = ACTIONS(4197), - [anon_sym_AT_LBRACK] = ACTIONS(4197), - [sym___double_quote] = ACTIONS(4197), - [sym___single_quote] = ACTIONS(4197), - [sym___c_double_quote] = ACTIONS(4197), - [sym___c_single_quote] = ACTIONS(4197), - [sym___r_double_quote] = ACTIONS(4197), - [sym___r_single_quote] = ACTIONS(4197), - }, - [1562] = { - [ts_builtin_sym_end] = ACTIONS(4199), - [sym_identifier] = ACTIONS(4201), - [anon_sym_LF] = ACTIONS(4201), - [anon_sym_CR] = ACTIONS(4201), - [anon_sym_CR_LF] = ACTIONS(4201), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4201), - [anon_sym_LBRACE] = ACTIONS(4201), - [anon_sym_const] = ACTIONS(4201), - [anon_sym_LPAREN] = ACTIONS(4201), - [anon_sym___global] = ACTIONS(4201), - [anon_sym_type] = ACTIONS(4201), - [anon_sym_fn] = ACTIONS(4201), - [anon_sym_PLUS] = ACTIONS(4201), - [anon_sym_DASH] = ACTIONS(4201), - [anon_sym_STAR] = ACTIONS(4201), - [anon_sym_struct] = ACTIONS(4201), - [anon_sym_union] = ACTIONS(4201), - [anon_sym_pub] = ACTIONS(4201), - [anon_sym_mut] = ACTIONS(4201), - [anon_sym_enum] = ACTIONS(4201), - [anon_sym_interface] = ACTIONS(4201), - [anon_sym_QMARK] = ACTIONS(4201), - [anon_sym_BANG] = ACTIONS(4201), - [anon_sym_go] = ACTIONS(4201), - [anon_sym_spawn] = ACTIONS(4201), - [anon_sym_json_DOTdecode] = ACTIONS(4201), - [anon_sym_LBRACK2] = ACTIONS(4201), - [anon_sym_TILDE] = ACTIONS(4201), - [anon_sym_CARET] = ACTIONS(4201), - [anon_sym_AMP] = ACTIONS(4201), - [anon_sym_LT_DASH] = ACTIONS(4201), - [sym_none] = ACTIONS(4201), - [sym_true] = ACTIONS(4201), - [sym_false] = ACTIONS(4201), - [sym_nil] = ACTIONS(4201), - [anon_sym_if] = ACTIONS(4201), - [anon_sym_DOLLARif] = ACTIONS(4201), - [anon_sym_match] = ACTIONS(4201), - [anon_sym_select] = ACTIONS(4201), - [anon_sym_lock] = ACTIONS(4201), - [anon_sym_rlock] = ACTIONS(4201), - [anon_sym_unsafe] = ACTIONS(4201), - [anon_sym_sql] = ACTIONS(4201), - [sym_int_literal] = ACTIONS(4201), - [sym_float_literal] = ACTIONS(4201), - [sym_rune_literal] = ACTIONS(4201), - [anon_sym_AT] = ACTIONS(4201), - [anon_sym_shared] = ACTIONS(4201), - [anon_sym_map_LBRACK] = ACTIONS(4201), - [anon_sym_chan] = ACTIONS(4201), - [anon_sym_thread] = ACTIONS(4201), - [anon_sym_atomic] = ACTIONS(4201), - [anon_sym_assert] = ACTIONS(4201), - [anon_sym_defer] = ACTIONS(4201), - [anon_sym_goto] = ACTIONS(4201), - [anon_sym_break] = ACTIONS(4201), - [anon_sym_continue] = ACTIONS(4201), - [anon_sym_return] = ACTIONS(4201), - [anon_sym_DOLLARfor] = ACTIONS(4201), - [anon_sym_for] = ACTIONS(4201), - [anon_sym_POUND] = ACTIONS(4201), - [anon_sym_asm] = ACTIONS(4201), - [anon_sym_AT_LBRACK] = ACTIONS(4201), - [sym___double_quote] = ACTIONS(4201), - [sym___single_quote] = ACTIONS(4201), - [sym___c_double_quote] = ACTIONS(4201), - [sym___c_single_quote] = ACTIONS(4201), - [sym___r_double_quote] = ACTIONS(4201), - [sym___r_single_quote] = ACTIONS(4201), - }, - [1563] = { - [ts_builtin_sym_end] = ACTIONS(4203), - [sym_identifier] = ACTIONS(4205), - [anon_sym_LF] = ACTIONS(4205), - [anon_sym_CR] = ACTIONS(4205), - [anon_sym_CR_LF] = ACTIONS(4205), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4205), - [anon_sym_LBRACE] = ACTIONS(4205), - [anon_sym_const] = ACTIONS(4205), - [anon_sym_LPAREN] = ACTIONS(4205), - [anon_sym___global] = ACTIONS(4205), - [anon_sym_type] = ACTIONS(4205), - [anon_sym_fn] = ACTIONS(4205), - [anon_sym_PLUS] = ACTIONS(4205), - [anon_sym_DASH] = ACTIONS(4205), - [anon_sym_STAR] = ACTIONS(4205), - [anon_sym_struct] = ACTIONS(4205), - [anon_sym_union] = ACTIONS(4205), - [anon_sym_pub] = ACTIONS(4205), - [anon_sym_mut] = ACTIONS(4205), - [anon_sym_enum] = ACTIONS(4205), - [anon_sym_interface] = ACTIONS(4205), - [anon_sym_QMARK] = ACTIONS(4205), - [anon_sym_BANG] = ACTIONS(4205), - [anon_sym_go] = ACTIONS(4205), - [anon_sym_spawn] = ACTIONS(4205), - [anon_sym_json_DOTdecode] = ACTIONS(4205), - [anon_sym_LBRACK2] = ACTIONS(4205), - [anon_sym_TILDE] = ACTIONS(4205), - [anon_sym_CARET] = ACTIONS(4205), - [anon_sym_AMP] = ACTIONS(4205), - [anon_sym_LT_DASH] = ACTIONS(4205), - [sym_none] = ACTIONS(4205), - [sym_true] = ACTIONS(4205), - [sym_false] = ACTIONS(4205), - [sym_nil] = ACTIONS(4205), - [anon_sym_if] = ACTIONS(4205), - [anon_sym_DOLLARif] = ACTIONS(4205), - [anon_sym_match] = ACTIONS(4205), - [anon_sym_select] = ACTIONS(4205), - [anon_sym_lock] = ACTIONS(4205), - [anon_sym_rlock] = ACTIONS(4205), - [anon_sym_unsafe] = ACTIONS(4205), - [anon_sym_sql] = ACTIONS(4205), - [sym_int_literal] = ACTIONS(4205), - [sym_float_literal] = ACTIONS(4205), - [sym_rune_literal] = ACTIONS(4205), - [anon_sym_AT] = ACTIONS(4205), - [anon_sym_shared] = ACTIONS(4205), - [anon_sym_map_LBRACK] = ACTIONS(4205), - [anon_sym_chan] = ACTIONS(4205), - [anon_sym_thread] = ACTIONS(4205), - [anon_sym_atomic] = ACTIONS(4205), - [anon_sym_assert] = ACTIONS(4205), - [anon_sym_defer] = ACTIONS(4205), - [anon_sym_goto] = ACTIONS(4205), - [anon_sym_break] = ACTIONS(4205), - [anon_sym_continue] = ACTIONS(4205), - [anon_sym_return] = ACTIONS(4205), - [anon_sym_DOLLARfor] = ACTIONS(4205), - [anon_sym_for] = ACTIONS(4205), - [anon_sym_POUND] = ACTIONS(4205), - [anon_sym_asm] = ACTIONS(4205), - [anon_sym_AT_LBRACK] = ACTIONS(4205), - [sym___double_quote] = ACTIONS(4205), - [sym___single_quote] = ACTIONS(4205), - [sym___c_double_quote] = ACTIONS(4205), - [sym___c_single_quote] = ACTIONS(4205), - [sym___r_double_quote] = ACTIONS(4205), - [sym___r_single_quote] = ACTIONS(4205), - }, - [1564] = { - [sym_import_declaration] = STATE(1564), - [aux_sym_import_list_repeat1] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(4207), - [sym_identifier] = ACTIONS(4209), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4211), - [anon_sym_DOT] = ACTIONS(4209), - [anon_sym_LBRACE] = ACTIONS(4207), - [anon_sym_const] = ACTIONS(4209), - [anon_sym_LPAREN] = ACTIONS(4207), - [anon_sym___global] = ACTIONS(4209), - [anon_sym_type] = ACTIONS(4209), - [anon_sym_fn] = ACTIONS(4209), - [anon_sym_PLUS] = ACTIONS(4207), - [anon_sym_DASH] = ACTIONS(4207), - [anon_sym_STAR] = ACTIONS(4207), - [anon_sym_struct] = ACTIONS(4209), - [anon_sym_union] = ACTIONS(4209), - [anon_sym_pub] = ACTIONS(4209), - [anon_sym_mut] = ACTIONS(4209), - [anon_sym_enum] = ACTIONS(4209), - [anon_sym_interface] = ACTIONS(4209), - [anon_sym_QMARK] = ACTIONS(4207), - [anon_sym_BANG] = ACTIONS(4207), - [anon_sym_go] = ACTIONS(4209), - [anon_sym_spawn] = ACTIONS(4209), - [anon_sym_json_DOTdecode] = ACTIONS(4207), - [anon_sym_LBRACK2] = ACTIONS(4207), - [anon_sym_TILDE] = ACTIONS(4207), - [anon_sym_CARET] = ACTIONS(4207), - [anon_sym_AMP] = ACTIONS(4207), - [anon_sym_LT_DASH] = ACTIONS(4207), - [sym_none] = ACTIONS(4209), - [sym_true] = ACTIONS(4209), - [sym_false] = ACTIONS(4209), - [sym_nil] = ACTIONS(4209), - [anon_sym_if] = ACTIONS(4209), - [anon_sym_DOLLARif] = ACTIONS(4209), - [anon_sym_match] = ACTIONS(4209), - [anon_sym_select] = ACTIONS(4209), - [anon_sym_lock] = ACTIONS(4209), - [anon_sym_rlock] = ACTIONS(4209), - [anon_sym_unsafe] = ACTIONS(4209), - [anon_sym_sql] = ACTIONS(4209), - [sym_int_literal] = ACTIONS(4209), - [sym_float_literal] = ACTIONS(4207), - [sym_rune_literal] = ACTIONS(4207), - [anon_sym_AT] = ACTIONS(4209), - [anon_sym_shared] = ACTIONS(4209), - [anon_sym_map_LBRACK] = ACTIONS(4207), - [anon_sym_chan] = ACTIONS(4209), - [anon_sym_thread] = ACTIONS(4209), - [anon_sym_atomic] = ACTIONS(4209), - [anon_sym_assert] = ACTIONS(4209), - [anon_sym_defer] = ACTIONS(4209), - [anon_sym_goto] = ACTIONS(4209), - [anon_sym_break] = ACTIONS(4209), - [anon_sym_continue] = ACTIONS(4209), - [anon_sym_return] = ACTIONS(4209), - [anon_sym_DOLLARfor] = ACTIONS(4209), - [anon_sym_for] = ACTIONS(4209), - [anon_sym_POUND] = ACTIONS(4209), - [anon_sym_asm] = ACTIONS(4209), - [anon_sym_AT_LBRACK] = ACTIONS(4207), - [sym___double_quote] = ACTIONS(4207), - [sym___single_quote] = ACTIONS(4207), - [sym___c_double_quote] = ACTIONS(4207), - [sym___c_single_quote] = ACTIONS(4207), - [sym___r_double_quote] = ACTIONS(4207), - [sym___r_single_quote] = ACTIONS(4207), - }, - [1565] = { - [ts_builtin_sym_end] = ACTIONS(4214), - [sym_identifier] = ACTIONS(4216), - [anon_sym_LF] = ACTIONS(4216), - [anon_sym_CR] = ACTIONS(4216), - [anon_sym_CR_LF] = ACTIONS(4216), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4216), - [anon_sym_LBRACE] = ACTIONS(4216), - [anon_sym_const] = ACTIONS(4216), - [anon_sym_LPAREN] = ACTIONS(4216), - [anon_sym___global] = ACTIONS(4216), - [anon_sym_type] = ACTIONS(4216), - [anon_sym_fn] = ACTIONS(4216), - [anon_sym_PLUS] = ACTIONS(4216), - [anon_sym_DASH] = ACTIONS(4216), - [anon_sym_STAR] = ACTIONS(4216), - [anon_sym_struct] = ACTIONS(4216), - [anon_sym_union] = ACTIONS(4216), - [anon_sym_pub] = ACTIONS(4216), - [anon_sym_mut] = ACTIONS(4216), - [anon_sym_enum] = ACTIONS(4216), - [anon_sym_interface] = ACTIONS(4216), - [anon_sym_QMARK] = ACTIONS(4216), - [anon_sym_BANG] = ACTIONS(4216), - [anon_sym_go] = ACTIONS(4216), - [anon_sym_spawn] = ACTIONS(4216), - [anon_sym_json_DOTdecode] = ACTIONS(4216), - [anon_sym_LBRACK2] = ACTIONS(4216), - [anon_sym_TILDE] = ACTIONS(4216), - [anon_sym_CARET] = ACTIONS(4216), - [anon_sym_AMP] = ACTIONS(4216), - [anon_sym_LT_DASH] = ACTIONS(4216), - [sym_none] = ACTIONS(4216), - [sym_true] = ACTIONS(4216), - [sym_false] = ACTIONS(4216), - [sym_nil] = ACTIONS(4216), - [anon_sym_if] = ACTIONS(4216), - [anon_sym_DOLLARif] = ACTIONS(4216), - [anon_sym_match] = ACTIONS(4216), - [anon_sym_select] = ACTIONS(4216), - [anon_sym_lock] = ACTIONS(4216), - [anon_sym_rlock] = ACTIONS(4216), - [anon_sym_unsafe] = ACTIONS(4216), - [anon_sym_sql] = ACTIONS(4216), - [sym_int_literal] = ACTIONS(4216), - [sym_float_literal] = ACTIONS(4216), - [sym_rune_literal] = ACTIONS(4216), - [anon_sym_AT] = ACTIONS(4216), - [anon_sym_shared] = ACTIONS(4216), - [anon_sym_map_LBRACK] = ACTIONS(4216), - [anon_sym_chan] = ACTIONS(4216), - [anon_sym_thread] = ACTIONS(4216), - [anon_sym_atomic] = ACTIONS(4216), - [anon_sym_assert] = ACTIONS(4216), - [anon_sym_defer] = ACTIONS(4216), - [anon_sym_goto] = ACTIONS(4216), - [anon_sym_break] = ACTIONS(4216), - [anon_sym_continue] = ACTIONS(4216), - [anon_sym_return] = ACTIONS(4216), - [anon_sym_DOLLARfor] = ACTIONS(4216), - [anon_sym_for] = ACTIONS(4216), - [anon_sym_POUND] = ACTIONS(4216), - [anon_sym_asm] = ACTIONS(4216), - [anon_sym_AT_LBRACK] = ACTIONS(4216), - [sym___double_quote] = ACTIONS(4216), - [sym___single_quote] = ACTIONS(4216), - [sym___c_double_quote] = ACTIONS(4216), - [sym___c_single_quote] = ACTIONS(4216), - [sym___r_double_quote] = ACTIONS(4216), - [sym___r_single_quote] = ACTIONS(4216), - }, - [1566] = { - [ts_builtin_sym_end] = ACTIONS(4218), - [sym_identifier] = ACTIONS(4220), - [anon_sym_LF] = ACTIONS(4220), - [anon_sym_CR] = ACTIONS(4220), - [anon_sym_CR_LF] = ACTIONS(4220), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4220), - [anon_sym_LBRACE] = ACTIONS(4220), - [anon_sym_const] = ACTIONS(4220), - [anon_sym_LPAREN] = ACTIONS(4220), - [anon_sym___global] = ACTIONS(4220), - [anon_sym_type] = ACTIONS(4220), - [anon_sym_fn] = ACTIONS(4220), - [anon_sym_PLUS] = ACTIONS(4220), - [anon_sym_DASH] = ACTIONS(4220), - [anon_sym_STAR] = ACTIONS(4220), - [anon_sym_struct] = ACTIONS(4220), - [anon_sym_union] = ACTIONS(4220), - [anon_sym_pub] = ACTIONS(4220), - [anon_sym_mut] = ACTIONS(4220), - [anon_sym_enum] = ACTIONS(4220), - [anon_sym_interface] = ACTIONS(4220), - [anon_sym_QMARK] = ACTIONS(4220), - [anon_sym_BANG] = ACTIONS(4220), - [anon_sym_go] = ACTIONS(4220), - [anon_sym_spawn] = ACTIONS(4220), - [anon_sym_json_DOTdecode] = ACTIONS(4220), - [anon_sym_LBRACK2] = ACTIONS(4220), - [anon_sym_TILDE] = ACTIONS(4220), - [anon_sym_CARET] = ACTIONS(4220), - [anon_sym_AMP] = ACTIONS(4220), - [anon_sym_LT_DASH] = ACTIONS(4220), - [sym_none] = ACTIONS(4220), - [sym_true] = ACTIONS(4220), - [sym_false] = ACTIONS(4220), - [sym_nil] = ACTIONS(4220), - [anon_sym_if] = ACTIONS(4220), - [anon_sym_DOLLARif] = ACTIONS(4220), - [anon_sym_match] = ACTIONS(4220), - [anon_sym_select] = ACTIONS(4220), - [anon_sym_lock] = ACTIONS(4220), - [anon_sym_rlock] = ACTIONS(4220), - [anon_sym_unsafe] = ACTIONS(4220), - [anon_sym_sql] = ACTIONS(4220), - [sym_int_literal] = ACTIONS(4220), - [sym_float_literal] = ACTIONS(4220), - [sym_rune_literal] = ACTIONS(4220), - [anon_sym_AT] = ACTIONS(4220), - [anon_sym_shared] = ACTIONS(4220), - [anon_sym_map_LBRACK] = ACTIONS(4220), - [anon_sym_chan] = ACTIONS(4220), - [anon_sym_thread] = ACTIONS(4220), - [anon_sym_atomic] = ACTIONS(4220), - [anon_sym_assert] = ACTIONS(4220), - [anon_sym_defer] = ACTIONS(4220), - [anon_sym_goto] = ACTIONS(4220), - [anon_sym_break] = ACTIONS(4220), - [anon_sym_continue] = ACTIONS(4220), - [anon_sym_return] = ACTIONS(4220), - [anon_sym_DOLLARfor] = ACTIONS(4220), - [anon_sym_for] = ACTIONS(4220), - [anon_sym_POUND] = ACTIONS(4220), - [anon_sym_asm] = ACTIONS(4220), - [anon_sym_AT_LBRACK] = ACTIONS(4220), - [sym___double_quote] = ACTIONS(4220), - [sym___single_quote] = ACTIONS(4220), - [sym___c_double_quote] = ACTIONS(4220), - [sym___c_single_quote] = ACTIONS(4220), - [sym___r_double_quote] = ACTIONS(4220), - [sym___r_single_quote] = ACTIONS(4220), - }, - [1567] = { - [ts_builtin_sym_end] = ACTIONS(4222), - [sym_identifier] = ACTIONS(4224), - [anon_sym_LF] = ACTIONS(4224), - [anon_sym_CR] = ACTIONS(4224), - [anon_sym_CR_LF] = ACTIONS(4224), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4224), - [anon_sym_const] = ACTIONS(4224), - [anon_sym_LPAREN] = ACTIONS(4224), - [anon_sym___global] = ACTIONS(4224), - [anon_sym_type] = ACTIONS(4224), - [anon_sym_fn] = ACTIONS(4224), - [anon_sym_PLUS] = ACTIONS(4224), - [anon_sym_DASH] = ACTIONS(4224), - [anon_sym_STAR] = ACTIONS(4224), - [anon_sym_struct] = ACTIONS(4224), - [anon_sym_union] = ACTIONS(4224), - [anon_sym_pub] = ACTIONS(4224), - [anon_sym_mut] = ACTIONS(4224), - [anon_sym_enum] = ACTIONS(4224), - [anon_sym_interface] = ACTIONS(4224), - [anon_sym_QMARK] = ACTIONS(4224), - [anon_sym_BANG] = ACTIONS(4224), - [anon_sym_go] = ACTIONS(4224), - [anon_sym_spawn] = ACTIONS(4224), - [anon_sym_json_DOTdecode] = ACTIONS(4224), - [anon_sym_LBRACK2] = ACTIONS(4224), - [anon_sym_TILDE] = ACTIONS(4224), - [anon_sym_CARET] = ACTIONS(4224), - [anon_sym_AMP] = ACTIONS(4224), - [anon_sym_LT_DASH] = ACTIONS(4224), - [sym_none] = ACTIONS(4224), - [sym_true] = ACTIONS(4224), - [sym_false] = ACTIONS(4224), - [sym_nil] = ACTIONS(4224), - [anon_sym_if] = ACTIONS(4224), - [anon_sym_DOLLARif] = ACTIONS(4224), - [anon_sym_match] = ACTIONS(4224), - [anon_sym_select] = ACTIONS(4224), - [anon_sym_lock] = ACTIONS(4224), - [anon_sym_rlock] = ACTIONS(4224), - [anon_sym_unsafe] = ACTIONS(4224), - [anon_sym_sql] = ACTIONS(4224), - [sym_int_literal] = ACTIONS(4224), - [sym_float_literal] = ACTIONS(4224), - [sym_rune_literal] = ACTIONS(4224), - [anon_sym_AT] = ACTIONS(4224), - [anon_sym_shared] = ACTIONS(4224), - [anon_sym_map_LBRACK] = ACTIONS(4224), - [anon_sym_chan] = ACTIONS(4224), - [anon_sym_thread] = ACTIONS(4224), - [anon_sym_atomic] = ACTIONS(4224), - [anon_sym_assert] = ACTIONS(4224), - [anon_sym_defer] = ACTIONS(4224), - [anon_sym_goto] = ACTIONS(4224), - [anon_sym_break] = ACTIONS(4224), - [anon_sym_continue] = ACTIONS(4224), - [anon_sym_return] = ACTIONS(4224), - [anon_sym_DOLLARfor] = ACTIONS(4224), - [anon_sym_for] = ACTIONS(4224), - [anon_sym_POUND] = ACTIONS(4224), - [anon_sym_asm] = ACTIONS(4224), - [anon_sym_AT_LBRACK] = ACTIONS(4224), - [sym___double_quote] = ACTIONS(4224), - [sym___single_quote] = ACTIONS(4224), - [sym___c_double_quote] = ACTIONS(4224), - [sym___c_single_quote] = ACTIONS(4224), - [sym___r_double_quote] = ACTIONS(4224), - [sym___r_single_quote] = ACTIONS(4224), - }, - [1568] = { - [ts_builtin_sym_end] = ACTIONS(2728), - [sym_identifier] = ACTIONS(2730), - [anon_sym_LF] = ACTIONS(2730), - [anon_sym_CR] = ACTIONS(2730), - [anon_sym_CR_LF] = ACTIONS(2730), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_LBRACE] = ACTIONS(2730), - [anon_sym_const] = ACTIONS(2730), - [anon_sym_LPAREN] = ACTIONS(2730), - [anon_sym___global] = ACTIONS(2730), - [anon_sym_type] = ACTIONS(2730), - [anon_sym_fn] = ACTIONS(2730), - [anon_sym_PLUS] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_STAR] = ACTIONS(2730), - [anon_sym_struct] = ACTIONS(2730), - [anon_sym_union] = ACTIONS(2730), - [anon_sym_pub] = ACTIONS(2730), - [anon_sym_mut] = ACTIONS(2730), - [anon_sym_enum] = ACTIONS(2730), - [anon_sym_interface] = ACTIONS(2730), - [anon_sym_QMARK] = ACTIONS(2730), - [anon_sym_BANG] = ACTIONS(2730), - [anon_sym_go] = ACTIONS(2730), - [anon_sym_spawn] = ACTIONS(2730), - [anon_sym_json_DOTdecode] = ACTIONS(2730), - [anon_sym_LBRACK2] = ACTIONS(2730), - [anon_sym_TILDE] = ACTIONS(2730), - [anon_sym_CARET] = ACTIONS(2730), - [anon_sym_AMP] = ACTIONS(2730), - [anon_sym_LT_DASH] = ACTIONS(2730), - [sym_none] = ACTIONS(2730), - [sym_true] = ACTIONS(2730), - [sym_false] = ACTIONS(2730), - [sym_nil] = ACTIONS(2730), - [anon_sym_if] = ACTIONS(2730), - [anon_sym_DOLLARif] = ACTIONS(2730), - [anon_sym_match] = ACTIONS(2730), - [anon_sym_select] = ACTIONS(2730), - [anon_sym_lock] = ACTIONS(2730), - [anon_sym_rlock] = ACTIONS(2730), - [anon_sym_unsafe] = ACTIONS(2730), - [anon_sym_sql] = ACTIONS(2730), - [sym_int_literal] = ACTIONS(2730), - [sym_float_literal] = ACTIONS(2730), - [sym_rune_literal] = ACTIONS(2730), - [anon_sym_AT] = ACTIONS(2730), - [anon_sym_shared] = ACTIONS(2730), - [anon_sym_map_LBRACK] = ACTIONS(2730), - [anon_sym_chan] = ACTIONS(2730), - [anon_sym_thread] = ACTIONS(2730), - [anon_sym_atomic] = ACTIONS(2730), - [anon_sym_assert] = ACTIONS(2730), - [anon_sym_defer] = ACTIONS(2730), - [anon_sym_goto] = ACTIONS(2730), - [anon_sym_break] = ACTIONS(2730), - [anon_sym_continue] = ACTIONS(2730), - [anon_sym_return] = ACTIONS(2730), - [anon_sym_DOLLARfor] = ACTIONS(2730), - [anon_sym_for] = ACTIONS(2730), - [anon_sym_POUND] = ACTIONS(2730), - [anon_sym_asm] = ACTIONS(2730), - [anon_sym_AT_LBRACK] = ACTIONS(2730), - [sym___double_quote] = ACTIONS(2730), - [sym___single_quote] = ACTIONS(2730), - [sym___c_double_quote] = ACTIONS(2730), - [sym___c_single_quote] = ACTIONS(2730), - [sym___r_double_quote] = ACTIONS(2730), - [sym___r_single_quote] = ACTIONS(2730), - }, - [1569] = { - [ts_builtin_sym_end] = ACTIONS(4226), - [sym_identifier] = ACTIONS(4228), - [anon_sym_LF] = ACTIONS(4228), - [anon_sym_CR] = ACTIONS(4228), - [anon_sym_CR_LF] = ACTIONS(4228), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4228), - [anon_sym_LBRACE] = ACTIONS(4228), - [anon_sym_const] = ACTIONS(4228), - [anon_sym_LPAREN] = ACTIONS(4228), - [anon_sym___global] = ACTIONS(4228), - [anon_sym_type] = ACTIONS(4228), - [anon_sym_fn] = ACTIONS(4228), - [anon_sym_PLUS] = ACTIONS(4228), - [anon_sym_DASH] = ACTIONS(4228), - [anon_sym_STAR] = ACTIONS(4228), - [anon_sym_struct] = ACTIONS(4228), - [anon_sym_union] = ACTIONS(4228), - [anon_sym_pub] = ACTIONS(4228), - [anon_sym_mut] = ACTIONS(4228), - [anon_sym_enum] = ACTIONS(4228), - [anon_sym_interface] = ACTIONS(4228), - [anon_sym_QMARK] = ACTIONS(4228), - [anon_sym_BANG] = ACTIONS(4228), - [anon_sym_go] = ACTIONS(4228), - [anon_sym_spawn] = ACTIONS(4228), - [anon_sym_json_DOTdecode] = ACTIONS(4228), - [anon_sym_LBRACK2] = ACTIONS(4228), - [anon_sym_TILDE] = ACTIONS(4228), - [anon_sym_CARET] = ACTIONS(4228), - [anon_sym_AMP] = ACTIONS(4228), - [anon_sym_LT_DASH] = ACTIONS(4228), - [sym_none] = ACTIONS(4228), - [sym_true] = ACTIONS(4228), - [sym_false] = ACTIONS(4228), - [sym_nil] = ACTIONS(4228), - [anon_sym_if] = ACTIONS(4228), - [anon_sym_DOLLARif] = ACTIONS(4228), - [anon_sym_match] = ACTIONS(4228), - [anon_sym_select] = ACTIONS(4228), - [anon_sym_lock] = ACTIONS(4228), - [anon_sym_rlock] = ACTIONS(4228), - [anon_sym_unsafe] = ACTIONS(4228), - [anon_sym_sql] = ACTIONS(4228), - [sym_int_literal] = ACTIONS(4228), - [sym_float_literal] = ACTIONS(4228), - [sym_rune_literal] = ACTIONS(4228), - [anon_sym_AT] = ACTIONS(4228), - [anon_sym_shared] = ACTIONS(4228), - [anon_sym_map_LBRACK] = ACTIONS(4228), - [anon_sym_chan] = ACTIONS(4228), - [anon_sym_thread] = ACTIONS(4228), - [anon_sym_atomic] = ACTIONS(4228), - [anon_sym_assert] = ACTIONS(4228), - [anon_sym_defer] = ACTIONS(4228), - [anon_sym_goto] = ACTIONS(4228), - [anon_sym_break] = ACTIONS(4228), - [anon_sym_continue] = ACTIONS(4228), - [anon_sym_return] = ACTIONS(4228), - [anon_sym_DOLLARfor] = ACTIONS(4228), - [anon_sym_for] = ACTIONS(4228), - [anon_sym_POUND] = ACTIONS(4228), - [anon_sym_asm] = ACTIONS(4228), - [anon_sym_AT_LBRACK] = ACTIONS(4228), - [sym___double_quote] = ACTIONS(4228), - [sym___single_quote] = ACTIONS(4228), - [sym___c_double_quote] = ACTIONS(4228), - [sym___c_single_quote] = ACTIONS(4228), - [sym___r_double_quote] = ACTIONS(4228), - [sym___r_single_quote] = ACTIONS(4228), - }, - [1570] = { - [ts_builtin_sym_end] = ACTIONS(4230), - [sym_identifier] = ACTIONS(4232), - [anon_sym_LF] = ACTIONS(4232), - [anon_sym_CR] = ACTIONS(4232), - [anon_sym_CR_LF] = ACTIONS(4232), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4232), - [anon_sym_LBRACE] = ACTIONS(4232), - [anon_sym_const] = ACTIONS(4232), - [anon_sym_LPAREN] = ACTIONS(4232), - [anon_sym___global] = ACTIONS(4232), - [anon_sym_type] = ACTIONS(4232), - [anon_sym_fn] = ACTIONS(4232), - [anon_sym_PLUS] = ACTIONS(4232), - [anon_sym_DASH] = ACTIONS(4232), - [anon_sym_STAR] = ACTIONS(4232), - [anon_sym_struct] = ACTIONS(4232), - [anon_sym_union] = ACTIONS(4232), - [anon_sym_pub] = ACTIONS(4232), - [anon_sym_mut] = ACTIONS(4232), - [anon_sym_enum] = ACTIONS(4232), - [anon_sym_interface] = ACTIONS(4232), - [anon_sym_QMARK] = ACTIONS(4232), - [anon_sym_BANG] = ACTIONS(4232), - [anon_sym_go] = ACTIONS(4232), - [anon_sym_spawn] = ACTIONS(4232), - [anon_sym_json_DOTdecode] = ACTIONS(4232), - [anon_sym_LBRACK2] = ACTIONS(4232), - [anon_sym_TILDE] = ACTIONS(4232), - [anon_sym_CARET] = ACTIONS(4232), - [anon_sym_AMP] = ACTIONS(4232), - [anon_sym_LT_DASH] = ACTIONS(4232), - [sym_none] = ACTIONS(4232), - [sym_true] = ACTIONS(4232), - [sym_false] = ACTIONS(4232), - [sym_nil] = ACTIONS(4232), - [anon_sym_if] = ACTIONS(4232), - [anon_sym_DOLLARif] = ACTIONS(4232), - [anon_sym_match] = ACTIONS(4232), - [anon_sym_select] = ACTIONS(4232), - [anon_sym_lock] = ACTIONS(4232), - [anon_sym_rlock] = ACTIONS(4232), - [anon_sym_unsafe] = ACTIONS(4232), - [anon_sym_sql] = ACTIONS(4232), - [sym_int_literal] = ACTIONS(4232), - [sym_float_literal] = ACTIONS(4232), - [sym_rune_literal] = ACTIONS(4232), - [anon_sym_AT] = ACTIONS(4232), - [anon_sym_shared] = ACTIONS(4232), - [anon_sym_map_LBRACK] = ACTIONS(4232), - [anon_sym_chan] = ACTIONS(4232), - [anon_sym_thread] = ACTIONS(4232), - [anon_sym_atomic] = ACTIONS(4232), - [anon_sym_assert] = ACTIONS(4232), - [anon_sym_defer] = ACTIONS(4232), - [anon_sym_goto] = ACTIONS(4232), - [anon_sym_break] = ACTIONS(4232), - [anon_sym_continue] = ACTIONS(4232), - [anon_sym_return] = ACTIONS(4232), - [anon_sym_DOLLARfor] = ACTIONS(4232), - [anon_sym_for] = ACTIONS(4232), - [anon_sym_POUND] = ACTIONS(4232), - [anon_sym_asm] = ACTIONS(4232), - [anon_sym_AT_LBRACK] = ACTIONS(4232), - [sym___double_quote] = ACTIONS(4232), - [sym___single_quote] = ACTIONS(4232), - [sym___c_double_quote] = ACTIONS(4232), - [sym___c_single_quote] = ACTIONS(4232), - [sym___r_double_quote] = ACTIONS(4232), - [sym___r_single_quote] = ACTIONS(4232), - }, - [1571] = { - [sym_import_declaration] = STATE(1564), - [aux_sym_import_list_repeat1] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(4234), - [sym_identifier] = ACTIONS(4236), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(11), - [anon_sym_DOT] = ACTIONS(4236), - [anon_sym_LBRACE] = ACTIONS(4234), - [anon_sym_const] = ACTIONS(4236), - [anon_sym_LPAREN] = ACTIONS(4234), - [anon_sym___global] = ACTIONS(4236), - [anon_sym_type] = ACTIONS(4236), - [anon_sym_fn] = ACTIONS(4236), - [anon_sym_PLUS] = ACTIONS(4234), - [anon_sym_DASH] = ACTIONS(4234), - [anon_sym_STAR] = ACTIONS(4234), - [anon_sym_struct] = ACTIONS(4236), - [anon_sym_union] = ACTIONS(4236), - [anon_sym_pub] = ACTIONS(4236), - [anon_sym_mut] = ACTIONS(4236), - [anon_sym_enum] = ACTIONS(4236), - [anon_sym_interface] = ACTIONS(4236), - [anon_sym_QMARK] = ACTIONS(4234), - [anon_sym_BANG] = ACTIONS(4234), - [anon_sym_go] = ACTIONS(4236), - [anon_sym_spawn] = ACTIONS(4236), - [anon_sym_json_DOTdecode] = ACTIONS(4234), - [anon_sym_LBRACK2] = ACTIONS(4234), - [anon_sym_TILDE] = ACTIONS(4234), - [anon_sym_CARET] = ACTIONS(4234), - [anon_sym_AMP] = ACTIONS(4234), - [anon_sym_LT_DASH] = ACTIONS(4234), - [sym_none] = ACTIONS(4236), - [sym_true] = ACTIONS(4236), - [sym_false] = ACTIONS(4236), - [sym_nil] = ACTIONS(4236), - [anon_sym_if] = ACTIONS(4236), - [anon_sym_DOLLARif] = ACTIONS(4236), - [anon_sym_match] = ACTIONS(4236), - [anon_sym_select] = ACTIONS(4236), - [anon_sym_lock] = ACTIONS(4236), - [anon_sym_rlock] = ACTIONS(4236), - [anon_sym_unsafe] = ACTIONS(4236), - [anon_sym_sql] = ACTIONS(4236), - [sym_int_literal] = ACTIONS(4236), - [sym_float_literal] = ACTIONS(4234), - [sym_rune_literal] = ACTIONS(4234), - [anon_sym_AT] = ACTIONS(4236), - [anon_sym_shared] = ACTIONS(4236), - [anon_sym_map_LBRACK] = ACTIONS(4234), - [anon_sym_chan] = ACTIONS(4236), - [anon_sym_thread] = ACTIONS(4236), - [anon_sym_atomic] = ACTIONS(4236), - [anon_sym_assert] = ACTIONS(4236), - [anon_sym_defer] = ACTIONS(4236), - [anon_sym_goto] = ACTIONS(4236), - [anon_sym_break] = ACTIONS(4236), - [anon_sym_continue] = ACTIONS(4236), - [anon_sym_return] = ACTIONS(4236), - [anon_sym_DOLLARfor] = ACTIONS(4236), - [anon_sym_for] = ACTIONS(4236), - [anon_sym_POUND] = ACTIONS(4236), - [anon_sym_asm] = ACTIONS(4236), - [anon_sym_AT_LBRACK] = ACTIONS(4234), - [sym___double_quote] = ACTIONS(4234), - [sym___single_quote] = ACTIONS(4234), - [sym___c_double_quote] = ACTIONS(4234), - [sym___c_single_quote] = ACTIONS(4234), - [sym___r_double_quote] = ACTIONS(4234), - [sym___r_single_quote] = ACTIONS(4234), - }, - [1572] = { - [ts_builtin_sym_end] = ACTIONS(4238), - [sym_identifier] = ACTIONS(4240), - [anon_sym_LF] = ACTIONS(4240), - [anon_sym_CR] = ACTIONS(4240), - [anon_sym_CR_LF] = ACTIONS(4240), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4240), - [anon_sym_LBRACE] = ACTIONS(4240), - [anon_sym_const] = ACTIONS(4240), - [anon_sym_LPAREN] = ACTIONS(4240), - [anon_sym___global] = ACTIONS(4240), - [anon_sym_type] = ACTIONS(4240), - [anon_sym_fn] = ACTIONS(4240), - [anon_sym_PLUS] = ACTIONS(4240), - [anon_sym_DASH] = ACTIONS(4240), - [anon_sym_STAR] = ACTIONS(4240), - [anon_sym_struct] = ACTIONS(4240), - [anon_sym_union] = ACTIONS(4240), - [anon_sym_pub] = ACTIONS(4240), - [anon_sym_mut] = ACTIONS(4240), - [anon_sym_enum] = ACTIONS(4240), - [anon_sym_interface] = ACTIONS(4240), - [anon_sym_QMARK] = ACTIONS(4240), - [anon_sym_BANG] = ACTIONS(4240), - [anon_sym_go] = ACTIONS(4240), - [anon_sym_spawn] = ACTIONS(4240), - [anon_sym_json_DOTdecode] = ACTIONS(4240), - [anon_sym_LBRACK2] = ACTIONS(4240), - [anon_sym_TILDE] = ACTIONS(4240), - [anon_sym_CARET] = ACTIONS(4240), - [anon_sym_AMP] = ACTIONS(4240), - [anon_sym_LT_DASH] = ACTIONS(4240), - [sym_none] = ACTIONS(4240), - [sym_true] = ACTIONS(4240), - [sym_false] = ACTIONS(4240), - [sym_nil] = ACTIONS(4240), - [anon_sym_if] = ACTIONS(4240), - [anon_sym_DOLLARif] = ACTIONS(4240), - [anon_sym_match] = ACTIONS(4240), - [anon_sym_select] = ACTIONS(4240), - [anon_sym_lock] = ACTIONS(4240), - [anon_sym_rlock] = ACTIONS(4240), - [anon_sym_unsafe] = ACTIONS(4240), - [anon_sym_sql] = ACTIONS(4240), - [sym_int_literal] = ACTIONS(4240), - [sym_float_literal] = ACTIONS(4240), - [sym_rune_literal] = ACTIONS(4240), - [anon_sym_AT] = ACTIONS(4240), - [anon_sym_shared] = ACTIONS(4240), - [anon_sym_map_LBRACK] = ACTIONS(4240), - [anon_sym_chan] = ACTIONS(4240), - [anon_sym_thread] = ACTIONS(4240), - [anon_sym_atomic] = ACTIONS(4240), - [anon_sym_assert] = ACTIONS(4240), - [anon_sym_defer] = ACTIONS(4240), - [anon_sym_goto] = ACTIONS(4240), - [anon_sym_break] = ACTIONS(4240), - [anon_sym_continue] = ACTIONS(4240), - [anon_sym_return] = ACTIONS(4240), - [anon_sym_DOLLARfor] = ACTIONS(4240), - [anon_sym_for] = ACTIONS(4240), - [anon_sym_POUND] = ACTIONS(4240), - [anon_sym_asm] = ACTIONS(4240), - [anon_sym_AT_LBRACK] = ACTIONS(4240), - [sym___double_quote] = ACTIONS(4240), - [sym___single_quote] = ACTIONS(4240), - [sym___c_double_quote] = ACTIONS(4240), - [sym___c_single_quote] = ACTIONS(4240), - [sym___r_double_quote] = ACTIONS(4240), - [sym___r_single_quote] = ACTIONS(4240), - }, - [1573] = { - [ts_builtin_sym_end] = ACTIONS(4242), - [sym_identifier] = ACTIONS(4244), - [anon_sym_LF] = ACTIONS(4244), - [anon_sym_CR] = ACTIONS(4244), - [anon_sym_CR_LF] = ACTIONS(4244), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4244), - [anon_sym_LBRACE] = ACTIONS(4244), - [anon_sym_const] = ACTIONS(4244), - [anon_sym_LPAREN] = ACTIONS(4244), - [anon_sym___global] = ACTIONS(4244), - [anon_sym_type] = ACTIONS(4244), - [anon_sym_fn] = ACTIONS(4244), - [anon_sym_PLUS] = ACTIONS(4244), - [anon_sym_DASH] = ACTIONS(4244), - [anon_sym_STAR] = ACTIONS(4244), - [anon_sym_struct] = ACTIONS(4244), - [anon_sym_union] = ACTIONS(4244), - [anon_sym_pub] = ACTIONS(4244), - [anon_sym_mut] = ACTIONS(4244), - [anon_sym_enum] = ACTIONS(4244), - [anon_sym_interface] = ACTIONS(4244), - [anon_sym_QMARK] = ACTIONS(4244), - [anon_sym_BANG] = ACTIONS(4244), - [anon_sym_go] = ACTIONS(4244), - [anon_sym_spawn] = ACTIONS(4244), - [anon_sym_json_DOTdecode] = ACTIONS(4244), - [anon_sym_LBRACK2] = ACTIONS(4244), - [anon_sym_TILDE] = ACTIONS(4244), - [anon_sym_CARET] = ACTIONS(4244), - [anon_sym_AMP] = ACTIONS(4244), - [anon_sym_LT_DASH] = ACTIONS(4244), - [sym_none] = ACTIONS(4244), - [sym_true] = ACTIONS(4244), - [sym_false] = ACTIONS(4244), - [sym_nil] = ACTIONS(4244), - [anon_sym_if] = ACTIONS(4244), - [anon_sym_DOLLARif] = ACTIONS(4244), - [anon_sym_match] = ACTIONS(4244), - [anon_sym_select] = ACTIONS(4244), - [anon_sym_lock] = ACTIONS(4244), - [anon_sym_rlock] = ACTIONS(4244), - [anon_sym_unsafe] = ACTIONS(4244), - [anon_sym_sql] = ACTIONS(4244), - [sym_int_literal] = ACTIONS(4244), - [sym_float_literal] = ACTIONS(4244), - [sym_rune_literal] = ACTIONS(4244), - [anon_sym_AT] = ACTIONS(4244), - [anon_sym_shared] = ACTIONS(4244), - [anon_sym_map_LBRACK] = ACTIONS(4244), - [anon_sym_chan] = ACTIONS(4244), - [anon_sym_thread] = ACTIONS(4244), - [anon_sym_atomic] = ACTIONS(4244), - [anon_sym_assert] = ACTIONS(4244), - [anon_sym_defer] = ACTIONS(4244), - [anon_sym_goto] = ACTIONS(4244), - [anon_sym_break] = ACTIONS(4244), - [anon_sym_continue] = ACTIONS(4244), - [anon_sym_return] = ACTIONS(4244), - [anon_sym_DOLLARfor] = ACTIONS(4244), - [anon_sym_for] = ACTIONS(4244), - [anon_sym_POUND] = ACTIONS(4244), - [anon_sym_asm] = ACTIONS(4244), - [anon_sym_AT_LBRACK] = ACTIONS(4244), - [sym___double_quote] = ACTIONS(4244), - [sym___single_quote] = ACTIONS(4244), - [sym___c_double_quote] = ACTIONS(4244), - [sym___c_single_quote] = ACTIONS(4244), - [sym___r_double_quote] = ACTIONS(4244), - [sym___r_single_quote] = ACTIONS(4244), - }, - [1574] = { - [ts_builtin_sym_end] = ACTIONS(4246), - [sym_identifier] = ACTIONS(4248), - [anon_sym_LF] = ACTIONS(4248), - [anon_sym_CR] = ACTIONS(4248), - [anon_sym_CR_LF] = ACTIONS(4248), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4248), - [anon_sym_LBRACE] = ACTIONS(4248), - [anon_sym_const] = ACTIONS(4248), - [anon_sym_LPAREN] = ACTIONS(4248), - [anon_sym___global] = ACTIONS(4248), - [anon_sym_type] = ACTIONS(4248), - [anon_sym_fn] = ACTIONS(4248), - [anon_sym_PLUS] = ACTIONS(4248), - [anon_sym_DASH] = ACTIONS(4248), - [anon_sym_STAR] = ACTIONS(4248), - [anon_sym_struct] = ACTIONS(4248), - [anon_sym_union] = ACTIONS(4248), - [anon_sym_pub] = ACTIONS(4248), - [anon_sym_mut] = ACTIONS(4248), - [anon_sym_enum] = ACTIONS(4248), - [anon_sym_interface] = ACTIONS(4248), - [anon_sym_QMARK] = ACTIONS(4248), - [anon_sym_BANG] = ACTIONS(4248), - [anon_sym_go] = ACTIONS(4248), - [anon_sym_spawn] = ACTIONS(4248), - [anon_sym_json_DOTdecode] = ACTIONS(4248), - [anon_sym_LBRACK2] = ACTIONS(4248), - [anon_sym_TILDE] = ACTIONS(4248), - [anon_sym_CARET] = ACTIONS(4248), - [anon_sym_AMP] = ACTIONS(4248), - [anon_sym_LT_DASH] = ACTIONS(4248), - [sym_none] = ACTIONS(4248), - [sym_true] = ACTIONS(4248), - [sym_false] = ACTIONS(4248), - [sym_nil] = ACTIONS(4248), - [anon_sym_if] = ACTIONS(4248), - [anon_sym_DOLLARif] = ACTIONS(4248), - [anon_sym_match] = ACTIONS(4248), - [anon_sym_select] = ACTIONS(4248), - [anon_sym_lock] = ACTIONS(4248), - [anon_sym_rlock] = ACTIONS(4248), - [anon_sym_unsafe] = ACTIONS(4248), - [anon_sym_sql] = ACTIONS(4248), - [sym_int_literal] = ACTIONS(4248), - [sym_float_literal] = ACTIONS(4248), - [sym_rune_literal] = ACTIONS(4248), - [anon_sym_AT] = ACTIONS(4248), - [anon_sym_shared] = ACTIONS(4248), - [anon_sym_map_LBRACK] = ACTIONS(4248), - [anon_sym_chan] = ACTIONS(4248), - [anon_sym_thread] = ACTIONS(4248), - [anon_sym_atomic] = ACTIONS(4248), - [anon_sym_assert] = ACTIONS(4248), - [anon_sym_defer] = ACTIONS(4248), - [anon_sym_goto] = ACTIONS(4248), - [anon_sym_break] = ACTIONS(4248), - [anon_sym_continue] = ACTIONS(4248), - [anon_sym_return] = ACTIONS(4248), - [anon_sym_DOLLARfor] = ACTIONS(4248), - [anon_sym_for] = ACTIONS(4248), - [anon_sym_POUND] = ACTIONS(4248), - [anon_sym_asm] = ACTIONS(4248), - [anon_sym_AT_LBRACK] = ACTIONS(4248), - [sym___double_quote] = ACTIONS(4248), - [sym___single_quote] = ACTIONS(4248), - [sym___c_double_quote] = ACTIONS(4248), - [sym___c_single_quote] = ACTIONS(4248), - [sym___r_double_quote] = ACTIONS(4248), - [sym___r_single_quote] = ACTIONS(4248), - }, - [1575] = { - [ts_builtin_sym_end] = ACTIONS(4250), - [sym_identifier] = ACTIONS(4252), - [anon_sym_LF] = ACTIONS(4252), - [anon_sym_CR] = ACTIONS(4252), - [anon_sym_CR_LF] = ACTIONS(4252), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4252), - [anon_sym_LBRACE] = ACTIONS(4252), - [anon_sym_const] = ACTIONS(4252), - [anon_sym_LPAREN] = ACTIONS(4252), - [anon_sym___global] = ACTIONS(4252), - [anon_sym_type] = ACTIONS(4252), - [anon_sym_fn] = ACTIONS(4252), - [anon_sym_PLUS] = ACTIONS(4252), - [anon_sym_DASH] = ACTIONS(4252), - [anon_sym_STAR] = ACTIONS(4252), - [anon_sym_struct] = ACTIONS(4252), - [anon_sym_union] = ACTIONS(4252), - [anon_sym_pub] = ACTIONS(4252), - [anon_sym_mut] = ACTIONS(4252), - [anon_sym_enum] = ACTIONS(4252), - [anon_sym_interface] = ACTIONS(4252), - [anon_sym_QMARK] = ACTIONS(4252), - [anon_sym_BANG] = ACTIONS(4252), - [anon_sym_go] = ACTIONS(4252), - [anon_sym_spawn] = ACTIONS(4252), - [anon_sym_json_DOTdecode] = ACTIONS(4252), - [anon_sym_LBRACK2] = ACTIONS(4252), - [anon_sym_TILDE] = ACTIONS(4252), - [anon_sym_CARET] = ACTIONS(4252), - [anon_sym_AMP] = ACTIONS(4252), - [anon_sym_LT_DASH] = ACTIONS(4252), - [sym_none] = ACTIONS(4252), - [sym_true] = ACTIONS(4252), - [sym_false] = ACTIONS(4252), - [sym_nil] = ACTIONS(4252), - [anon_sym_if] = ACTIONS(4252), - [anon_sym_DOLLARif] = ACTIONS(4252), - [anon_sym_match] = ACTIONS(4252), - [anon_sym_select] = ACTIONS(4252), - [anon_sym_lock] = ACTIONS(4252), - [anon_sym_rlock] = ACTIONS(4252), - [anon_sym_unsafe] = ACTIONS(4252), - [anon_sym_sql] = ACTIONS(4252), - [sym_int_literal] = ACTIONS(4252), - [sym_float_literal] = ACTIONS(4252), - [sym_rune_literal] = ACTIONS(4252), - [anon_sym_AT] = ACTIONS(4252), - [anon_sym_shared] = ACTIONS(4252), - [anon_sym_map_LBRACK] = ACTIONS(4252), - [anon_sym_chan] = ACTIONS(4252), - [anon_sym_thread] = ACTIONS(4252), - [anon_sym_atomic] = ACTIONS(4252), - [anon_sym_assert] = ACTIONS(4252), - [anon_sym_defer] = ACTIONS(4252), - [anon_sym_goto] = ACTIONS(4252), - [anon_sym_break] = ACTIONS(4252), - [anon_sym_continue] = ACTIONS(4252), - [anon_sym_return] = ACTIONS(4252), - [anon_sym_DOLLARfor] = ACTIONS(4252), - [anon_sym_for] = ACTIONS(4252), - [anon_sym_POUND] = ACTIONS(4252), - [anon_sym_asm] = ACTIONS(4252), - [anon_sym_AT_LBRACK] = ACTIONS(4252), - [sym___double_quote] = ACTIONS(4252), - [sym___single_quote] = ACTIONS(4252), - [sym___c_double_quote] = ACTIONS(4252), - [sym___c_single_quote] = ACTIONS(4252), - [sym___r_double_quote] = ACTIONS(4252), - [sym___r_single_quote] = ACTIONS(4252), - }, - [1576] = { - [ts_builtin_sym_end] = ACTIONS(4254), - [sym_identifier] = ACTIONS(4256), - [anon_sym_LF] = ACTIONS(4256), - [anon_sym_CR] = ACTIONS(4256), - [anon_sym_CR_LF] = ACTIONS(4256), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4256), - [anon_sym_LBRACE] = ACTIONS(4256), - [anon_sym_const] = ACTIONS(4256), - [anon_sym_LPAREN] = ACTIONS(4256), - [anon_sym___global] = ACTIONS(4256), - [anon_sym_type] = ACTIONS(4256), - [anon_sym_fn] = ACTIONS(4256), - [anon_sym_PLUS] = ACTIONS(4256), - [anon_sym_DASH] = ACTIONS(4256), - [anon_sym_STAR] = ACTIONS(4256), - [anon_sym_struct] = ACTIONS(4256), - [anon_sym_union] = ACTIONS(4256), - [anon_sym_pub] = ACTIONS(4256), - [anon_sym_mut] = ACTIONS(4256), - [anon_sym_enum] = ACTIONS(4256), - [anon_sym_interface] = ACTIONS(4256), - [anon_sym_QMARK] = ACTIONS(4256), - [anon_sym_BANG] = ACTIONS(4256), - [anon_sym_go] = ACTIONS(4256), - [anon_sym_spawn] = ACTIONS(4256), - [anon_sym_json_DOTdecode] = ACTIONS(4256), - [anon_sym_LBRACK2] = ACTIONS(4256), - [anon_sym_TILDE] = ACTIONS(4256), - [anon_sym_CARET] = ACTIONS(4256), - [anon_sym_AMP] = ACTIONS(4256), - [anon_sym_LT_DASH] = ACTIONS(4256), - [sym_none] = ACTIONS(4256), - [sym_true] = ACTIONS(4256), - [sym_false] = ACTIONS(4256), - [sym_nil] = ACTIONS(4256), - [anon_sym_if] = ACTIONS(4256), - [anon_sym_DOLLARif] = ACTIONS(4256), - [anon_sym_match] = ACTIONS(4256), - [anon_sym_select] = ACTIONS(4256), - [anon_sym_lock] = ACTIONS(4256), - [anon_sym_rlock] = ACTIONS(4256), - [anon_sym_unsafe] = ACTIONS(4256), - [anon_sym_sql] = ACTIONS(4256), - [sym_int_literal] = ACTIONS(4256), - [sym_float_literal] = ACTIONS(4256), - [sym_rune_literal] = ACTIONS(4256), - [anon_sym_AT] = ACTIONS(4256), - [anon_sym_shared] = ACTIONS(4256), - [anon_sym_map_LBRACK] = ACTIONS(4256), - [anon_sym_chan] = ACTIONS(4256), - [anon_sym_thread] = ACTIONS(4256), - [anon_sym_atomic] = ACTIONS(4256), - [anon_sym_assert] = ACTIONS(4256), - [anon_sym_defer] = ACTIONS(4256), - [anon_sym_goto] = ACTIONS(4256), - [anon_sym_break] = ACTIONS(4256), - [anon_sym_continue] = ACTIONS(4256), - [anon_sym_return] = ACTIONS(4256), - [anon_sym_DOLLARfor] = ACTIONS(4256), - [anon_sym_for] = ACTIONS(4256), - [anon_sym_POUND] = ACTIONS(4256), - [anon_sym_asm] = ACTIONS(4256), - [anon_sym_AT_LBRACK] = ACTIONS(4256), - [sym___double_quote] = ACTIONS(4256), - [sym___single_quote] = ACTIONS(4256), - [sym___c_double_quote] = ACTIONS(4256), - [sym___c_single_quote] = ACTIONS(4256), - [sym___r_double_quote] = ACTIONS(4256), - [sym___r_single_quote] = ACTIONS(4256), - }, - [1577] = { - [ts_builtin_sym_end] = ACTIONS(4258), - [sym_identifier] = ACTIONS(4260), - [anon_sym_LF] = ACTIONS(4260), - [anon_sym_CR] = ACTIONS(4260), - [anon_sym_CR_LF] = ACTIONS(4260), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4260), - [anon_sym_LBRACE] = ACTIONS(4260), - [anon_sym_const] = ACTIONS(4260), - [anon_sym_LPAREN] = ACTIONS(4260), - [anon_sym___global] = ACTIONS(4260), - [anon_sym_type] = ACTIONS(4260), - [anon_sym_fn] = ACTIONS(4260), - [anon_sym_PLUS] = ACTIONS(4260), - [anon_sym_DASH] = ACTIONS(4260), - [anon_sym_STAR] = ACTIONS(4260), - [anon_sym_struct] = ACTIONS(4260), - [anon_sym_union] = ACTIONS(4260), - [anon_sym_pub] = ACTIONS(4260), - [anon_sym_mut] = ACTIONS(4260), - [anon_sym_enum] = ACTIONS(4260), - [anon_sym_interface] = ACTIONS(4260), - [anon_sym_QMARK] = ACTIONS(4260), - [anon_sym_BANG] = ACTIONS(4260), - [anon_sym_go] = ACTIONS(4260), - [anon_sym_spawn] = ACTIONS(4260), - [anon_sym_json_DOTdecode] = ACTIONS(4260), - [anon_sym_LBRACK2] = ACTIONS(4260), - [anon_sym_TILDE] = ACTIONS(4260), - [anon_sym_CARET] = ACTIONS(4260), - [anon_sym_AMP] = ACTIONS(4260), - [anon_sym_LT_DASH] = ACTIONS(4260), - [sym_none] = ACTIONS(4260), - [sym_true] = ACTIONS(4260), - [sym_false] = ACTIONS(4260), - [sym_nil] = ACTIONS(4260), - [anon_sym_if] = ACTIONS(4260), - [anon_sym_DOLLARif] = ACTIONS(4260), - [anon_sym_match] = ACTIONS(4260), - [anon_sym_select] = ACTIONS(4260), - [anon_sym_lock] = ACTIONS(4260), - [anon_sym_rlock] = ACTIONS(4260), - [anon_sym_unsafe] = ACTIONS(4260), - [anon_sym_sql] = ACTIONS(4260), - [sym_int_literal] = ACTIONS(4260), - [sym_float_literal] = ACTIONS(4260), - [sym_rune_literal] = ACTIONS(4260), - [anon_sym_AT] = ACTIONS(4260), - [anon_sym_shared] = ACTIONS(4260), - [anon_sym_map_LBRACK] = ACTIONS(4260), - [anon_sym_chan] = ACTIONS(4260), - [anon_sym_thread] = ACTIONS(4260), - [anon_sym_atomic] = ACTIONS(4260), - [anon_sym_assert] = ACTIONS(4260), - [anon_sym_defer] = ACTIONS(4260), - [anon_sym_goto] = ACTIONS(4260), - [anon_sym_break] = ACTIONS(4260), - [anon_sym_continue] = ACTIONS(4260), - [anon_sym_return] = ACTIONS(4260), - [anon_sym_DOLLARfor] = ACTIONS(4260), - [anon_sym_for] = ACTIONS(4260), - [anon_sym_POUND] = ACTIONS(4260), - [anon_sym_asm] = ACTIONS(4260), - [anon_sym_AT_LBRACK] = ACTIONS(4260), - [sym___double_quote] = ACTIONS(4260), - [sym___single_quote] = ACTIONS(4260), - [sym___c_double_quote] = ACTIONS(4260), - [sym___c_single_quote] = ACTIONS(4260), - [sym___r_double_quote] = ACTIONS(4260), - [sym___r_single_quote] = ACTIONS(4260), - }, - [1578] = { - [ts_builtin_sym_end] = ACTIONS(4262), - [sym_identifier] = ACTIONS(4264), - [anon_sym_LF] = ACTIONS(4264), - [anon_sym_CR] = ACTIONS(4264), - [anon_sym_CR_LF] = ACTIONS(4264), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4264), - [anon_sym_LBRACE] = ACTIONS(4264), - [anon_sym_const] = ACTIONS(4264), - [anon_sym_LPAREN] = ACTIONS(4264), - [anon_sym___global] = ACTIONS(4264), - [anon_sym_type] = ACTIONS(4264), - [anon_sym_fn] = ACTIONS(4264), - [anon_sym_PLUS] = ACTIONS(4264), - [anon_sym_DASH] = ACTIONS(4264), - [anon_sym_STAR] = ACTIONS(4264), - [anon_sym_struct] = ACTIONS(4264), - [anon_sym_union] = ACTIONS(4264), - [anon_sym_pub] = ACTIONS(4264), - [anon_sym_mut] = ACTIONS(4264), - [anon_sym_enum] = ACTIONS(4264), - [anon_sym_interface] = ACTIONS(4264), - [anon_sym_QMARK] = ACTIONS(4264), - [anon_sym_BANG] = ACTIONS(4264), - [anon_sym_go] = ACTIONS(4264), - [anon_sym_spawn] = ACTIONS(4264), - [anon_sym_json_DOTdecode] = ACTIONS(4264), - [anon_sym_LBRACK2] = ACTIONS(4264), - [anon_sym_TILDE] = ACTIONS(4264), - [anon_sym_CARET] = ACTIONS(4264), - [anon_sym_AMP] = ACTIONS(4264), - [anon_sym_LT_DASH] = ACTIONS(4264), - [sym_none] = ACTIONS(4264), - [sym_true] = ACTIONS(4264), - [sym_false] = ACTIONS(4264), - [sym_nil] = ACTIONS(4264), - [anon_sym_if] = ACTIONS(4264), - [anon_sym_DOLLARif] = ACTIONS(4264), - [anon_sym_match] = ACTIONS(4264), - [anon_sym_select] = ACTIONS(4264), - [anon_sym_lock] = ACTIONS(4264), - [anon_sym_rlock] = ACTIONS(4264), - [anon_sym_unsafe] = ACTIONS(4264), - [anon_sym_sql] = ACTIONS(4264), - [sym_int_literal] = ACTIONS(4264), - [sym_float_literal] = ACTIONS(4264), - [sym_rune_literal] = ACTIONS(4264), - [anon_sym_AT] = ACTIONS(4264), - [anon_sym_shared] = ACTIONS(4264), - [anon_sym_map_LBRACK] = ACTIONS(4264), - [anon_sym_chan] = ACTIONS(4264), - [anon_sym_thread] = ACTIONS(4264), - [anon_sym_atomic] = ACTIONS(4264), - [anon_sym_assert] = ACTIONS(4264), - [anon_sym_defer] = ACTIONS(4264), - [anon_sym_goto] = ACTIONS(4264), - [anon_sym_break] = ACTIONS(4264), - [anon_sym_continue] = ACTIONS(4264), - [anon_sym_return] = ACTIONS(4264), - [anon_sym_DOLLARfor] = ACTIONS(4264), - [anon_sym_for] = ACTIONS(4264), - [anon_sym_POUND] = ACTIONS(4264), - [anon_sym_asm] = ACTIONS(4264), - [anon_sym_AT_LBRACK] = ACTIONS(4264), - [sym___double_quote] = ACTIONS(4264), - [sym___single_quote] = ACTIONS(4264), - [sym___c_double_quote] = ACTIONS(4264), - [sym___c_single_quote] = ACTIONS(4264), - [sym___r_double_quote] = ACTIONS(4264), - [sym___r_single_quote] = ACTIONS(4264), - }, - [1579] = { - [ts_builtin_sym_end] = ACTIONS(4266), - [sym_identifier] = ACTIONS(4268), - [anon_sym_LF] = ACTIONS(4268), - [anon_sym_CR] = ACTIONS(4268), - [anon_sym_CR_LF] = ACTIONS(4268), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4268), - [anon_sym_LBRACE] = ACTIONS(4268), - [anon_sym_const] = ACTIONS(4268), - [anon_sym_LPAREN] = ACTIONS(4268), - [anon_sym___global] = ACTIONS(4268), - [anon_sym_type] = ACTIONS(4268), - [anon_sym_fn] = ACTIONS(4268), - [anon_sym_PLUS] = ACTIONS(4268), - [anon_sym_DASH] = ACTIONS(4268), - [anon_sym_STAR] = ACTIONS(4268), - [anon_sym_struct] = ACTIONS(4268), - [anon_sym_union] = ACTIONS(4268), - [anon_sym_pub] = ACTIONS(4268), - [anon_sym_mut] = ACTIONS(4268), - [anon_sym_enum] = ACTIONS(4268), - [anon_sym_interface] = ACTIONS(4268), - [anon_sym_QMARK] = ACTIONS(4268), - [anon_sym_BANG] = ACTIONS(4268), - [anon_sym_go] = ACTIONS(4268), - [anon_sym_spawn] = ACTIONS(4268), - [anon_sym_json_DOTdecode] = ACTIONS(4268), - [anon_sym_LBRACK2] = ACTIONS(4268), - [anon_sym_TILDE] = ACTIONS(4268), - [anon_sym_CARET] = ACTIONS(4268), - [anon_sym_AMP] = ACTIONS(4268), - [anon_sym_LT_DASH] = ACTIONS(4268), - [sym_none] = ACTIONS(4268), - [sym_true] = ACTIONS(4268), - [sym_false] = ACTIONS(4268), - [sym_nil] = ACTIONS(4268), - [anon_sym_if] = ACTIONS(4268), - [anon_sym_DOLLARif] = ACTIONS(4268), - [anon_sym_match] = ACTIONS(4268), - [anon_sym_select] = ACTIONS(4268), - [anon_sym_lock] = ACTIONS(4268), - [anon_sym_rlock] = ACTIONS(4268), - [anon_sym_unsafe] = ACTIONS(4268), - [anon_sym_sql] = ACTIONS(4268), - [sym_int_literal] = ACTIONS(4268), - [sym_float_literal] = ACTIONS(4268), - [sym_rune_literal] = ACTIONS(4268), - [anon_sym_AT] = ACTIONS(4268), - [anon_sym_shared] = ACTIONS(4268), - [anon_sym_map_LBRACK] = ACTIONS(4268), - [anon_sym_chan] = ACTIONS(4268), - [anon_sym_thread] = ACTIONS(4268), - [anon_sym_atomic] = ACTIONS(4268), - [anon_sym_assert] = ACTIONS(4268), - [anon_sym_defer] = ACTIONS(4268), - [anon_sym_goto] = ACTIONS(4268), - [anon_sym_break] = ACTIONS(4268), - [anon_sym_continue] = ACTIONS(4268), - [anon_sym_return] = ACTIONS(4268), - [anon_sym_DOLLARfor] = ACTIONS(4268), - [anon_sym_for] = ACTIONS(4268), - [anon_sym_POUND] = ACTIONS(4268), - [anon_sym_asm] = ACTIONS(4268), - [anon_sym_AT_LBRACK] = ACTIONS(4268), - [sym___double_quote] = ACTIONS(4268), - [sym___single_quote] = ACTIONS(4268), - [sym___c_double_quote] = ACTIONS(4268), - [sym___c_single_quote] = ACTIONS(4268), - [sym___r_double_quote] = ACTIONS(4268), - [sym___r_single_quote] = ACTIONS(4268), - }, - [1580] = { - [ts_builtin_sym_end] = ACTIONS(4270), - [sym_identifier] = ACTIONS(4272), - [anon_sym_LF] = ACTIONS(4272), - [anon_sym_CR] = ACTIONS(4272), - [anon_sym_CR_LF] = ACTIONS(4272), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(4272), - [anon_sym_LBRACE] = ACTIONS(4272), - [anon_sym_const] = ACTIONS(4272), - [anon_sym_LPAREN] = ACTIONS(4272), - [anon_sym___global] = ACTIONS(4272), - [anon_sym_type] = ACTIONS(4272), - [anon_sym_fn] = ACTIONS(4272), - [anon_sym_PLUS] = ACTIONS(4272), - [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_STAR] = ACTIONS(4272), - [anon_sym_struct] = ACTIONS(4272), - [anon_sym_union] = ACTIONS(4272), - [anon_sym_pub] = ACTIONS(4272), - [anon_sym_mut] = ACTIONS(4272), - [anon_sym_enum] = ACTIONS(4272), - [anon_sym_interface] = ACTIONS(4272), - [anon_sym_QMARK] = ACTIONS(4272), - [anon_sym_BANG] = ACTIONS(4272), - [anon_sym_go] = ACTIONS(4272), - [anon_sym_spawn] = ACTIONS(4272), - [anon_sym_json_DOTdecode] = ACTIONS(4272), - [anon_sym_LBRACK2] = ACTIONS(4272), - [anon_sym_TILDE] = ACTIONS(4272), - [anon_sym_CARET] = ACTIONS(4272), - [anon_sym_AMP] = ACTIONS(4272), - [anon_sym_LT_DASH] = ACTIONS(4272), - [sym_none] = ACTIONS(4272), - [sym_true] = ACTIONS(4272), - [sym_false] = ACTIONS(4272), - [sym_nil] = ACTIONS(4272), - [anon_sym_if] = ACTIONS(4272), - [anon_sym_DOLLARif] = ACTIONS(4272), - [anon_sym_match] = ACTIONS(4272), - [anon_sym_select] = ACTIONS(4272), - [anon_sym_lock] = ACTIONS(4272), - [anon_sym_rlock] = ACTIONS(4272), - [anon_sym_unsafe] = ACTIONS(4272), - [anon_sym_sql] = ACTIONS(4272), - [sym_int_literal] = ACTIONS(4272), - [sym_float_literal] = ACTIONS(4272), - [sym_rune_literal] = ACTIONS(4272), - [anon_sym_AT] = ACTIONS(4272), - [anon_sym_shared] = ACTIONS(4272), - [anon_sym_map_LBRACK] = ACTIONS(4272), - [anon_sym_chan] = ACTIONS(4272), - [anon_sym_thread] = ACTIONS(4272), - [anon_sym_atomic] = ACTIONS(4272), - [anon_sym_assert] = ACTIONS(4272), - [anon_sym_defer] = ACTIONS(4272), - [anon_sym_goto] = ACTIONS(4272), - [anon_sym_break] = ACTIONS(4272), - [anon_sym_continue] = ACTIONS(4272), - [anon_sym_return] = ACTIONS(4272), - [anon_sym_DOLLARfor] = ACTIONS(4272), - [anon_sym_for] = ACTIONS(4272), - [anon_sym_POUND] = ACTIONS(4272), - [anon_sym_asm] = ACTIONS(4272), - [anon_sym_AT_LBRACK] = ACTIONS(4272), - [sym___double_quote] = ACTIONS(4272), - [sym___single_quote] = ACTIONS(4272), - [sym___c_double_quote] = ACTIONS(4272), - [sym___c_single_quote] = ACTIONS(4272), - [sym___r_double_quote] = ACTIONS(4272), - [sym___r_single_quote] = ACTIONS(4272), - }, - [1581] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2378), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(583), - [anon_sym_DOT] = ACTIONS(583), - [anon_sym_as] = ACTIONS(585), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(583), - [anon_sym_LPAREN] = ACTIONS(583), - [anon_sym_PIPE] = ACTIONS(585), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(585), - [anon_sym_DASH] = ACTIONS(585), - [anon_sym_STAR] = ACTIONS(583), - [anon_sym_SLASH] = ACTIONS(585), - [anon_sym_PERCENT] = ACTIONS(583), - [anon_sym_LT] = ACTIONS(585), - [anon_sym_GT] = ACTIONS(585), - [anon_sym_EQ_EQ] = ACTIONS(583), - [anon_sym_BANG_EQ] = ACTIONS(583), - [anon_sym_LT_EQ] = ACTIONS(583), - [anon_sym_GT_EQ] = ACTIONS(583), - [anon_sym_LBRACK] = ACTIONS(583), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(583), - [anon_sym_DASH_DASH] = ACTIONS(583), - [anon_sym_QMARK] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(585), - [anon_sym_LBRACK2] = ACTIONS(585), - [anon_sym_CARET] = ACTIONS(583), - [anon_sym_AMP] = ACTIONS(585), - [anon_sym_LT_LT] = ACTIONS(583), - [anon_sym_GT_GT] = ACTIONS(585), - [anon_sym_GT_GT_GT] = ACTIONS(583), - [anon_sym_AMP_CARET] = ACTIONS(583), - [anon_sym_AMP_AMP] = ACTIONS(583), - [anon_sym_PIPE_PIPE] = ACTIONS(583), - [anon_sym_or] = ACTIONS(585), - [anon_sym_QMARK_DOT] = ACTIONS(583), - [anon_sym_POUND_LBRACK] = ACTIONS(583), - [anon_sym_is] = ACTIONS(585), - [anon_sym_BANGis] = ACTIONS(583), - [anon_sym_in] = ACTIONS(585), - [anon_sym_BANGin] = ACTIONS(583), - [anon_sym_COLON_EQ] = ACTIONS(583), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1582] = { - [sym_reference_expression] = STATE(4574), - [sym_type_reference_expression] = STATE(2635), - [sym_plain_type] = STATE(2746), - [sym__plain_type_without_special] = STATE(2723), - [sym_anon_struct_type] = STATE(2724), - [sym_multi_return_type] = STATE(2723), - [sym_result_type] = STATE(2723), - [sym_option_type] = STATE(2723), - [sym_qualified_type] = STATE(2635), - [sym_fixed_array_type] = STATE(2724), - [sym_array_type] = STATE(2724), - [sym_pointer_type] = STATE(2724), - [sym_wrong_pointer_type] = STATE(2724), - [sym_map_type] = STATE(2724), - [sym_channel_type] = STATE(2724), - [sym_shared_type] = STATE(2724), - [sym_thread_type] = STATE(2724), - [sym_atomic_type] = STATE(2724), - [sym_generic_type] = STATE(2724), - [sym_function_type] = STATE(2724), - [sym_identifier] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(589), - [anon_sym_as] = ACTIONS(589), - [anon_sym_LBRACE] = ACTIONS(587), - [anon_sym_COMMA] = ACTIONS(587), - [anon_sym_LPAREN] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(589), - [anon_sym_fn] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(589), - [anon_sym_DASH] = ACTIONS(589), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_SLASH] = ACTIONS(589), - [anon_sym_PERCENT] = ACTIONS(587), - [anon_sym_LT] = ACTIONS(589), - [anon_sym_GT] = ACTIONS(589), - [anon_sym_EQ_EQ] = ACTIONS(587), - [anon_sym_BANG_EQ] = ACTIONS(587), - [anon_sym_LT_EQ] = ACTIONS(587), - [anon_sym_GT_EQ] = ACTIONS(587), - [anon_sym_DOT_DOT_DOT] = ACTIONS(587), - [anon_sym_LBRACK] = ACTIONS(587), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_PLUS_PLUS] = ACTIONS(587), - [anon_sym_DASH_DASH] = ACTIONS(587), - [anon_sym_QMARK] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4286), - [anon_sym_LBRACK2] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(587), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(587), - [anon_sym_GT_GT] = ACTIONS(589), - [anon_sym_GT_GT_GT] = ACTIONS(587), - [anon_sym_AMP_CARET] = ACTIONS(587), - [anon_sym_AMP_AMP] = ACTIONS(587), - [anon_sym_PIPE_PIPE] = ACTIONS(587), - [anon_sym_or] = ACTIONS(589), - [anon_sym_QMARK_DOT] = ACTIONS(587), - [anon_sym_POUND_LBRACK] = ACTIONS(587), - [anon_sym_is] = ACTIONS(589), - [anon_sym_BANGis] = ACTIONS(587), - [anon_sym_in] = ACTIONS(589), - [anon_sym_BANGin] = ACTIONS(587), - [anon_sym_shared] = ACTIONS(4292), - [anon_sym_map_LBRACK] = ACTIONS(4294), - [anon_sym_chan] = ACTIONS(4296), - [anon_sym_thread] = ACTIONS(4298), - [anon_sym_atomic] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(589), - }, - [1583] = { - [sym_reference_expression] = STATE(4574), - [sym_type_reference_expression] = STATE(2635), - [sym_plain_type] = STATE(2734), - [sym__plain_type_without_special] = STATE(2723), - [sym_anon_struct_type] = STATE(2724), - [sym_multi_return_type] = STATE(2723), - [sym_result_type] = STATE(2723), - [sym_option_type] = STATE(2723), - [sym_qualified_type] = STATE(2635), - [sym_fixed_array_type] = STATE(2724), - [sym_array_type] = STATE(2724), - [sym_pointer_type] = STATE(2724), - [sym_wrong_pointer_type] = STATE(2724), - [sym_map_type] = STATE(2724), - [sym_channel_type] = STATE(2724), - [sym_shared_type] = STATE(2724), - [sym_thread_type] = STATE(2724), - [sym_atomic_type] = STATE(2724), - [sym_generic_type] = STATE(2724), - [sym_function_type] = STATE(2724), - [sym_identifier] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(555), - [anon_sym_as] = ACTIONS(555), - [anon_sym_LBRACE] = ACTIONS(551), - [anon_sym_COMMA] = ACTIONS(551), - [anon_sym_LPAREN] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(555), - [anon_sym_fn] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(555), - [anon_sym_DASH] = ACTIONS(555), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_SLASH] = ACTIONS(555), - [anon_sym_PERCENT] = ACTIONS(551), - [anon_sym_LT] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(555), - [anon_sym_EQ_EQ] = ACTIONS(551), - [anon_sym_BANG_EQ] = ACTIONS(551), - [anon_sym_LT_EQ] = ACTIONS(551), - [anon_sym_GT_EQ] = ACTIONS(551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(551), - [anon_sym_LBRACK] = ACTIONS(551), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_PLUS_PLUS] = ACTIONS(551), - [anon_sym_DASH_DASH] = ACTIONS(551), - [anon_sym_QMARK] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4286), - [anon_sym_LBRACK2] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(551), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(551), - [anon_sym_GT_GT] = ACTIONS(555), - [anon_sym_GT_GT_GT] = ACTIONS(551), - [anon_sym_AMP_CARET] = ACTIONS(551), - [anon_sym_AMP_AMP] = ACTIONS(551), - [anon_sym_PIPE_PIPE] = ACTIONS(551), - [anon_sym_or] = ACTIONS(555), - [anon_sym_QMARK_DOT] = ACTIONS(551), - [anon_sym_POUND_LBRACK] = ACTIONS(551), - [anon_sym_is] = ACTIONS(555), - [anon_sym_BANGis] = ACTIONS(551), - [anon_sym_in] = ACTIONS(555), - [anon_sym_BANGin] = ACTIONS(551), - [anon_sym_shared] = ACTIONS(4292), - [anon_sym_map_LBRACK] = ACTIONS(4294), - [anon_sym_chan] = ACTIONS(4296), - [anon_sym_thread] = ACTIONS(4298), - [anon_sym_atomic] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(555), - }, - [1584] = { - [sym_reference_expression] = STATE(4574), - [sym_type_reference_expression] = STATE(2635), - [sym_plain_type] = STATE(2750), - [sym__plain_type_without_special] = STATE(2723), - [sym_anon_struct_type] = STATE(2724), - [sym_multi_return_type] = STATE(2723), - [sym_result_type] = STATE(2723), - [sym_option_type] = STATE(2723), - [sym_qualified_type] = STATE(2635), - [sym_fixed_array_type] = STATE(2724), - [sym_array_type] = STATE(2724), - [sym_pointer_type] = STATE(2724), - [sym_wrong_pointer_type] = STATE(2724), - [sym_map_type] = STATE(2724), - [sym_channel_type] = STATE(2724), - [sym_shared_type] = STATE(2724), - [sym_thread_type] = STATE(2724), - [sym_atomic_type] = STATE(2724), - [sym_generic_type] = STATE(2724), - [sym_function_type] = STATE(2724), - [sym_identifier] = ACTIONS(4274), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(615), - [anon_sym_as] = ACTIONS(615), - [anon_sym_LBRACE] = ACTIONS(613), - [anon_sym_COMMA] = ACTIONS(613), - [anon_sym_LPAREN] = ACTIONS(4276), - [anon_sym_PIPE] = ACTIONS(615), - [anon_sym_fn] = ACTIONS(4278), - [anon_sym_PLUS] = ACTIONS(615), - [anon_sym_DASH] = ACTIONS(615), - [anon_sym_STAR] = ACTIONS(4280), - [anon_sym_SLASH] = ACTIONS(615), - [anon_sym_PERCENT] = ACTIONS(613), - [anon_sym_LT] = ACTIONS(615), - [anon_sym_GT] = ACTIONS(615), - [anon_sym_EQ_EQ] = ACTIONS(613), - [anon_sym_BANG_EQ] = ACTIONS(613), - [anon_sym_LT_EQ] = ACTIONS(613), - [anon_sym_GT_EQ] = ACTIONS(613), - [anon_sym_DOT_DOT_DOT] = ACTIONS(613), - [anon_sym_LBRACK] = ACTIONS(613), - [anon_sym_struct] = ACTIONS(4282), - [anon_sym_PLUS_PLUS] = ACTIONS(613), - [anon_sym_DASH_DASH] = ACTIONS(613), - [anon_sym_QMARK] = ACTIONS(4284), - [anon_sym_BANG] = ACTIONS(4286), - [anon_sym_LBRACK2] = ACTIONS(4288), - [anon_sym_CARET] = ACTIONS(613), - [anon_sym_AMP] = ACTIONS(4290), - [anon_sym_LT_LT] = ACTIONS(613), - [anon_sym_GT_GT] = ACTIONS(615), - [anon_sym_GT_GT_GT] = ACTIONS(613), - [anon_sym_AMP_CARET] = ACTIONS(613), - [anon_sym_AMP_AMP] = ACTIONS(613), - [anon_sym_PIPE_PIPE] = ACTIONS(613), - [anon_sym_or] = ACTIONS(615), - [anon_sym_QMARK_DOT] = ACTIONS(613), - [anon_sym_POUND_LBRACK] = ACTIONS(613), - [anon_sym_is] = ACTIONS(615), - [anon_sym_BANGis] = ACTIONS(613), - [anon_sym_in] = ACTIONS(615), - [anon_sym_BANGin] = ACTIONS(613), - [anon_sym_shared] = ACTIONS(4292), - [anon_sym_map_LBRACK] = ACTIONS(4294), - [anon_sym_chan] = ACTIONS(4296), - [anon_sym_thread] = ACTIONS(4298), - [anon_sym_atomic] = ACTIONS(4300), - [anon_sym_DOT_DOT] = ACTIONS(615), - }, - [1585] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(595), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_DOT_DOT_DOT] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - [anon_sym_DOT_DOT] = ACTIONS(595), - }, - [1586] = { - [ts_builtin_sym_end] = ACTIONS(4304), - [sym_identifier] = ACTIONS(4306), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4306), - [anon_sym_DOT] = ACTIONS(4306), - [anon_sym_LBRACE] = ACTIONS(4304), - [anon_sym_const] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4304), - [anon_sym___global] = ACTIONS(4306), - [anon_sym_type] = ACTIONS(4306), - [anon_sym_fn] = ACTIONS(4306), - [anon_sym_PLUS] = ACTIONS(4304), - [anon_sym_DASH] = ACTIONS(4304), - [anon_sym_STAR] = ACTIONS(4304), - [anon_sym_struct] = ACTIONS(4306), - [anon_sym_union] = ACTIONS(4306), - [anon_sym_pub] = ACTIONS(4306), - [anon_sym_mut] = ACTIONS(4306), - [anon_sym_enum] = ACTIONS(4306), - [anon_sym_interface] = ACTIONS(4306), - [anon_sym_QMARK] = ACTIONS(4304), - [anon_sym_BANG] = ACTIONS(4304), - [anon_sym_go] = ACTIONS(4306), - [anon_sym_spawn] = ACTIONS(4306), - [anon_sym_json_DOTdecode] = ACTIONS(4304), - [anon_sym_LBRACK2] = ACTIONS(4304), - [anon_sym_TILDE] = ACTIONS(4304), - [anon_sym_CARET] = ACTIONS(4304), - [anon_sym_AMP] = ACTIONS(4304), - [anon_sym_LT_DASH] = ACTIONS(4304), - [sym_none] = ACTIONS(4306), - [sym_true] = ACTIONS(4306), - [sym_false] = ACTIONS(4306), - [sym_nil] = ACTIONS(4306), - [anon_sym_if] = ACTIONS(4306), - [anon_sym_DOLLARif] = ACTIONS(4306), - [anon_sym_match] = ACTIONS(4306), - [anon_sym_select] = ACTIONS(4306), - [anon_sym_lock] = ACTIONS(4306), - [anon_sym_rlock] = ACTIONS(4306), - [anon_sym_unsafe] = ACTIONS(4306), - [anon_sym_sql] = ACTIONS(4306), - [sym_int_literal] = ACTIONS(4306), - [sym_float_literal] = ACTIONS(4304), - [sym_rune_literal] = ACTIONS(4304), - [anon_sym_AT] = ACTIONS(4306), - [anon_sym_shared] = ACTIONS(4306), - [anon_sym_map_LBRACK] = ACTIONS(4304), - [anon_sym_chan] = ACTIONS(4306), - [anon_sym_thread] = ACTIONS(4306), - [anon_sym_atomic] = ACTIONS(4306), - [anon_sym_assert] = ACTIONS(4306), - [anon_sym_defer] = ACTIONS(4306), - [anon_sym_goto] = ACTIONS(4306), - [anon_sym_break] = ACTIONS(4306), - [anon_sym_continue] = ACTIONS(4306), - [anon_sym_return] = ACTIONS(4306), - [anon_sym_DOLLARfor] = ACTIONS(4306), - [anon_sym_for] = ACTIONS(4306), - [anon_sym_POUND] = ACTIONS(4306), - [anon_sym_asm] = ACTIONS(4306), - [anon_sym_AT_LBRACK] = ACTIONS(4304), - [sym___double_quote] = ACTIONS(4304), - [sym___single_quote] = ACTIONS(4304), - [sym___c_double_quote] = ACTIONS(4304), - [sym___c_single_quote] = ACTIONS(4304), - [sym___r_double_quote] = ACTIONS(4304), - [sym___r_single_quote] = ACTIONS(4304), - }, - [1587] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_SEMI] = ACTIONS(591), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(4308), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1588] = { - [ts_builtin_sym_end] = ACTIONS(4310), - [sym_identifier] = ACTIONS(4312), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4312), - [anon_sym_DOT] = ACTIONS(4312), - [anon_sym_LBRACE] = ACTIONS(4310), - [anon_sym_const] = ACTIONS(4312), - [anon_sym_LPAREN] = ACTIONS(4310), - [anon_sym___global] = ACTIONS(4312), - [anon_sym_type] = ACTIONS(4312), - [anon_sym_fn] = ACTIONS(4312), - [anon_sym_PLUS] = ACTIONS(4310), - [anon_sym_DASH] = ACTIONS(4310), - [anon_sym_STAR] = ACTIONS(4310), - [anon_sym_struct] = ACTIONS(4312), - [anon_sym_union] = ACTIONS(4312), - [anon_sym_pub] = ACTIONS(4312), - [anon_sym_mut] = ACTIONS(4312), - [anon_sym_enum] = ACTIONS(4312), - [anon_sym_interface] = ACTIONS(4312), - [anon_sym_QMARK] = ACTIONS(4310), - [anon_sym_BANG] = ACTIONS(4310), - [anon_sym_go] = ACTIONS(4312), - [anon_sym_spawn] = ACTIONS(4312), - [anon_sym_json_DOTdecode] = ACTIONS(4310), - [anon_sym_LBRACK2] = ACTIONS(4310), - [anon_sym_TILDE] = ACTIONS(4310), - [anon_sym_CARET] = ACTIONS(4310), - [anon_sym_AMP] = ACTIONS(4310), - [anon_sym_LT_DASH] = ACTIONS(4310), - [sym_none] = ACTIONS(4312), - [sym_true] = ACTIONS(4312), - [sym_false] = ACTIONS(4312), - [sym_nil] = ACTIONS(4312), - [anon_sym_if] = ACTIONS(4312), - [anon_sym_DOLLARif] = ACTIONS(4312), - [anon_sym_match] = ACTIONS(4312), - [anon_sym_select] = ACTIONS(4312), - [anon_sym_lock] = ACTIONS(4312), - [anon_sym_rlock] = ACTIONS(4312), - [anon_sym_unsafe] = ACTIONS(4312), - [anon_sym_sql] = ACTIONS(4312), - [sym_int_literal] = ACTIONS(4312), - [sym_float_literal] = ACTIONS(4310), - [sym_rune_literal] = ACTIONS(4310), - [anon_sym_AT] = ACTIONS(4312), - [anon_sym_shared] = ACTIONS(4312), - [anon_sym_map_LBRACK] = ACTIONS(4310), - [anon_sym_chan] = ACTIONS(4312), - [anon_sym_thread] = ACTIONS(4312), - [anon_sym_atomic] = ACTIONS(4312), - [anon_sym_assert] = ACTIONS(4312), - [anon_sym_defer] = ACTIONS(4312), - [anon_sym_goto] = ACTIONS(4312), - [anon_sym_break] = ACTIONS(4312), - [anon_sym_continue] = ACTIONS(4312), - [anon_sym_return] = ACTIONS(4312), - [anon_sym_DOLLARfor] = ACTIONS(4312), - [anon_sym_for] = ACTIONS(4312), - [anon_sym_POUND] = ACTIONS(4312), - [anon_sym_asm] = ACTIONS(4312), - [anon_sym_AT_LBRACK] = ACTIONS(4310), - [sym___double_quote] = ACTIONS(4310), - [sym___single_quote] = ACTIONS(4310), - [sym___c_double_quote] = ACTIONS(4310), - [sym___c_single_quote] = ACTIONS(4310), - [sym___r_double_quote] = ACTIONS(4310), - [sym___r_single_quote] = ACTIONS(4310), - }, - [1589] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2411), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(4314), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4314), - [anon_sym_LBRACE] = ACTIONS(4316), - [anon_sym_LPAREN] = ACTIONS(4316), - [anon_sym_fn] = ACTIONS(4314), - [anon_sym_PLUS] = ACTIONS(4316), - [anon_sym_DASH] = ACTIONS(4316), - [anon_sym_STAR] = ACTIONS(4316), - [anon_sym_struct] = ACTIONS(4314), - [anon_sym_mut] = ACTIONS(4314), - [anon_sym_QMARK] = ACTIONS(4316), - [anon_sym_BANG] = ACTIONS(4316), - [anon_sym_go] = ACTIONS(4314), - [anon_sym_spawn] = ACTIONS(4314), - [anon_sym_json_DOTdecode] = ACTIONS(4316), - [anon_sym_LBRACK2] = ACTIONS(4316), - [anon_sym_TILDE] = ACTIONS(4316), - [anon_sym_CARET] = ACTIONS(4316), - [anon_sym_AMP] = ACTIONS(4316), - [anon_sym_LT_DASH] = ACTIONS(4316), - [sym_none] = ACTIONS(4314), - [sym_true] = ACTIONS(4314), - [sym_false] = ACTIONS(4314), - [sym_nil] = ACTIONS(4314), - [anon_sym_if] = ACTIONS(4314), - [anon_sym_DOLLARif] = ACTIONS(4314), - [anon_sym_match] = ACTIONS(4314), - [anon_sym_select] = ACTIONS(4314), - [anon_sym_lock] = ACTIONS(4314), - [anon_sym_rlock] = ACTIONS(4314), - [anon_sym_unsafe] = ACTIONS(4314), - [anon_sym_sql] = ACTIONS(4314), - [sym_int_literal] = ACTIONS(4314), - [sym_float_literal] = ACTIONS(4316), - [sym_rune_literal] = ACTIONS(4316), - [anon_sym_AT] = ACTIONS(4314), - [anon_sym_shared] = ACTIONS(4314), - [anon_sym_map_LBRACK] = ACTIONS(4316), - [anon_sym_chan] = ACTIONS(4314), - [anon_sym_thread] = ACTIONS(4314), - [anon_sym_atomic] = ACTIONS(4314), - [sym___double_quote] = ACTIONS(4316), - [sym___single_quote] = ACTIONS(4316), - [sym___c_double_quote] = ACTIONS(4316), - [sym___c_single_quote] = ACTIONS(4316), - [sym___r_double_quote] = ACTIONS(4316), - [sym___r_single_quote] = ACTIONS(4316), - }, - [1590] = { - [sym_reference_expression] = STATE(4600), - [sym_type_reference_expression] = STATE(3581), - [sym_plain_type] = STATE(2374), - [sym__plain_type_without_special] = STATE(2428), - [sym_anon_struct_type] = STATE(2424), - [sym_multi_return_type] = STATE(2428), - [sym_result_type] = STATE(2428), - [sym_option_type] = STATE(2428), - [sym_qualified_type] = STATE(3581), - [sym_fixed_array_type] = STATE(2424), - [sym_array_type] = STATE(2424), - [sym_pointer_type] = STATE(2424), - [sym_wrong_pointer_type] = STATE(2424), - [sym_map_type] = STATE(2424), - [sym_channel_type] = STATE(2424), - [sym_shared_type] = STATE(2424), - [sym_thread_type] = STATE(2424), - [sym_atomic_type] = STATE(2424), - [sym_generic_type] = STATE(2424), - [sym_function_type] = STATE(2424), - [sym_identifier] = ACTIONS(593), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(591), - [anon_sym_as] = ACTIONS(595), - [anon_sym_LBRACE] = ACTIONS(591), - [anon_sym_COMMA] = ACTIONS(591), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_PIPE] = ACTIONS(595), - [anon_sym_fn] = ACTIONS(599), - [anon_sym_PLUS] = ACTIONS(595), - [anon_sym_DASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(595), - [anon_sym_PERCENT] = ACTIONS(591), - [anon_sym_LT] = ACTIONS(595), - [anon_sym_GT] = ACTIONS(595), - [anon_sym_EQ_EQ] = ACTIONS(591), - [anon_sym_BANG_EQ] = ACTIONS(591), - [anon_sym_LT_EQ] = ACTIONS(591), - [anon_sym_GT_EQ] = ACTIONS(591), - [anon_sym_LBRACK] = ACTIONS(591), - [anon_sym_struct] = ACTIONS(603), - [anon_sym_PLUS_PLUS] = ACTIONS(591), - [anon_sym_DASH_DASH] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(503), - [anon_sym_BANG] = ACTIONS(4302), - [anon_sym_LBRACK2] = ACTIONS(607), - [anon_sym_CARET] = ACTIONS(591), - [anon_sym_AMP] = ACTIONS(609), - [anon_sym_LT_LT] = ACTIONS(591), - [anon_sym_GT_GT] = ACTIONS(595), - [anon_sym_GT_GT_GT] = ACTIONS(591), - [anon_sym_AMP_CARET] = ACTIONS(591), - [anon_sym_AMP_AMP] = ACTIONS(591), - [anon_sym_PIPE_PIPE] = ACTIONS(591), - [anon_sym_or] = ACTIONS(595), - [anon_sym_QMARK_DOT] = ACTIONS(591), - [anon_sym_POUND_LBRACK] = ACTIONS(591), - [anon_sym_is] = ACTIONS(595), - [anon_sym_BANGis] = ACTIONS(591), - [anon_sym_in] = ACTIONS(595), - [anon_sym_BANGin] = ACTIONS(591), - [anon_sym_COLON_EQ] = ACTIONS(591), - [anon_sym_shared] = ACTIONS(611), - [anon_sym_map_LBRACK] = ACTIONS(81), - [anon_sym_chan] = ACTIONS(83), - [anon_sym_thread] = ACTIONS(85), - [anon_sym_atomic] = ACTIONS(87), - }, - [1591] = { - [ts_builtin_sym_end] = ACTIONS(4318), - [sym_identifier] = ACTIONS(4320), - [sym_comment] = ACTIONS(3), - [anon_sym_import] = ACTIONS(4320), - [anon_sym_DOT] = ACTIONS(4320), - [anon_sym_LBRACE] = ACTIONS(4318), - [anon_sym_const] = ACTIONS(4320), - [anon_sym_LPAREN] = ACTIONS(4318), - [anon_sym___global] = ACTIONS(4320), - [anon_sym_type] = ACTIONS(4320), - [anon_sym_fn] = ACTIONS(4320), - [anon_sym_PLUS] = ACTIONS(4318), - [anon_sym_DASH] = ACTIONS(4318), - [anon_sym_STAR] = ACTIONS(4318), - [anon_sym_struct] = ACTIONS(4320), - [anon_sym_union] = ACTIONS(4320), - [anon_sym_pub] = ACTIONS(4320), - [anon_sym_mut] = ACTIONS(4320), - [anon_sym_enum] = ACTIONS(4320), - [anon_sym_interface] = ACTIONS(4320), - [anon_sym_QMARK] = ACTIONS(4318), - [anon_sym_BANG] = ACTIONS(4318), - [anon_sym_go] = ACTIONS(4320), - [anon_sym_spawn] = ACTIONS(4320), - [anon_sym_json_DOTdecode] = ACTIONS(4318), - [anon_sym_LBRACK2] = ACTIONS(4318), - [anon_sym_TILDE] = ACTIONS(4318), - [anon_sym_CARET] = ACTIONS(4318), - [anon_sym_AMP] = ACTIONS(4318), - [anon_sym_LT_DASH] = ACTIONS(4318), - [sym_none] = ACTIONS(4320), - [sym_true] = ACTIONS(4320), - [sym_false] = ACTIONS(4320), - [sym_nil] = ACTIONS(4320), - [anon_sym_if] = ACTIONS(4320), - [anon_sym_DOLLARif] = ACTIONS(4320), - [anon_sym_match] = ACTIONS(4320), - [anon_sym_select] = ACTIONS(4320), - [anon_sym_lock] = ACTIONS(4320), - [anon_sym_rlock] = ACTIONS(4320), - [anon_sym_unsafe] = ACTIONS(4320), - [anon_sym_sql] = ACTIONS(4320), - [sym_int_literal] = ACTIONS(4320), - [sym_float_literal] = ACTIONS(4318), - [sym_rune_literal] = ACTIONS(4318), - [anon_sym_AT] = ACTIONS(4320), - [anon_sym_shared] = ACTIONS(4320), - [anon_sym_map_LBRACK] = ACTIONS(4318), - [anon_sym_chan] = ACTIONS(4320), - [anon_sym_thread] = ACTIONS(4320), - [anon_sym_atomic] = ACTIONS(4320), - [anon_sym_assert] = ACTIONS(4320), - [anon_sym_defer] = ACTIONS(4320), - [anon_sym_goto] = ACTIONS(4320), - [anon_sym_break] = ACTIONS(4320), - [anon_sym_continue] = ACTIONS(4320), - [anon_sym_return] = ACTIONS(4320), - [anon_sym_DOLLARfor] = ACTIONS(4320), - [anon_sym_for] = ACTIONS(4320), - [anon_sym_POUND] = ACTIONS(4320), - [anon_sym_asm] = ACTIONS(4320), - [anon_sym_AT_LBRACK] = ACTIONS(4318), - [sym___double_quote] = ACTIONS(4318), - [sym___single_quote] = ACTIONS(4318), - [sym___c_double_quote] = ACTIONS(4318), - [sym___c_single_quote] = ACTIONS(4318), - [sym___r_double_quote] = ACTIONS(4318), - [sym___r_single_quote] = ACTIONS(4318), - }, - [1592] = { - [ts_builtin_sym_end] = ACTIONS(125), - [sym_identifier] = ACTIONS(4322), - [sym_comment] = ACTIONS(3), - [anon_sym_DOT] = ACTIONS(4322), - [anon_sym_LBRACE] = ACTIONS(125), - [anon_sym_const] = ACTIONS(4322), - [anon_sym_LPAREN] = ACTIONS(125), - [anon_sym___global] = ACTIONS(4322), - [anon_sym_type] = ACTIONS(4322), - [anon_sym_fn] = ACTIONS(4322), - [anon_sym_PLUS] = ACTIONS(125), - [anon_sym_DASH] = ACTIONS(125), - [anon_sym_STAR] = ACTIONS(125), - [anon_sym_struct] = ACTIONS(4322), - [anon_sym_union] = ACTIONS(4322), - [anon_sym_pub] = ACTIONS(4322), - [anon_sym_mut] = ACTIONS(4322), - [anon_sym_enum] = ACTIONS(4322), - [anon_sym_interface] = ACTIONS(4322), - [anon_sym_QMARK] = ACTIONS(125), - [anon_sym_BANG] = ACTIONS(125), - [anon_sym_go] = ACTIONS(4322), - [anon_sym_spawn] = ACTIONS(4322), - [anon_sym_json_DOTdecode] = ACTIONS(125), - [anon_sym_LBRACK2] = ACTIONS(125), - [anon_sym_TILDE] = ACTIONS(125), - [anon_sym_CARET] = ACTIONS(125), - [anon_sym_AMP] = ACTIONS(125), - [anon_sym_LT_DASH] = ACTIONS(125), - [sym_none] = ACTIONS(4322), - [sym_true] = ACTIONS(4322), - [sym_false] = ACTIONS(4322), - [sym_nil] = ACTIONS(4322), - [anon_sym_if] = ACTIONS(4322), - [anon_sym_DOLLARif] = ACTIONS(4322), - [anon_sym_match] = ACTIONS(4322), - [anon_sym_select] = ACTIONS(4322), - [anon_sym_lock] = ACTIONS(4322), - [anon_sym_rlock] = ACTIONS(4322), - [anon_sym_unsafe] = ACTIONS(4322), - [anon_sym_sql] = ACTIONS(4322), - [sym_int_literal] = ACTIONS(4322), - [sym_float_literal] = ACTIONS(125), - [sym_rune_literal] = ACTIONS(125), - [anon_sym_AT] = ACTIONS(4322), - [anon_sym_shared] = ACTIONS(4322), - [anon_sym_map_LBRACK] = ACTIONS(125), - [anon_sym_chan] = ACTIONS(4322), - [anon_sym_thread] = ACTIONS(4322), - [anon_sym_atomic] = ACTIONS(4322), - [anon_sym_assert] = ACTIONS(4322), - [anon_sym_defer] = ACTIONS(4322), - [anon_sym_goto] = ACTIONS(4322), - [anon_sym_break] = ACTIONS(4322), - [anon_sym_continue] = ACTIONS(4322), - [anon_sym_return] = ACTIONS(4322), - [anon_sym_DOLLARfor] = ACTIONS(4322), - [anon_sym_for] = ACTIONS(4322), - [anon_sym_POUND] = ACTIONS(4322), - [anon_sym_asm] = ACTIONS(4322), - [anon_sym_AT_LBRACK] = ACTIONS(125), - [sym___double_quote] = ACTIONS(125), - [sym___single_quote] = ACTIONS(125), - [sym___c_double_quote] = ACTIONS(125), - [sym___c_single_quote] = ACTIONS(125), - [sym___r_double_quote] = ACTIONS(125), - [sym___r_single_quote] = ACTIONS(125), - }, - [1593] = { - [sym_identifier] = ACTIONS(3101), - [anon_sym_LF] = ACTIONS(3101), - [anon_sym_CR] = ACTIONS(3101), - [anon_sym_CR_LF] = ACTIONS(3101), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3101), - [anon_sym_as] = ACTIONS(3101), - [anon_sym_COMMA] = ACTIONS(3101), - [anon_sym_RBRACE] = ACTIONS(3101), - [anon_sym_LPAREN] = ACTIONS(3101), - [anon_sym_EQ] = ACTIONS(3101), - [anon_sym_PIPE] = ACTIONS(3101), - [anon_sym_fn] = ACTIONS(3101), - [anon_sym_PLUS] = ACTIONS(3101), - [anon_sym_DASH] = ACTIONS(3101), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_SLASH] = ACTIONS(3101), - [anon_sym_PERCENT] = ACTIONS(3101), - [anon_sym_LT] = ACTIONS(3101), - [anon_sym_GT] = ACTIONS(3101), - [anon_sym_EQ_EQ] = ACTIONS(3101), - [anon_sym_BANG_EQ] = ACTIONS(3101), - [anon_sym_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_EQ] = ACTIONS(3101), - [anon_sym_LBRACK] = ACTIONS(3099), - [anon_sym_struct] = ACTIONS(3101), - [anon_sym_COLON] = ACTIONS(3101), - [anon_sym_PLUS_PLUS] = ACTIONS(3101), - [anon_sym_DASH_DASH] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3101), - [anon_sym_BANG] = ACTIONS(3101), - [anon_sym_LBRACK2] = ACTIONS(3101), - [anon_sym_CARET] = ACTIONS(3101), - [anon_sym_AMP] = ACTIONS(3101), - [anon_sym_LT_DASH] = ACTIONS(3101), - [anon_sym_LT_LT] = ACTIONS(3101), - [anon_sym_GT_GT] = ACTIONS(3101), - [anon_sym_GT_GT_GT] = ACTIONS(3101), - [anon_sym_AMP_CARET] = ACTIONS(3101), - [anon_sym_AMP_AMP] = ACTIONS(3101), - [anon_sym_PIPE_PIPE] = ACTIONS(3101), - [anon_sym_or] = ACTIONS(3101), - [anon_sym_QMARK_DOT] = ACTIONS(3101), - [anon_sym_POUND_LBRACK] = ACTIONS(3101), - [anon_sym_is] = ACTIONS(3101), - [anon_sym_BANGis] = ACTIONS(3101), - [anon_sym_in] = ACTIONS(3101), - [anon_sym_BANGin] = ACTIONS(3101), - [anon_sym_STAR_EQ] = ACTIONS(3101), - [anon_sym_SLASH_EQ] = ACTIONS(3101), - [anon_sym_PERCENT_EQ] = ACTIONS(3101), - [anon_sym_LT_LT_EQ] = ACTIONS(3101), - [anon_sym_GT_GT_EQ] = ACTIONS(3101), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3101), - [anon_sym_AMP_EQ] = ACTIONS(3101), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3101), - [anon_sym_PLUS_EQ] = ACTIONS(3101), - [anon_sym_DASH_EQ] = ACTIONS(3101), - [anon_sym_PIPE_EQ] = ACTIONS(3101), - [anon_sym_CARET_EQ] = ACTIONS(3101), - [anon_sym_COLON_EQ] = ACTIONS(3101), - [anon_sym_shared] = ACTIONS(3101), - [anon_sym_map_LBRACK] = ACTIONS(3101), - [anon_sym_chan] = ACTIONS(3101), - [anon_sym_thread] = ACTIONS(3101), - [anon_sym_atomic] = ACTIONS(3101), - }, - [1594] = { - [sym_identifier] = ACTIONS(3041), - [anon_sym_LF] = ACTIONS(3041), - [anon_sym_CR] = ACTIONS(3041), - [anon_sym_CR_LF] = ACTIONS(3041), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3041), - [anon_sym_as] = ACTIONS(3041), - [anon_sym_COMMA] = ACTIONS(3041), - [anon_sym_RBRACE] = ACTIONS(3041), - [anon_sym_LPAREN] = ACTIONS(3041), - [anon_sym_EQ] = ACTIONS(3041), - [anon_sym_PIPE] = ACTIONS(3041), - [anon_sym_fn] = ACTIONS(3041), - [anon_sym_PLUS] = ACTIONS(3041), - [anon_sym_DASH] = ACTIONS(3041), - [anon_sym_STAR] = ACTIONS(3041), - [anon_sym_SLASH] = ACTIONS(3041), - [anon_sym_PERCENT] = ACTIONS(3041), - [anon_sym_LT] = ACTIONS(3041), - [anon_sym_GT] = ACTIONS(3041), - [anon_sym_EQ_EQ] = ACTIONS(3041), - [anon_sym_BANG_EQ] = ACTIONS(3041), - [anon_sym_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_EQ] = ACTIONS(3041), - [anon_sym_LBRACK] = ACTIONS(3039), - [anon_sym_struct] = ACTIONS(3041), - [anon_sym_COLON] = ACTIONS(3041), - [anon_sym_PLUS_PLUS] = ACTIONS(3041), - [anon_sym_DASH_DASH] = ACTIONS(3041), - [anon_sym_QMARK] = ACTIONS(3041), - [anon_sym_BANG] = ACTIONS(3041), - [anon_sym_LBRACK2] = ACTIONS(3041), - [anon_sym_CARET] = ACTIONS(3041), - [anon_sym_AMP] = ACTIONS(3041), - [anon_sym_LT_DASH] = ACTIONS(3041), - [anon_sym_LT_LT] = ACTIONS(3041), - [anon_sym_GT_GT] = ACTIONS(3041), - [anon_sym_GT_GT_GT] = ACTIONS(3041), - [anon_sym_AMP_CARET] = ACTIONS(3041), - [anon_sym_AMP_AMP] = ACTIONS(3041), - [anon_sym_PIPE_PIPE] = ACTIONS(3041), - [anon_sym_or] = ACTIONS(3041), - [anon_sym_QMARK_DOT] = ACTIONS(3041), - [anon_sym_POUND_LBRACK] = ACTIONS(3041), - [anon_sym_is] = ACTIONS(3041), - [anon_sym_BANGis] = ACTIONS(3041), - [anon_sym_in] = ACTIONS(3041), - [anon_sym_BANGin] = ACTIONS(3041), - [anon_sym_STAR_EQ] = ACTIONS(3041), - [anon_sym_SLASH_EQ] = ACTIONS(3041), - [anon_sym_PERCENT_EQ] = ACTIONS(3041), - [anon_sym_LT_LT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3041), - [anon_sym_AMP_EQ] = ACTIONS(3041), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3041), - [anon_sym_PLUS_EQ] = ACTIONS(3041), - [anon_sym_DASH_EQ] = ACTIONS(3041), - [anon_sym_PIPE_EQ] = ACTIONS(3041), - [anon_sym_CARET_EQ] = ACTIONS(3041), - [anon_sym_COLON_EQ] = ACTIONS(3041), - [anon_sym_shared] = ACTIONS(3041), - [anon_sym_map_LBRACK] = ACTIONS(3041), - [anon_sym_chan] = ACTIONS(3041), - [anon_sym_thread] = ACTIONS(3041), - [anon_sym_atomic] = ACTIONS(3041), - }, - [1595] = { - [sym_identifier] = ACTIONS(3137), - [anon_sym_LF] = ACTIONS(3137), - [anon_sym_CR] = ACTIONS(3137), - [anon_sym_CR_LF] = ACTIONS(3137), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_as] = ACTIONS(3137), - [anon_sym_COMMA] = ACTIONS(3137), - [anon_sym_RBRACE] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3137), - [anon_sym_EQ] = ACTIONS(3137), - [anon_sym_PIPE] = ACTIONS(3137), - [anon_sym_fn] = ACTIONS(3137), - [anon_sym_PLUS] = ACTIONS(3137), - [anon_sym_DASH] = ACTIONS(3137), - [anon_sym_STAR] = ACTIONS(3137), - [anon_sym_SLASH] = ACTIONS(3137), - [anon_sym_PERCENT] = ACTIONS(3137), - [anon_sym_LT] = ACTIONS(3137), - [anon_sym_GT] = ACTIONS(3137), - [anon_sym_EQ_EQ] = ACTIONS(3137), - [anon_sym_BANG_EQ] = ACTIONS(3137), - [anon_sym_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_EQ] = ACTIONS(3137), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_struct] = ACTIONS(3137), - [anon_sym_COLON] = ACTIONS(3137), - [anon_sym_PLUS_PLUS] = ACTIONS(3137), - [anon_sym_DASH_DASH] = ACTIONS(3137), - [anon_sym_QMARK] = ACTIONS(3137), - [anon_sym_BANG] = ACTIONS(3137), - [anon_sym_LBRACK2] = ACTIONS(3137), - [anon_sym_CARET] = ACTIONS(3137), - [anon_sym_AMP] = ACTIONS(3137), - [anon_sym_LT_DASH] = ACTIONS(3137), - [anon_sym_LT_LT] = ACTIONS(3137), - [anon_sym_GT_GT] = ACTIONS(3137), - [anon_sym_GT_GT_GT] = ACTIONS(3137), - [anon_sym_AMP_CARET] = ACTIONS(3137), - [anon_sym_AMP_AMP] = ACTIONS(3137), - [anon_sym_PIPE_PIPE] = ACTIONS(3137), - [anon_sym_or] = ACTIONS(3137), - [anon_sym_QMARK_DOT] = ACTIONS(3137), - [anon_sym_POUND_LBRACK] = ACTIONS(3137), - [anon_sym_is] = ACTIONS(3137), - [anon_sym_BANGis] = ACTIONS(3137), - [anon_sym_in] = ACTIONS(3137), - [anon_sym_BANGin] = ACTIONS(3137), - [anon_sym_STAR_EQ] = ACTIONS(3137), - [anon_sym_SLASH_EQ] = ACTIONS(3137), - [anon_sym_PERCENT_EQ] = ACTIONS(3137), - [anon_sym_LT_LT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3137), - [anon_sym_AMP_EQ] = ACTIONS(3137), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3137), - [anon_sym_PLUS_EQ] = ACTIONS(3137), - [anon_sym_DASH_EQ] = ACTIONS(3137), - [anon_sym_PIPE_EQ] = ACTIONS(3137), - [anon_sym_CARET_EQ] = ACTIONS(3137), - [anon_sym_COLON_EQ] = ACTIONS(3137), - [anon_sym_shared] = ACTIONS(3137), - [anon_sym_map_LBRACK] = ACTIONS(3137), - [anon_sym_chan] = ACTIONS(3137), - [anon_sym_thread] = ACTIONS(3137), - [anon_sym_atomic] = ACTIONS(3137), - }, - [1596] = { - [sym_identifier] = ACTIONS(3133), - [anon_sym_LF] = ACTIONS(3133), - [anon_sym_CR] = ACTIONS(3133), - [anon_sym_CR_LF] = ACTIONS(3133), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3133), - [anon_sym_as] = ACTIONS(3133), - [anon_sym_COMMA] = ACTIONS(3133), - [anon_sym_RBRACE] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3133), - [anon_sym_EQ] = ACTIONS(3133), - [anon_sym_PIPE] = ACTIONS(3133), - [anon_sym_fn] = ACTIONS(3133), - [anon_sym_PLUS] = ACTIONS(3133), - [anon_sym_DASH] = ACTIONS(3133), - [anon_sym_STAR] = ACTIONS(3133), - [anon_sym_SLASH] = ACTIONS(3133), - [anon_sym_PERCENT] = ACTIONS(3133), - [anon_sym_LT] = ACTIONS(3133), - [anon_sym_GT] = ACTIONS(3133), - [anon_sym_EQ_EQ] = ACTIONS(3133), - [anon_sym_BANG_EQ] = ACTIONS(3133), - [anon_sym_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_EQ] = ACTIONS(3133), - [anon_sym_LBRACK] = ACTIONS(3131), - [anon_sym_struct] = ACTIONS(3133), - [anon_sym_COLON] = ACTIONS(3133), - [anon_sym_PLUS_PLUS] = ACTIONS(3133), - [anon_sym_DASH_DASH] = ACTIONS(3133), - [anon_sym_QMARK] = ACTIONS(3133), - [anon_sym_BANG] = ACTIONS(3133), - [anon_sym_LBRACK2] = ACTIONS(3133), - [anon_sym_CARET] = ACTIONS(3133), - [anon_sym_AMP] = ACTIONS(3133), - [anon_sym_LT_DASH] = ACTIONS(3133), - [anon_sym_LT_LT] = ACTIONS(3133), - [anon_sym_GT_GT] = ACTIONS(3133), - [anon_sym_GT_GT_GT] = ACTIONS(3133), - [anon_sym_AMP_CARET] = ACTIONS(3133), - [anon_sym_AMP_AMP] = ACTIONS(3133), - [anon_sym_PIPE_PIPE] = ACTIONS(3133), - [anon_sym_or] = ACTIONS(3133), - [anon_sym_QMARK_DOT] = ACTIONS(3133), - [anon_sym_POUND_LBRACK] = ACTIONS(3133), - [anon_sym_is] = ACTIONS(3133), - [anon_sym_BANGis] = ACTIONS(3133), - [anon_sym_in] = ACTIONS(3133), - [anon_sym_BANGin] = ACTIONS(3133), - [anon_sym_STAR_EQ] = ACTIONS(3133), - [anon_sym_SLASH_EQ] = ACTIONS(3133), - [anon_sym_PERCENT_EQ] = ACTIONS(3133), - [anon_sym_LT_LT_EQ] = ACTIONS(3133), - [anon_sym_GT_GT_EQ] = ACTIONS(3133), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3133), - [anon_sym_AMP_EQ] = ACTIONS(3133), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3133), - [anon_sym_PLUS_EQ] = ACTIONS(3133), - [anon_sym_DASH_EQ] = ACTIONS(3133), - [anon_sym_PIPE_EQ] = ACTIONS(3133), - [anon_sym_CARET_EQ] = ACTIONS(3133), - [anon_sym_COLON_EQ] = ACTIONS(3133), - [anon_sym_shared] = ACTIONS(3133), - [anon_sym_map_LBRACK] = ACTIONS(3133), - [anon_sym_chan] = ACTIONS(3133), - [anon_sym_thread] = ACTIONS(3133), - [anon_sym_atomic] = ACTIONS(3133), - }, - [1597] = { - [sym_identifier] = ACTIONS(3105), - [anon_sym_LF] = ACTIONS(3105), - [anon_sym_CR] = ACTIONS(3105), - [anon_sym_CR_LF] = ACTIONS(3105), - [sym_comment] = ACTIONS(487), - [anon_sym_DOT] = ACTIONS(3105), - [anon_sym_as] = ACTIONS(3105), - [anon_sym_COMMA] = ACTIONS(3105), - [anon_sym_RBRACE] = ACTIONS(3105), - [anon_sym_LPAREN] = ACTIONS(3105), - [anon_sym_EQ] = ACTIONS(3105), - [anon_sym_PIPE] = ACTIONS(3105), - [anon_sym_fn] = ACTIONS(3105), - [anon_sym_PLUS] = ACTIONS(3105), - [anon_sym_DASH] = ACTIONS(3105), - [anon_sym_STAR] = ACTIONS(3105), - [anon_sym_SLASH] = ACTIONS(3105), - [anon_sym_PERCENT] = ACTIONS(3105), - [anon_sym_LT] = ACTIONS(3105), - [anon_sym_GT] = ACTIONS(3105), - [anon_sym_EQ_EQ] = ACTIONS(3105), - [anon_sym_BANG_EQ] = ACTIONS(3105), - [anon_sym_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_EQ] = ACTIONS(3105), - [anon_sym_LBRACK] = ACTIONS(3103), - [anon_sym_struct] = ACTIONS(3105), - [anon_sym_COLON] = ACTIONS(3105), - [anon_sym_PLUS_PLUS] = ACTIONS(3105), - [anon_sym_DASH_DASH] = ACTIONS(3105), - [anon_sym_QMARK] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3105), - [anon_sym_LBRACK2] = ACTIONS(3105), - [anon_sym_CARET] = ACTIONS(3105), - [anon_sym_AMP] = ACTIONS(3105), - [anon_sym_LT_DASH] = ACTIONS(3105), - [anon_sym_LT_LT] = ACTIONS(3105), - [anon_sym_GT_GT] = ACTIONS(3105), - [anon_sym_GT_GT_GT] = ACTIONS(3105), - [anon_sym_AMP_CARET] = ACTIONS(3105), - [anon_sym_AMP_AMP] = ACTIONS(3105), - [anon_sym_PIPE_PIPE] = ACTIONS(3105), - [anon_sym_or] = ACTIONS(3105), - [anon_sym_QMARK_DOT] = ACTIONS(3105), - [anon_sym_POUND_LBRACK] = ACTIONS(3105), - [anon_sym_is] = ACTIONS(3105), - [anon_sym_BANGis] = ACTIONS(3105), - [anon_sym_in] = ACTIONS(3105), - [anon_sym_BANGin] = ACTIONS(3105), - [anon_sym_STAR_EQ] = ACTIONS(3105), - [anon_sym_SLASH_EQ] = ACTIONS(3105), - [anon_sym_PERCENT_EQ] = ACTIONS(3105), - [anon_sym_LT_LT_EQ] = ACTIONS(3105), - [anon_sym_GT_GT_EQ] = ACTIONS(3105), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(3105), - [anon_sym_AMP_EQ] = ACTIONS(3105), - [anon_sym_AMP_CARET_EQ] = ACTIONS(3105), - [anon_sym_PLUS_EQ] = ACTIONS(3105), - [anon_sym_DASH_EQ] = ACTIONS(3105), - [anon_sym_PIPE_EQ] = ACTIONS(3105), - [anon_sym_CARET_EQ] = ACTIONS(3105), - [anon_sym_COLON_EQ] = ACTIONS(3105), - [anon_sym_shared] = ACTIONS(3105), - [anon_sym_map_LBRACK] = ACTIONS(3105), - [anon_sym_chan] = ACTIONS(3105), - [anon_sym_thread] = ACTIONS(3105), - [anon_sym_atomic] = ACTIONS(3105), - }, -}; - -static const uint16_t ts_small_parse_table[] = { - [0] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3039), 1, - anon_sym_LBRACK, - ACTIONS(3041), 62, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_struct, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [71] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 62, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_struct, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [142] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3135), 1, - anon_sym_LBRACK, - ACTIONS(3137), 62, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_struct, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [213] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3103), 1, - anon_sym_LBRACK, - ACTIONS(3105), 62, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_struct, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [284] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3099), 1, - anon_sym_LBRACK, - ACTIONS(3101), 62, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_struct, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3135), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [424] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3039), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [493] = 30, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4326), 1, - anon_sym_as, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4340), 1, - anon_sym_COLON, - ACTIONS(4342), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4344), 1, - anon_sym_DASH_DASH, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - ACTIONS(4352), 1, - anon_sym_LT_DASH, - ACTIONS(4354), 1, - anon_sym_LT_LT, - ACTIONS(4356), 1, - anon_sym_AMP_AMP, - ACTIONS(4358), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_or, - ACTIONS(4362), 1, - anon_sym_is, - ACTIONS(4364), 1, - anon_sym_BANGis, - ACTIONS(4366), 1, - anon_sym_in, - ACTIONS(4368), 1, - anon_sym_BANGin, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1766), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4336), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4334), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1770), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [616] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3131), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3103), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3099), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3099), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3039), 32, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_map_LBRACK, - [961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3103), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [1030] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3135), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [1099] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 29, - anon_sym_as, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3131), 32, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - [1168] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4326), 1, - anon_sym_as, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4342), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4344), 1, - anon_sym_DASH_DASH, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - ACTIONS(4356), 1, - anon_sym_AMP_AMP, - ACTIONS(4358), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_or, - ACTIONS(4362), 1, - anon_sym_is, - ACTIONS(4364), 1, - anon_sym_BANGis, - ACTIONS(4366), 1, - anon_sym_in, - ACTIONS(4368), 1, - anon_sym_BANGin, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4336), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4334), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2220), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1278] = 16, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - ACTIONS(4366), 1, - anon_sym_in, - ACTIONS(4368), 1, - anon_sym_BANGin, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4336), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4334), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 29, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1372] = 17, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - ACTIONS(4356), 1, - anon_sym_AMP_AMP, - ACTIONS(4366), 1, - anon_sym_in, - ACTIONS(4368), 1, - anon_sym_BANGin, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4336), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4334), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 28, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1468] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4326), 1, - anon_sym_as, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4342), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4344), 1, - anon_sym_DASH_DASH, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - ACTIONS(4356), 1, - anon_sym_AMP_AMP, - ACTIONS(4358), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_or, - ACTIONS(4362), 1, - anon_sym_is, - ACTIONS(4364), 1, - anon_sym_BANGis, - ACTIONS(4366), 1, - anon_sym_in, - ACTIONS(4368), 1, - anon_sym_BANGin, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4336), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4334), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2210), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1578] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4334), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2108), 37, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1666] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4334), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2112), 37, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1754] = 12, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4334), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1840] = 12, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2092), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2076), 45, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [1926] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2230), 49, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2010] = 29, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4326), 1, - anon_sym_as, - ACTIONS(4328), 1, - anon_sym_COMMA, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4342), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4344), 1, - anon_sym_DASH_DASH, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - ACTIONS(4352), 1, - anon_sym_LT_DASH, - ACTIONS(4354), 1, - anon_sym_LT_LT, - ACTIONS(4356), 1, - anon_sym_AMP_AMP, - ACTIONS(4358), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4360), 1, - anon_sym_or, - ACTIONS(4362), 1, - anon_sym_is, - ACTIONS(4364), 1, - anon_sym_BANGis, - ACTIONS(4366), 1, - anon_sym_in, - ACTIONS(4368), 1, - anon_sym_BANGin, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1766), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4336), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4334), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1770), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2130] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2164), 49, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2214] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4332), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4334), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 37, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2302] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_LPAREN, - ACTIONS(4338), 1, - anon_sym_LBRACK, - ACTIONS(4346), 1, - anon_sym_QMARK, - ACTIONS(4348), 1, - anon_sym_BANG, - STATE(1715), 1, - sym_argument_list, - STATE(1716), 1, - sym_or_block, - STATE(4166), 1, - sym_type_parameters, - ACTIONS(4324), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4350), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2076), 49, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2386] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2700), 58, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2453] = 26, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4372), 1, - anon_sym_as, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4386), 1, - anon_sym_DASH_DASH, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_or, - ACTIONS(4400), 1, - anon_sym_is, - ACTIONS(4402), 1, - anon_sym_BANGis, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(3569), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1684), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(1690), 15, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2566] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_LBRACK, - ACTIONS(2730), 58, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2633] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2404), 1, - anon_sym_LBRACK, - ACTIONS(4408), 1, - anon_sym_else, - STATE(1724), 1, - sym_else_branch, - ACTIONS(2406), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2704] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2398), 1, - anon_sym_LBRACK, - ACTIONS(4408), 1, - anon_sym_else, - STATE(1729), 1, - sym_else_branch, - ACTIONS(2400), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2775] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2841] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_LBRACK, - ACTIONS(3097), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2907] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3107), 1, - anon_sym_LBRACK, - ACTIONS(3109), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [2973] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3111), 1, - anon_sym_LBRACK, - ACTIONS(3113), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3039] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3119), 1, - anon_sym_LBRACK, - ACTIONS(3121), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3105] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3171] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2076), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3253] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3319] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4372), 1, - anon_sym_as, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4386), 1, - anon_sym_DASH_DASH, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_or, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - ACTIONS(4410), 1, - anon_sym_is, - ACTIONS(4412), 1, - anon_sym_BANGis, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2124), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3427] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - ACTIONS(2704), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3493] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACK, - ACTIONS(4414), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3561] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_LBRACK, - ACTIONS(2919), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3627] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACK, - ACTIONS(2935), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3693] = 12, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 39, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3777] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3845] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2939), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3911] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 35, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [3997] = 16, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 27, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4089] = 17, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 26, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4183] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2108), 35, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4269] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2112), 35, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4355] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2991), 1, - anon_sym_LBRACK, - ACTIONS(2993), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4421] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACK, - ACTIONS(3009), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4487] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3079), 1, - anon_sym_LBRACK, - ACTIONS(3081), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4553] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2838), 1, - anon_sym_LBRACK, - ACTIONS(2840), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4619] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_LBRACK, - ACTIONS(2844), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4418), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4416), 35, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_assert, - anon_sym_defer, - anon_sym_goto, - anon_sym_break, - anon_sym_continue, - anon_sym_return, - anon_sym_DOLLARfor, - anon_sym_for, - anon_sym_POUND, - anon_sym_asm, - [4751] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2782), 1, - anon_sym_LBRACK, - ACTIONS(2784), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4817] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2854), 1, - anon_sym_LBRACK, - ACTIONS(2856), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4883] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2925), 1, - anon_sym_LBRACK, - ACTIONS(2927), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [4949] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_SEMI, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4424), 1, - anon_sym_LBRACE, - ACTIONS(4426), 1, - anon_sym_COMMA, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1529), 1, - sym_block, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3227), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5073] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACK, - ACTIONS(2959), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5139] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2700), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5207] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 57, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5273] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - STATE(1744), 1, - sym_type_parameters, - ACTIONS(2704), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5341] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5409] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, - anon_sym_LBRACK, - ACTIONS(2967), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5477] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(4466), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5545] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_SEMI, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4426), 1, - anon_sym_COMMA, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(3751), 1, - sym_block, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3227), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5669] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2164), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5751] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4372), 1, - anon_sym_as, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4386), 1, - anon_sym_DASH_DASH, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_or, - ACTIONS(4400), 1, - anon_sym_is, - ACTIONS(4402), 1, - anon_sym_BANGis, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2210), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5859] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4372), 1, - anon_sym_as, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4386), 1, - anon_sym_DASH_DASH, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - ACTIONS(4394), 1, - anon_sym_AMP_AMP, - ACTIONS(4396), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4398), 1, - anon_sym_or, - ACTIONS(4400), 1, - anon_sym_is, - ACTIONS(4402), 1, - anon_sym_BANGis, - ACTIONS(4404), 1, - anon_sym_in, - ACTIONS(4406), 1, - anon_sym_BANGin, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4376), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4380), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4378), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2220), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [5967] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4374), 1, - anon_sym_LPAREN, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4388), 1, - anon_sym_QMARK, - ACTIONS(4390), 1, - anon_sym_BANG, - STATE(1854), 1, - sym_or_block, - STATE(1861), 1, - sym_argument_list, - STATE(4399), 1, - sym_type_parameters, - ACTIONS(4370), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4392), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2230), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6049] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(2780), 1, - anon_sym_COLON, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6119] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2850), 1, - anon_sym_LBRACK, - ACTIONS(2852), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6184] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_LBRACK, - ACTIONS(2812), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6249] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACK, - ACTIONS(3125), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6314] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2822), 1, - anon_sym_LBRACK, - ACTIONS(2824), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6379] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3175), 1, - anon_sym_LBRACK, - ACTIONS(3177), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6444] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2818), 1, - anon_sym_LBRACK, - ACTIONS(2820), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6509] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6574] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3031), 1, - anon_sym_LBRACK, - ACTIONS(3033), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6639] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LBRACK, - ACTIONS(2808), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6704] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2858), 1, - anon_sym_LBRACK, - ACTIONS(2860), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6769] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_LBRACK, - ACTIONS(2730), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6834] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3071), 1, - anon_sym_LBRACK, - ACTIONS(3073), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6899] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_LBRACK, - ACTIONS(3077), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [6964] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2911), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7029] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2700), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7094] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7161] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_LBRACK, - ACTIONS(3117), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7226] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_LBRACK, - ACTIONS(3141), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7291] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3145), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7356] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_LBRACK, - ACTIONS(3037), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7421] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_LBRACK, - ACTIONS(3069), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7486] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_LBRACK, - ACTIONS(2985), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7551] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_LBRACK, - ACTIONS(2981), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7616] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACK, - ACTIONS(2700), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2766), 52, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7683] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2971), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2973), 50, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7750] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_LBRACK, - ACTIONS(3045), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7815] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2893), 1, - anon_sym_LBRACK, - ACTIONS(2895), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7880] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACK, - ACTIONS(2949), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LT_DASH, - ACTIONS(2951), 50, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [7947] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8012] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2929), 1, - anon_sym_LBRACK, - ACTIONS(2931), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8077] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2961), 1, - anon_sym_LBRACK, - ACTIONS(2963), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8142] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2866), 1, - anon_sym_LBRACK, - ACTIONS(2868), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8207] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2889), 1, - anon_sym_LBRACK, - ACTIONS(2891), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8272] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_LBRACK, - ACTIONS(3157), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8337] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_LBRACK, - ACTIONS(3197), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8402] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_LBRACK, - ACTIONS(3061), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8467] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8532] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_LBRACK, - ACTIONS(2899), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8597] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_LBRACK, - ACTIONS(3173), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8662] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3183), 1, - anon_sym_LBRACK, - ACTIONS(3185), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8727] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_LBRACK, - ACTIONS(3189), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8792] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3161), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8857] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3057), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8922] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_LBRACK, - ACTIONS(2816), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [8987] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2802), 1, - anon_sym_LBRACK, - ACTIONS(2804), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9052] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_LBRACK, - ACTIONS(2772), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9117] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_LBRACK, - ACTIONS(2800), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9182] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACK, - ACTIONS(2700), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(2766), 52, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9249] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3083), 1, - anon_sym_LBRACK, - ACTIONS(3085), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9314] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2398), 1, - anon_sym_LBRACK, - ACTIONS(4470), 1, - anon_sym_else, - STATE(1842), 1, - sym_else_branch, - ACTIONS(2400), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9383] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACK, - ACTIONS(2766), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9448] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2404), 1, - anon_sym_LBRACK, - ACTIONS(4470), 1, - anon_sym_else, - STATE(1841), 1, - sym_else_branch, - ACTIONS(2406), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9517] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_LBRACK, - ACTIONS(3169), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9582] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LBRACK, - ACTIONS(3001), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9647] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3019), 1, - anon_sym_LBRACK, - ACTIONS(3021), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9712] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3065), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9777] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3023), 1, - anon_sym_LBRACK, - ACTIONS(3025), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9842] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LBRACK, - ACTIONS(3193), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9907] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [9974] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2846), 1, - anon_sym_LBRACK, - ACTIONS(2848), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10039] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10104] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10169] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2826), 1, - anon_sym_LBRACK, - ACTIONS(2828), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10234] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_LBRACK, - ACTIONS(2923), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10299] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3049), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10364] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10429] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_LBRACK, - ACTIONS(2907), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10494] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3147), 1, - anon_sym_LBRACK, - ACTIONS(3149), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10559] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3163), 1, - anon_sym_LBRACK, - ACTIONS(3165), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10624] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10689] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2870), 1, - anon_sym_LBRACK, - ACTIONS(2872), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10754] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [10819] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACK, - ACTIONS(2949), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2951), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [10886] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2971), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2973), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [10953] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11018] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2834), 1, - anon_sym_LBRACK, - ACTIONS(2836), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11083] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2830), 1, - anon_sym_LBRACK, - ACTIONS(2832), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11148] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2790), 1, - anon_sym_LBRACK, - ACTIONS(2792), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11213] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LBRACK, - ACTIONS(3093), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11278] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3087), 1, - anon_sym_LBRACK, - ACTIONS(3089), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11343] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACK, - ACTIONS(2788), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11408] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(3005), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11473] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_LBRACK, - ACTIONS(2997), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11538] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2878), 1, - anon_sym_LBRACK, - ACTIONS(2880), 56, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11603] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(4472), 1, - anon_sym_BANG, - ACTIONS(2943), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11670] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3103), 1, - anon_sym_LBRACK, - ACTIONS(3105), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [11734] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [11818] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LBRACE, - ACTIONS(1690), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4091), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3305), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [11934] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12018] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12106] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 24, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12202] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2230), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2228), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [12286] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12384] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - anon_sym_EQ, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4488), 1, - anon_sym_as, - ACTIONS(4498), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4500), 1, - anon_sym_DASH_DASH, - ACTIONS(4502), 1, - anon_sym_AMP_AMP, - ACTIONS(4504), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4506), 1, - anon_sym_or, - ACTIONS(4508), 1, - anon_sym_is, - ACTIONS(4510), 1, - anon_sym_BANGis, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(4514), 1, - anon_sym_BANGin, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4496), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2218), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [12496] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - anon_sym_EQ, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4488), 1, - anon_sym_as, - ACTIONS(4498), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4500), 1, - anon_sym_DASH_DASH, - ACTIONS(4502), 1, - anon_sym_AMP_AMP, - ACTIONS(4504), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4506), 1, - anon_sym_or, - ACTIONS(4508), 1, - anon_sym_is, - ACTIONS(4510), 1, - anon_sym_BANGis, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(4514), 1, - anon_sym_BANGin, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4496), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2208), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [12608] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2164), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [12692] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2700), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12758] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2108), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12846] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2112), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [12934] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13000] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, - anon_sym_LBRACK, - ACTIONS(2967), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13066] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_SEMI, - ACTIONS(1690), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(3969), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3305), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13182] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2164), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2162), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13266] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2208), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13378] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2218), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13490] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2230), 15, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2228), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13574] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3039), 1, - anon_sym_LBRACK, - ACTIONS(3041), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [13638] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(4532), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13704] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3099), 1, - anon_sym_LBRACK, - ACTIONS(3101), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [13768] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(4514), 1, - anon_sym_BANGin, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4496), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 24, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [13864] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [13950] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - STATE(1860), 1, - sym_type_parameters, - ACTIONS(2704), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14016] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [14102] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 1, - anon_sym_LBRACE, - ACTIONS(1770), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - ACTIONS(4534), 1, - anon_sym_COMMA, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3227), 13, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14220] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4502), 1, - anon_sym_AMP_AMP, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(4514), 1, - anon_sym_BANGin, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4496), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [14318] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3135), 1, - anon_sym_LBRACK, - ACTIONS(3137), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [14382] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3131), 1, - anon_sym_LBRACK, - ACTIONS(3133), 55, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [14446] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACK, - ACTIONS(4536), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14512] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2112), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [14600] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2108), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [14688] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4492), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [14776] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2782), 1, - anon_sym_LBRACK, - ACTIONS(2784), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14839] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2870), 1, - anon_sym_LBRACK, - ACTIONS(2872), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14902] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACK, - ACTIONS(3125), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [14965] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2878), 1, - anon_sym_LBRACK, - ACTIONS(2880), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15028] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2830), 1, - anon_sym_LBRACK, - ACTIONS(2832), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15091] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3175), 1, - anon_sym_LBRACK, - ACTIONS(3177), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15154] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_LBRACK, - ACTIONS(3117), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15217] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_LBRACK, - ACTIONS(3077), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15280] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3071), 1, - anon_sym_LBRACK, - ACTIONS(3073), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15343] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15406] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_LBRACK, - ACTIONS(3173), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15469] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3119), 1, - anon_sym_LBRACK, - ACTIONS(3121), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15532] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15595] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - ACTIONS(4538), 1, - anon_sym_is, - ACTIONS(4540), 1, - anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2122), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15706] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - ACTIONS(4538), 1, - anon_sym_is, - ACTIONS(4540), 1, - anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4432), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2122), 15, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15817] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3111), 1, - anon_sym_LBRACK, - ACTIONS(3113), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15880] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3107), 1, - anon_sym_LBRACK, - ACTIONS(3109), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [15943] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_LBRACK, - ACTIONS(3097), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16006] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2961), 1, - anon_sym_LBRACK, - ACTIONS(2963), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16069] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 7, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_CARET, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16154] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3161), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16217] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_LBRACK, - ACTIONS(3169), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16280] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16343] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2218), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16454] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 53, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16519] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_LBRACK, - ACTIONS(3069), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16582] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2911), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16645] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2889), 1, - anon_sym_LBRACK, - ACTIONS(2891), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16708] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2971), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2973), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [16773] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16836] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACK, - ACTIONS(2949), 19, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2951), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [16901] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [16964] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_LBRACK, - ACTIONS(2985), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17027] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_LBRACK, - ACTIONS(2981), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17090] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_LBRACK, - ACTIONS(2919), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17153] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACK, - ACTIONS(2935), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17216] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2929), 1, - anon_sym_LBRACK, - ACTIONS(2931), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17279] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2939), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17342] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2866), 1, - anon_sym_LBRACK, - ACTIONS(2868), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17405] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2850), 1, - anon_sym_LBRACK, - ACTIONS(2852), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17468] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2818), 1, - anon_sym_LBRACK, - ACTIONS(2820), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17531] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_LBRACK, - ACTIONS(2816), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17594] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2802), 1, - anon_sym_LBRACK, - ACTIONS(2804), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17657] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_LBRACK, - ACTIONS(2800), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17720] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3083), 1, - anon_sym_LBRACK, - ACTIONS(3085), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17783] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LBRACK, - ACTIONS(3001), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17846] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3019), 1, - anon_sym_LBRACK, - ACTIONS(3021), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17909] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3023), 1, - anon_sym_LBRACK, - ACTIONS(3025), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [17972] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LBRACK, - ACTIONS(3193), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18035] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2846), 1, - anon_sym_LBRACK, - ACTIONS(2848), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18098] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18161] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2991), 1, - anon_sym_LBRACK, - ACTIONS(2993), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18224] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACK, - ACTIONS(3009), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18287] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4542), 1, - anon_sym_else, - STATE(1976), 1, - sym_else_branch, - ACTIONS(2406), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2404), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18354] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4542), 1, - anon_sym_else, - STATE(1980), 1, - sym_else_branch, - ACTIONS(2400), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2398), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18421] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3079), 1, - anon_sym_LBRACK, - ACTIONS(3081), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18484] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18547] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_LBRACK, - ACTIONS(3189), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18610] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_LBRACK, - ACTIONS(2923), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18673] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_LBRACK, - ACTIONS(2907), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2728), 37, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18799] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2826), 1, - anon_sym_LBRACK, - ACTIONS(2828), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18862] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_LBRACK, - ACTIONS(2899), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18925] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3163), 1, - anon_sym_LBRACK, - ACTIONS(3165), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [18988] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3183), 1, - anon_sym_LBRACK, - ACTIONS(3185), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19051] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19114] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACK, - ACTIONS(2766), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19177] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2858), 1, - anon_sym_LBRACK, - ACTIONS(2860), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19240] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LBRACK, - ACTIONS(2808), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19303] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_LBRACK, - ACTIONS(2812), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19366] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2838), 1, - anon_sym_LBRACK, - ACTIONS(2840), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19429] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_LBRACK, - ACTIONS(2844), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19492] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - anon_sym_else, - STATE(2018), 1, - sym_else_branch, - ACTIONS(2406), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2404), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [19559] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19622] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3049), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19685] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2925), 1, - anon_sym_LBRACK, - ACTIONS(2927), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19748] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2834), 1, - anon_sym_LBRACK, - ACTIONS(2836), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19811] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2790), 1, - anon_sym_LBRACK, - ACTIONS(2792), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [19874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2698), 37, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [19937] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20000] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LBRACK, - ACTIONS(3093), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20063] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACK, - ACTIONS(2959), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20126] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3087), 1, - anon_sym_LBRACK, - ACTIONS(3089), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20189] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACK, - ACTIONS(2788), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20252] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2822), 1, - anon_sym_LBRACK, - ACTIONS(2824), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20315] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(3005), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20378] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2893), 1, - anon_sym_LBRACK, - ACTIONS(2895), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20441] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3057), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20504] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - ACTIONS(2704), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20567] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20630] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2208), 15, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20741] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 53, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20806] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_LBRACK, - ACTIONS(3061), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20869] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [20932] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2076), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21019] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2728), 37, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [21082] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_LBRACK, - ACTIONS(2772), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21145] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_LBRACK, - ACTIONS(3197), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21208] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2973), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21271] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACK, - ACTIONS(2951), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21334] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_LBRACK, - ACTIONS(2997), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21397] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2698), 37, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21460] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 23, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21555] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_EQ, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 22, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21652] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_LBRACK, - ACTIONS(3157), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21715] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3031), 1, - anon_sym_LBRACK, - ACTIONS(3033), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21778] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2112), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21865] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_LBRACK, - ACTIONS(3037), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21928] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_LBRACK, - ACTIONS(3045), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [21991] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(2108), 3, - anon_sym_EQ, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 29, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22078] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3145), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22141] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4544), 1, - anon_sym_else, - STATE(2013), 1, - sym_else_branch, - ACTIONS(2400), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2398), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [22208] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_LBRACK, - ACTIONS(3141), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22271] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(4546), 1, - anon_sym_BANG, - ACTIONS(2943), 53, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22336] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2854), 1, - anon_sym_LBRACK, - ACTIONS(2856), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22399] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 1, - anon_sym_COMMA, - ACTIONS(4550), 1, - anon_sym_COLON_EQ, - STATE(3919), 1, - aux_sym_identifier_list_repeat1, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2772), 19, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2770), 31, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [22470] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3147), 1, - anon_sym_LBRACK, - ACTIONS(3149), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22533] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22596] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3065), 54, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22659] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4552), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2738), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22723] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - ACTIONS(4554), 1, - anon_sym_is, - ACTIONS(4556), 1, - anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2122), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22833] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1690), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3305), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [22943] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2015), 1, - sym_type_parameters, - ACTIONS(2704), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2702), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23007] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4558), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2732), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [23071] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - ACTIONS(4560), 1, - anon_sym_is, - ACTIONS(4562), 1, - anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2122), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23181] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4566), 1, - anon_sym_COMMA, - ACTIONS(4568), 1, - anon_sym_EQ, - STATE(3351), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4564), 13, - anon_sym_LBRACE, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2880), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2878), 21, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [23251] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2038), 1, - sym_type_parameters, - ACTIONS(2704), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2702), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [23315] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4570), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2732), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23379] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4572), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2738), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [23443] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2124), 1, - anon_sym_EQ, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4524), 1, - anon_sym_AMP_AMP, - ACTIONS(4526), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4528), 1, - anon_sym_in, - ACTIONS(4530), 1, - anon_sym_BANGin, - ACTIONS(4574), 1, - anon_sym_is, - ACTIONS(4576), 1, - anon_sym_BANGis, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4520), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4516), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4522), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4518), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2122), 14, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2822), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2816), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2814), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [23675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3159), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2909), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3107), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [23858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3167), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [23919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3027), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [23980] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3187), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3183), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24102] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3095), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [24163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3003), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2995), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [24285] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4580), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4578), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [24346] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2983), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24407] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2979), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2702), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [24529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3179), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24590] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3099), 29, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [24651] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3147), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24712] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3191), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [24773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3065), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3063), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24834] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3051), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [24895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3131), 29, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [24956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2929), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25017] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3067), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25078] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2822), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [25139] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3107), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [25200] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2796), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2794), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [25261] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(2884), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2882), 34, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2818), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [25385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3043), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3111), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [25507] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3035), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25568] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2967), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2965), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3031), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25690] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3143), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2868), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2866), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2850), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2826), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [25934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2901), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [25995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2826), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [26056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3139), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2816), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2814), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2802), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2913), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [26300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2798), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26361] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3151), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2806), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [26483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2840), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2838), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3083), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3155), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3195), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2858), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [26788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2999), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3123), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [26910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2917), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [26971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3151), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [27032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3019), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3055), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3023), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3127), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [27276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3115), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3191), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3171), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2979), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [27520] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3047), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27581] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3075), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3159), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [27703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2983), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [27764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3175), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [27825] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3127), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [27886] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3071), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [27947] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2846), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28008] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2935), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2933), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3171), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3015), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2937), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28252] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3011), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2991), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3007), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28435] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2947), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2951), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2954), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [28500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2947), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2951), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2954), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28563] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2969), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(2973), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2976), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28626] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - anon_sym_EQ, - ACTIONS(2969), 16, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_LT_DASH, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2973), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2976), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [28691] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3111), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28752] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3071), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2999), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [28874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2858), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3163), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [28996] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3103), 29, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [29057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2806), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29118] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3083), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [29179] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2921), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29240] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2987), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [29301] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2905), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29362] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2786), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2961), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29484] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3087), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29545] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3067), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [29606] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2810), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2796), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2794), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [29728] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3075), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [29789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2766), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2768), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [29850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2830), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [29911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3079), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [29972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2878), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2818), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30094] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3003), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [30155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2897), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30216] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(2884), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2882), 34, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [30279] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2846), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [30340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3163), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [30401] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2770), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [30462] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2792), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2790), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2889), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [30584] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2874), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30645] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3143), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [30706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3079), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3093), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3091), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30828] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2844), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2842), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3119), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [30950] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2870), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2967), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2965), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [31072] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2864), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2862), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31133] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3095), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3007), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2991), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3047), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [31377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2937), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31438] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - anon_sym_EQ, - ACTIONS(2969), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2973), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2976), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [31503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2921), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [31564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2935), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2933), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2917), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31686] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_EQ, - ACTIONS(2947), 16, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - ACTIONS(2951), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2954), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [31751] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2810), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [31812] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3155), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [31873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3119), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [31934] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3167), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [31995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2929), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32056] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2802), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32117] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3031), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3035), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3043), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2913), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32361] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4587), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4585), 48, - anon_sym_DOT, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_struct, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_go, - anon_sym_spawn, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - sym_float_literal, - sym_rune_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - [32422] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2893), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3051), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32544] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3065), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3063), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3147), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32666] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3179), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3027), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2951), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2954), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3139), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [32910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2973), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2976), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [32971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3183), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3187), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33093] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2798), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2995), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2868), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2866), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2850), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2770), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2766), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2768), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33459] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2961), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33520] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4589), 1, - anon_sym_BANG, - ACTIONS(2943), 17, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2941), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2889), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2909), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3039), 29, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [33766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(4591), 2, - anon_sym_COMMA, - anon_sym_in, - ACTIONS(2772), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2770), 31, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [33831] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2840), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2838), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2844), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2842), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [33953] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3027), 1, - anon_sym_LBRACE, - ACTIONS(2772), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2770), 33, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34018] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2782), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2834), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34140] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2782), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2854), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34262] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2830), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34323] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4593), 1, - anon_sym_BANG, - ACTIONS(2943), 17, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2941), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34386] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2878), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34447] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3059), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2698), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34569] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - ACTIONS(2967), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2965), 34, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34632] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2901), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2925), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34754] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2698), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34815] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2854), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [34876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2786), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3087), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [34998] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3093), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3091), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35059] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2792), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2790), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2834), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2864), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2862), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2772), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2770), 33, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2893), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_DOT, - ACTIONS(3029), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3027), 34, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35429] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_DOT, - ACTIONS(3029), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3027), 34, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35492] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3175), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2870), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2874), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35675] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2897), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35736] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2987), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2702), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35858] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2905), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [35919] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - ACTIONS(2700), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2698), 34, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [35982] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2772), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2770), 33, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2959), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2957), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2959), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2957), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3123), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3115), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36289] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3011), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3015), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36411] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2925), 35, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [36472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3023), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3055), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3019), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36655] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3059), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36716] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 18, - anon_sym_EQ, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(3195), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_LT_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [36777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3135), 29, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_map_LBRACK, - anon_sym_DOT_DOT, - [36838] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2076), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [36913] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4609), 1, - anon_sym_EQ, - ACTIONS(4607), 14, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - ACTIONS(2880), 17, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2878), 19, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [36976] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2164), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37051] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2230), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37126] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2404), 1, - anon_sym_LBRACK, - ACTIONS(4611), 1, - anon_sym_else, - STATE(2272), 1, - sym_else_branch, - ACTIONS(2406), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37188] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2398), 1, - anon_sym_LBRACK, - ACTIONS(4611), 1, - anon_sym_else, - STATE(2271), 1, - sym_else_branch, - ACTIONS(2400), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37250] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4613), 1, - anon_sym_COLON, - ACTIONS(4615), 1, - anon_sym_static, - ACTIONS(4617), 1, - anon_sym_volatile, - ACTIONS(4316), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4314), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37314] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4621), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4619), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37430] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2728), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(2730), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37487] = 27, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4605), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4637), 1, - anon_sym_LBRACK2, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - ACTIONS(4653), 1, - anon_sym_AT_LBRACK, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(3475), 1, - sym_attribute, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4623), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [37592] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4615), 1, - anon_sym_static, - ACTIONS(4617), 1, - anon_sym_volatile, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4316), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4314), 24, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [37655] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_LBRACK, - ACTIONS(2730), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37712] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2700), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37769] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2700), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37826] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - STATE(2230), 1, - sym_type_parameters, - ACTIONS(2704), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37885] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(4657), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [37944] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4661), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4659), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [38001] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4615), 1, - anon_sym_static, - ACTIONS(4617), 1, - anon_sym_volatile, - ACTIONS(4316), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4314), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [38062] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2698), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(2700), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [38119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4665), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4663), 26, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_else, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [38176] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACK, - ACTIONS(4667), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38235] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_LBRACK, - ACTIONS(2730), 48, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38292] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3145), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38348] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_LBRACK, - ACTIONS(2919), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38404] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_LBRACK, - ACTIONS(3045), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38460] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_LBRACK, - ACTIONS(3157), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38516] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_LBRACK, - ACTIONS(3037), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38572] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3057), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38628] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3175), 1, - anon_sym_LBRACK, - ACTIONS(3177), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38684] = 27, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(4669), 1, - anon_sym_LPAREN, - ACTIONS(4671), 1, - anon_sym_LT2, - STATE(3415), 1, - sym_plain_type, - STATE(3432), 1, - sym_signature, - STATE(3787), 1, - sym_generic_parameters, - STATE(4416), 1, - sym_reference_expression, - STATE(2513), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(3029), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [38788] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2822), 1, - anon_sym_LBRACK, - ACTIONS(2824), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38844] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38900] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3031), 1, - anon_sym_LBRACK, - ACTIONS(3033), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [38956] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2818), 1, - anon_sym_LBRACK, - ACTIONS(2820), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39012] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_LBRACK, - ACTIONS(3197), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2255), 23, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4673), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [39124] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3049), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39180] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39236] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39292] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 46, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39350] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39406] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - ACTIONS(2704), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39462] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 9, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2074), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [39540] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_LBRACK, - ACTIONS(2812), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39596] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39652] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3065), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39708] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3147), 1, - anon_sym_LBRACK, - ACTIONS(3149), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3039), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3041), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [39820] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACK, - ACTIONS(2959), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39876] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2889), 1, - anon_sym_LBRACK, - ACTIONS(2891), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [39932] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2220), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - [40030] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LBRACK, - ACTIONS(2808), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40086] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3183), 1, - anon_sym_LBRACK, - ACTIONS(3185), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40142] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2925), 1, - anon_sym_LBRACK, - ACTIONS(2927), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40198] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_LBRACK, - ACTIONS(3189), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40254] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3161), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40310] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40366] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACK, - ACTIONS(2766), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40422] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2961), 1, - anon_sym_LBRACK, - ACTIONS(2963), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40478] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2230), 9, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2228), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [40556] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2911), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40612] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2971), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2973), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [40670] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_LBRACK, - ACTIONS(2772), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40726] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACK, - ACTIONS(2949), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - ACTIONS(2951), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [40784] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2858), 1, - anon_sym_LBRACK, - ACTIONS(2860), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40840] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2854), 1, - anon_sym_LBRACK, - ACTIONS(2856), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40896] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2782), 1, - anon_sym_LBRACK, - ACTIONS(2784), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [40952] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_LBRACK, - ACTIONS(2844), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41008] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2838), 1, - anon_sym_LBRACK, - ACTIONS(2840), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41064] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3135), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3137), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [41120] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3131), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3133), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [41176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3103), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3105), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [41232] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3099), 24, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_BANGis, - anon_sym_BANGin, - anon_sym_map_LBRACK, - ACTIONS(3101), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_PIPE, - anon_sym_fn, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_struct, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_or, - anon_sym_is, - anon_sym_in, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_DOT_DOT, - [41288] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1789), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4691), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [41344] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(4693), 1, - anon_sym_BANG, - ACTIONS(2943), 46, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1927), 23, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4695), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [41458] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_LBRACK, - ACTIONS(2997), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41514] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_LBRACK, - ACTIONS(3173), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41570] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3119), 1, - anon_sym_LBRACK, - ACTIONS(3121), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41626] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(3005), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41682] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2164), 9, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2162), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [41760] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3071), 1, - anon_sym_LBRACK, - ACTIONS(3073), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41816] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2210), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - anon_sym_AT_LBRACK, - [41914] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACK, - ACTIONS(2788), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [41970] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_LBRACK, - ACTIONS(3077), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42026] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3163), 1, - anon_sym_LBRACK, - ACTIONS(3165), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42082] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3087), 1, - anon_sym_LBRACK, - ACTIONS(3089), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42138] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 46, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42196] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2893), 1, - anon_sym_LBRACK, - ACTIONS(2895), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42252] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2112), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42328] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2108), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42404] = 17, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - anon_sym_AT_LBRACK, - [42488] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3079), 1, - anon_sym_LBRACK, - ACTIONS(3081), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42544] = 16, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - anon_sym_AT_LBRACK, - [42626] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42702] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACK, - ACTIONS(3009), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42758] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2991), 1, - anon_sym_LBRACK, - ACTIONS(2993), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42814] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2939), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42870] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACK, - ACTIONS(2935), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42926] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_LBRACK, - ACTIONS(3061), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [42982] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2878), 1, - anon_sym_LBRACK, - ACTIONS(2880), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43038] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43094] = 12, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 29, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_as, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43168] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43224] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2830), 1, - anon_sym_LBRACK, - ACTIONS(2832), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43280] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_LBRACK, - ACTIONS(3117), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43336] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LBRACK, - ACTIONS(3093), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43392] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2790), 1, - anon_sym_LBRACK, - ACTIONS(2792), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43448] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2834), 1, - anon_sym_LBRACK, - ACTIONS(2836), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43504] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3111), 1, - anon_sym_LBRACK, - ACTIONS(3113), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43560] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43616] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACK, - ACTIONS(3125), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43672] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2826), 1, - anon_sym_LBRACK, - ACTIONS(2828), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43728] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4701), 1, - anon_sym_volatile, - ACTIONS(4699), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4697), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [43786] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2870), 1, - anon_sym_LBRACK, - ACTIONS(2872), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43842] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43898] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_LBRACK, - ACTIONS(2899), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [43954] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_LBRACK, - ACTIONS(2907), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44010] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_LBRACK, - ACTIONS(2923), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44066] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3107), 1, - anon_sym_LBRACK, - ACTIONS(3109), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44122] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44178] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44234] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2846), 1, - anon_sym_LBRACK, - ACTIONS(2848), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44290] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LBRACK, - ACTIONS(3193), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44346] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3023), 1, - anon_sym_LBRACK, - ACTIONS(3025), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44402] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3019), 1, - anon_sym_LBRACK, - ACTIONS(3021), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44458] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LBRACK, - ACTIONS(3001), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44514] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3083), 1, - anon_sym_LBRACK, - ACTIONS(3085), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44570] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_LBRACK, - ACTIONS(2800), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44626] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2802), 1, - anon_sym_LBRACK, - ACTIONS(2804), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44682] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_LBRACK, - ACTIONS(2816), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44738] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44794] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_LBRACK, - ACTIONS(3169), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44850] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2850), 1, - anon_sym_LBRACK, - ACTIONS(2852), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44906] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_LBRACK, - ACTIONS(3097), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [44962] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2866), 1, - anon_sym_LBRACK, - ACTIONS(2868), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45018] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2929), 1, - anon_sym_LBRACK, - ACTIONS(2931), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45074] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_LBRACK, - ACTIONS(2981), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45130] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_LBRACK, - ACTIONS(2985), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45186] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_LBRACK, - ACTIONS(3069), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45242] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_LBRACK, - ACTIONS(3141), 47, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [45298] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4707), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2220), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [45395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4699), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4697), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [45450] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4707), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(4717), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [45547] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2108), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [45622] = 17, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4707), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 15, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - [45705] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4707), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2210), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [45802] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2698), 34, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [45857] = 16, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4707), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 16, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - sym_identifier, - [45938] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2112), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [46013] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [46088] = 12, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 28, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [46161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2728), 34, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [46216] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4709), 1, - anon_sym_AMP_AMP, - ACTIONS(4711), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4713), 1, - anon_sym_in, - ACTIONS(4715), 1, - anon_sym_BANGin, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4605), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4703), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4707), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4705), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(4719), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [46313] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4721), 1, - anon_sym_else, - STATE(2372), 1, - sym_else_branch, - ACTIONS(2406), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2404), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [46372] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4721), 1, - anon_sym_else, - STATE(2376), 1, - sym_else_branch, - ACTIONS(2400), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2398), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [46431] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4725), 22, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_json_DOTdecode, - anon_sym_LBRACK2, - anon_sym_TILDE, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_DASH, - sym_float_literal, - sym_rune_literal, - anon_sym_map_LBRACK, - sym___double_quote, - sym___single_quote, - sym___c_double_quote, - sym___c_single_quote, - sym___r_double_quote, - sym___r_single_quote, - ACTIONS(4723), 25, - anon_sym_DOT, - anon_sym_fn, - anon_sym_struct, - anon_sym_mut, - anon_sym_go, - anon_sym_spawn, - sym_none, - sym_true, - sym_false, - sym_nil, - anon_sym_if, - anon_sym_DOLLARif, - anon_sym_match, - anon_sym_select, - anon_sym_lock, - anon_sym_rlock, - anon_sym_unsafe, - anon_sym_sql, - sym_int_literal, - anon_sym_AT, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - [46486] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACK, - ACTIONS(2766), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [46543] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym___global, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_pub, - anon_sym_mut, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - anon_sym_AT_LBRACK, - [46600] = 17, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 14, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [46682] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2112), 23, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [46756] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4751), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2732), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [46812] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4753), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2738), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [46868] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4765), 1, - anon_sym_is, - ACTIONS(4767), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2124), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [46964] = 12, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 27, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [47036] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2230), 35, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [47106] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2220), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [47202] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2210), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [47298] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2076), 35, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [47368] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 23, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [47442] = 16, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 15, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [47522] = 11, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(2164), 35, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [47592] = 27, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4597), 1, - anon_sym_LPAREN, - ACTIONS(4599), 1, - anon_sym_LBRACK, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_BANG, - ACTIONS(4605), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4625), 1, - anon_sym_as, - ACTIONS(4633), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4635), 1, - anon_sym_DASH_DASH, - ACTIONS(4637), 1, - anon_sym_LBRACK2, - ACTIONS(4639), 1, - anon_sym_AMP_AMP, - ACTIONS(4641), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4643), 1, - anon_sym_or, - ACTIONS(4645), 1, - anon_sym_is, - ACTIONS(4647), 1, - anon_sym_BANGis, - ACTIONS(4649), 1, - anon_sym_in, - ACTIONS(4651), 1, - anon_sym_BANGin, - ACTIONS(4653), 1, - anon_sym_AT_LBRACK, - STATE(2197), 1, - sym_argument_list, - STATE(2199), 1, - sym_or_block, - STATE(3655), 1, - sym_attribute, - STATE(4283), 1, - sym_type_parameters, - ACTIONS(4595), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4627), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4773), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(4631), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4629), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [47694] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2321), 1, - sym_type_parameters, - ACTIONS(2704), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2702), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47750] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2108), 23, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [47824] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3159), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47877] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3163), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3171), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [47983] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3119), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2810), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48089] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2822), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48142] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2818), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2796), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2794), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48248] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4717), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [48343] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4719), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [48438] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2925), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48491] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2398), 1, - anon_sym_LBRACK, - ACTIONS(4775), 1, - anon_sym_else, - STATE(2549), 1, - sym_else_branch, - ACTIONS(2400), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [48548] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2404), 1, - anon_sym_LBRACK, - ACTIONS(4775), 1, - anon_sym_else, - STATE(2553), 1, - sym_else_branch, - ACTIONS(2406), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [48605] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2905), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48658] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2806), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48711] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3111), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48817] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2728), 1, - anon_sym_LBRACK, - ACTIONS(2730), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [48870] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2878), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48923] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2858), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [48976] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2893), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49029] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 12, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49084] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3127), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3071), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49190] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3107), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3075), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49296] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3095), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49349] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2889), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49402] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3115), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49455] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3123), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49508] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3047), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3139), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49614] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3143), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3055), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49720] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3167), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3027), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49826] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3067), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2983), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [49932] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4777), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [50027] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2979), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50080] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - anon_sym_COLON, - ACTIONS(2969), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2973), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2976), 26, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [50137] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_COLON, - ACTIONS(2947), 6, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_DOT_DOT, - ACTIONS(2951), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2954), 26, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [50194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2929), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50247] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2868), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2866), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50300] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2850), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50353] = 26, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(3550), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(1770), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [50452] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2826), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50505] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2816), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2814), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50558] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2700), 44, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [50611] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2802), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2798), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50717] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3029), 12, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3027), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50772] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3083), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50825] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, - anon_sym_LBRACK, - ACTIONS(2967), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [50880] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2901), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50933] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2913), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [50986] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2999), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3195), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51092] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2917), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2935), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2933), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51198] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2937), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2991), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51304] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3019), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3007), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51410] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3023), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3175), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3191), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3155), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51622] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3029), 1, - anon_sym_LBRACE, - ACTIONS(2772), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [51677] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3079), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2766), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2768), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2846), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51836] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3015), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2959), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2957), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51942] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3011), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [51995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3031), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52048] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2770), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2921), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52154] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3035), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52207] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3043), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52260] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3051), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3065), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3063), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52366] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52419] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3179), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52472] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3183), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52525] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3059), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52578] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2700), 43, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - sym_identifier, - [52633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2840), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2838), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52686] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3187), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52739] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2844), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2842), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52792] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2782), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52845] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2854), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52898] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2897), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [52951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2874), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53004] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2870), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2864), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2862), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53110] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3151), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53163] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2834), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53216] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2792), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2790), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53269] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3093), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3091), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53322] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3087), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2786), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53428] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3003), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2995), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2702), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53587] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4781), 1, - anon_sym_BANG, - ACTIONS(2943), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2941), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53642] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2909), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2961), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2987), 32, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - anon_sym_DOT_DOT, - [53801] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(1631), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [53911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2965), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [53965] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54075] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2698), 30, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [54129] = 25, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4819), 1, - anon_sym_COMMA, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3271), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54225] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 20, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [54303] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 19, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [54385] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 13, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_DOT_DOT, - [54473] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 12, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_DOT_DOT, - [54563] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 19, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [54645] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4827), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 19, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [54727] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1283), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54837] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(987), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [54947] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(1851), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55057] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2738), 1, - anon_sym_LBRACK, - ACTIONS(4845), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [55111] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(3027), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2772), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2770), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [55167] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2700), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [55221] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2331), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55331] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2208), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55435] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(2218), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_COLON, - anon_sym_DOT_DOT, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55539] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1145), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55649] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2112), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [55721] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2108), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [55793] = 17, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [55873] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(1908), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [55983] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4867), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(2733), 1, - sym_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56093] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(2220), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56187] = 16, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [56265] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - STATE(2519), 1, - sym_type_parameters, - ACTIONS(2704), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [56319] = 13, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 21, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [56391] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(2613), 1, - sym_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56501] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2732), 1, - anon_sym_LBRACK, - ACTIONS(4873), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [56555] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(2210), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56649] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2149), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56759] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2300), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56869] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4785), 1, - anon_sym_COMMA, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1725), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [56979] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2766), 1, - anon_sym_LBRACE, - ACTIONS(2965), 1, - anon_sym_LBRACK, - ACTIONS(2967), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57033] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4745), 1, - anon_sym_AMP_AMP, - ACTIONS(4747), 1, - anon_sym_in, - ACTIONS(4749), 1, - anon_sym_BANGin, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4761), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4731), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(1690), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4735), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4733), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [57127] = 12, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 25, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57197] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3139), 1, - anon_sym_LBRACK, - ACTIONS(3141), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57248] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2866), 1, - anon_sym_LBRACK, - ACTIONS(2868), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57299] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2897), 1, - anon_sym_LBRACK, - ACTIONS(2899), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57350] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2874), 1, - anon_sym_LBRACK, - ACTIONS(2876), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57401] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2870), 1, - anon_sym_LBRACK, - ACTIONS(2872), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57452] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2862), 1, - anon_sym_LBRACK, - ACTIONS(2864), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57503] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2834), 1, - anon_sym_LBRACK, - ACTIONS(2836), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57554] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2790), 1, - anon_sym_LBRACK, - ACTIONS(2792), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57605] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3091), 1, - anon_sym_LBRACK, - ACTIONS(3093), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57656] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3087), 1, - anon_sym_LBRACK, - ACTIONS(3089), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57707] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2786), 1, - anon_sym_LBRACK, - ACTIONS(2788), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57758] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_LBRACK, - ACTIONS(2772), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [57809] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACE, - anon_sym_LBRACK, - ACTIONS(2772), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2770), 28, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_RBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [57862] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3339), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [57955] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3003), 1, - anon_sym_LBRACK, - ACTIONS(3005), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58006] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2995), 1, - anon_sym_LBRACK, - ACTIONS(2997), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58057] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4905), 1, - anon_sym_AMP_AMP, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4891), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [58148] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3335), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [58241] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2941), 1, - anon_sym_LBRACK, - ACTIONS(4915), 1, - anon_sym_BANG, - ACTIONS(2943), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58294] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3331), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [58387] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2901), 1, - anon_sym_LBRACK, - ACTIONS(2903), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58438] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2164), 9, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2162), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58511] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACK, - ACTIONS(2915), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58562] = 24, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4729), 1, - anon_sym_LPAREN, - ACTIONS(4737), 1, - anon_sym_LBRACK, - ACTIONS(4739), 1, - anon_sym_QMARK, - ACTIONS(4741), 1, - anon_sym_BANG, - ACTIONS(4755), 1, - anon_sym_as, - ACTIONS(4757), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4759), 1, - anon_sym_DASH_DASH, - ACTIONS(4763), 1, - anon_sym_or, - ACTIONS(4769), 1, - anon_sym_is, - ACTIONS(4771), 1, - anon_sym_BANGis, - ACTIONS(4859), 1, - anon_sym_AMP_AMP, - ACTIONS(4861), 1, - anon_sym_in, - ACTIONS(4863), 1, - anon_sym_BANGin, - ACTIONS(4869), 1, - anon_sym_PIPE_PIPE, - STATE(2520), 1, - sym_or_block, - STATE(2523), 1, - sym_argument_list, - STATE(4222), 1, - sym_type_parameters, - ACTIONS(4727), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4743), 2, - anon_sym_LBRACK2, - anon_sym_POUND_LBRACK, - ACTIONS(3313), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(4853), 4, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_CARET, - ACTIONS(4857), 6, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4855), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [58655] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_LBRACK, - ACTIONS(2919), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58706] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4905), 1, - anon_sym_AMP_AMP, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4923), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4891), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2208), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [58811] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4905), 1, - anon_sym_AMP_AMP, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4923), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4891), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2218), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [58916] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3107), 1, - anon_sym_LBRACK, - ACTIONS(3109), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [58967] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59018] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_LBRACK, - ACTIONS(3169), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59069] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2230), 9, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2228), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59142] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACK, - ACTIONS(2935), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59193] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_LBRACK, - ACTIONS(2939), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59244] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4891), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [59333] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2921), 1, - anon_sym_LBRACK, - ACTIONS(2923), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59384] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2991), 1, - anon_sym_LBRACK, - ACTIONS(2993), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59435] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3007), 1, - anon_sym_LBRACK, - ACTIONS(3009), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59486] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2909), 1, - anon_sym_LBRACK, - ACTIONS(2911), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59537] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3079), 1, - anon_sym_LBRACK, - ACTIONS(3081), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59588] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3095), 1, - anon_sym_LBRACK, - ACTIONS(3097), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59639] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3011), 1, - anon_sym_LBRACK, - ACTIONS(3013), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59690] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3015), 1, - anon_sym_LBRACK, - ACTIONS(3017), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59741] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_LPAREN, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - STATE(3436), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(615), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [59828] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACK, - ACTIONS(2766), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59879] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3151), 1, - anon_sym_LBRACK, - ACTIONS(3153), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [59930] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_LPAREN, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - STATE(3434), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(589), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [60017] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_LPAREN, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - STATE(3420), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(555), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_AT_LBRACK, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [60104] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2846), 1, - anon_sym_LBRACK, - ACTIONS(2848), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60155] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2076), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60236] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(2074), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60313] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3159), 1, - anon_sym_LBRACK, - ACTIONS(3161), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60364] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3163), 1, - anon_sym_LBRACK, - ACTIONS(3165), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60415] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3187), 1, - anon_sym_LBRACK, - ACTIONS(3189), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60466] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2112), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60547] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(3525), 1, - anon_sym_COLON, - ACTIONS(2884), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60602] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3183), 1, - anon_sym_LBRACK, - ACTIONS(3185), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60653] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3179), 1, - anon_sym_LBRACK, - ACTIONS(3181), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60704] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4931), 1, - anon_sym_RBRACE, - ACTIONS(4933), 1, - anon_sym_COLON, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3828), 1, - sym___rcbr, - STATE(4199), 1, - sym_type_parameters, - STATE(4378), 1, - sym_format_specifier, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [60811] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3147), 1, - anon_sym_LBRACK, - ACTIONS(3149), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60862] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3063), 1, - anon_sym_LBRACK, - ACTIONS(3065), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60913] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3051), 1, - anon_sym_LBRACK, - ACTIONS(3053), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [60964] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2965), 1, - anon_sym_LBRACK, - ACTIONS(2766), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61017] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3043), 1, - anon_sym_LBRACK, - ACTIONS(3045), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61068] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3035), 1, - anon_sym_LBRACK, - ACTIONS(3037), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61119] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3191), 1, - anon_sym_LBRACK, - ACTIONS(3193), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61170] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3031), 1, - anon_sym_LBRACK, - ACTIONS(3033), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61221] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2838), 1, - anon_sym_LBRACK, - ACTIONS(2840), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61272] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2842), 1, - anon_sym_LBRACK, - ACTIONS(2844), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61323] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2782), 1, - anon_sym_LBRACK, - ACTIONS(2784), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61374] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2854), 1, - anon_sym_LBRACK, - ACTIONS(2856), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61425] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2826), 1, - anon_sym_LBRACK, - ACTIONS(2828), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61476] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3155), 1, - anon_sym_LBRACK, - ACTIONS(3157), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61527] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3195), 1, - anon_sym_LBRACK, - ACTIONS(3197), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61578] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3059), 1, - anon_sym_LBRACK, - ACTIONS(3061), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61629] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2971), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(2973), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61682] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACK, - ACTIONS(2949), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(2951), 35, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61735] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3055), 1, - anon_sym_LBRACK, - ACTIONS(3057), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61786] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3023), 1, - anon_sym_LBRACK, - ACTIONS(3025), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61837] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3111), 1, - anon_sym_LBRACK, - ACTIONS(3113), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61888] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3019), 1, - anon_sym_LBRACK, - ACTIONS(3021), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61939] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3047), 1, - anon_sym_LBRACK, - ACTIONS(3049), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [61990] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2999), 1, - anon_sym_LBRACK, - ACTIONS(3001), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62041] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2925), 1, - anon_sym_LBRACK, - ACTIONS(2927), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62092] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2698), 1, - anon_sym_LBRACK, - ACTIONS(2766), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 40, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62145] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4933), 1, - anon_sym_COLON, - ACTIONS(4935), 1, - anon_sym_RBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3774), 1, - sym___rcbr, - STATE(4105), 1, - sym_format_specifier, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [62252] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3083), 1, - anon_sym_LBRACK, - ACTIONS(3085), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62303] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2108), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62384] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2798), 1, - anon_sym_LBRACK, - ACTIONS(2800), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62435] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2802), 1, - anon_sym_LBRACK, - ACTIONS(2804), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62486] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2882), 1, - anon_sym_LBRACK, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62539] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2814), 1, - anon_sym_LBRACK, - ACTIONS(2816), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62590] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2076), 9, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2074), 23, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62663] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3119), 1, - anon_sym_LBRACK, - ACTIONS(3121), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62714] = 23, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3201), 1, - anon_sym_LPAREN, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3205), 1, - anon_sym_STAR, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3211), 1, - anon_sym_BANG, - ACTIONS(3213), 1, - anon_sym_LBRACK2, - ACTIONS(3215), 1, - anon_sym_AMP, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3219), 1, - anon_sym_map_LBRACK, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - STATE(3415), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(3029), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [62805] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2957), 1, - anon_sym_LBRACK, - ACTIONS(2959), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62856] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 41, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62909] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2976), 1, - anon_sym_LBRACK, - ACTIONS(2973), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [62960] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2850), 1, - anon_sym_LBRACK, - ACTIONS(2852), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63011] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2889), 1, - anon_sym_LBRACK, - ACTIONS(2891), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63062] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2954), 1, - anon_sym_LBRACK, - ACTIONS(2951), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63113] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2905), 1, - anon_sym_LBRACK, - ACTIONS(2907), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63164] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2702), 1, - anon_sym_LBRACK, - ACTIONS(2704), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63215] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_LBRACK, - ACTIONS(2989), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63266] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2893), 1, - anon_sym_LBRACK, - ACTIONS(2895), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63317] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2878), 1, - anon_sym_LBRACK, - ACTIONS(2880), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63368] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3171), 1, - anon_sym_LBRACK, - ACTIONS(3173), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63419] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2929), 1, - anon_sym_LBRACK, - ACTIONS(2931), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63470] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2979), 1, - anon_sym_LBRACK, - ACTIONS(2981), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63521] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2983), 1, - anon_sym_LBRACK, - ACTIONS(2985), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63572] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3129), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63623] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2830), 1, - anon_sym_LBRACK, - ACTIONS(2832), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63674] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3067), 1, - anon_sym_LBRACK, - ACTIONS(3069), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63725] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3143), 1, - anon_sym_LBRACK, - ACTIONS(3145), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63776] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2822), 1, - anon_sym_LBRACK, - ACTIONS(2824), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63827] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2961), 1, - anon_sym_LBRACK, - ACTIONS(2963), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63878] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3123), 1, - anon_sym_LBRACK, - ACTIONS(3125), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63929] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3115), 1, - anon_sym_LBRACK, - ACTIONS(3117), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [63980] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2818), 1, - anon_sym_LBRACK, - ACTIONS(2820), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64031] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3075), 1, - anon_sym_LBRACK, - ACTIONS(3077), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64082] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3071), 1, - anon_sym_LBRACK, - ACTIONS(3073), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64133] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2858), 1, - anon_sym_LBRACK, - ACTIONS(2860), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64184] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3175), 1, - anon_sym_LBRACK, - ACTIONS(3177), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64235] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2806), 1, - anon_sym_LBRACK, - ACTIONS(2808), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64286] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2810), 1, - anon_sym_LBRACK, - ACTIONS(2812), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64337] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2794), 1, - anon_sym_LBRACK, - ACTIONS(2796), 42, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64388] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [64462] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4947), 1, - anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2218), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [64562] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2112), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64642] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2108), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [64722] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4947), 1, - anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2208), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [64822] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - ACTIONS(4969), 1, - anon_sym_AMP_AMP, - ACTIONS(4971), 1, - anon_sym_in, - ACTIONS(4973), 1, - anon_sym_BANGin, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4965), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [64912] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2220), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - ACTIONS(4963), 1, - anon_sym_CARET, - ACTIONS(4969), 1, - anon_sym_AMP_AMP, - ACTIONS(4971), 1, - anon_sym_in, - ACTIONS(4973), 1, - anon_sym_BANGin, - ACTIONS(4975), 1, - anon_sym_PIPE_PIPE, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2218), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(4965), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65016] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2210), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - ACTIONS(4963), 1, - anon_sym_CARET, - ACTIONS(4969), 1, - anon_sym_AMP_AMP, - ACTIONS(4971), 1, - anon_sym_in, - ACTIONS(4973), 1, - anon_sym_BANGin, - ACTIONS(4975), 1, - anon_sym_PIPE_PIPE, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2208), 2, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - ACTIONS(4965), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65120] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2076), 1, - anon_sym_DOT_DOT, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - ACTIONS(4971), 1, - anon_sym_in, - ACTIONS(4973), 1, - anon_sym_BANGin, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4965), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [65208] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2971), 1, - anon_sym_DOT_DOT, - ACTIONS(2969), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2973), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2976), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2949), 1, - anon_sym_DOT_DOT, - ACTIONS(2947), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON_EQ, - ACTIONS(2951), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2954), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65316] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2698), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65366] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3894), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65470] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2728), 29, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65520] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4963), 1, - anon_sym_CARET, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(2076), 3, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65600] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2076), 6, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_DOT_DOT, - ACTIONS(2074), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65676] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [65754] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [65832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4979), 1, - anon_sym_else, - STATE(2697), 1, - sym_else_branch, - ACTIONS(2406), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2404), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [65886] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - ACTIONS(4963), 1, - anon_sym_CARET, - ACTIONS(4969), 1, - anon_sym_AMP_AMP, - ACTIONS(4971), 1, - anon_sym_in, - ACTIONS(4973), 1, - anon_sym_BANGin, - ACTIONS(4975), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4981), 1, - anon_sym_LBRACE, - ACTIONS(4983), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(4985), 1, - anon_sym_DOT_DOT, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4965), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4957), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4961), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4967), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4959), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [65992] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4979), 1, - anon_sym_else, - STATE(2696), 1, - sym_else_branch, - ACTIONS(2400), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2398), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [66046] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 10, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [66132] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4947), 1, - anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3305), 3, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [66232] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 11, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [66316] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4801), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [66394] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_SEMI, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4947), 1, - anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(3972), 1, - aux_sym_strictly_expression_list_repeat1, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [66498] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2208), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [66598] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(2218), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [66698] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [66776] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [66854] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, - anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 10, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [66940] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, - anon_sym_CARET, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 11, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_COLON_EQ, - [67024] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4947), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 17, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [67102] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 18, - anon_sym_SEMI, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [67176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2967), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2965), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [67225] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4871), 1, - anon_sym_LBRACE, - ACTIONS(4999), 1, - anon_sym_QMARK, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(2655), 1, - sym_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67326] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4488), 1, - anon_sym_as, - ACTIONS(4498), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4500), 1, - anon_sym_DASH_DASH, - ACTIONS(4502), 1, - anon_sym_AMP_AMP, - ACTIONS(4504), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4506), 1, - anon_sym_or, - ACTIONS(4508), 1, - anon_sym_is, - ACTIONS(4510), 1, - anon_sym_BANGis, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(4514), 1, - anon_sym_BANGin, - ACTIONS(5013), 1, - anon_sym_COLON, - ACTIONS(5015), 1, - anon_sym_CARET, - ACTIONS(5017), 1, - anon_sym_LT_DASH, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4492), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4496), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5011), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67427] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5019), 1, - anon_sym_QMARK, - STATE(1669), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67528] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5023), 1, - anon_sym_QMARK, - ACTIONS(5021), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(2884), 10, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [67583] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5025), 1, - anon_sym_RBRACK, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67686] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(3305), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67785] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5029), 1, - anon_sym_QMARK, - STATE(1924), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [67886] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2741), 1, - sym_type_parameters, - ACTIONS(2704), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2702), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [67937] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4947), 1, - anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - ACTIONS(5031), 1, - anon_sym_is, - ACTIONS(5033), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2122), 2, - anon_sym_SEMI, - anon_sym_COMMA, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68036] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5035), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68139] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5037), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68242] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5039), 1, - anon_sym_QMARK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(2460), 1, - sym_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68343] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5041), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68446] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5043), 1, - anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_QMARK, - STATE(1162), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68547] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5047), 1, - anon_sym_QMARK, - STATE(1920), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68648] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5049), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68751] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5051), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68854] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4867), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5053), 1, - anon_sym_QMARK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(2867), 1, - sym_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [68955] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - ACTIONS(5031), 1, - anon_sym_is, - ACTIONS(5033), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2122), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3027), 1, - anon_sym_LBRACE, - ACTIONS(2772), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2770), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [69107] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5055), 1, - anon_sym_LBRACE, - ACTIONS(5057), 1, - anon_sym_QMARK, - STATE(997), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69208] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - anon_sym_DOT, - ACTIONS(4883), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LBRACK, - ACTIONS(4897), 1, - anon_sym_QMARK, - ACTIONS(4899), 1, - anon_sym_BANG, - ACTIONS(4901), 1, - anon_sym_LBRACK2, - ACTIONS(4903), 1, - anon_sym_CARET, - ACTIONS(4905), 1, - anon_sym_AMP_AMP, - ACTIONS(4907), 1, - anon_sym_QMARK_DOT, - ACTIONS(4909), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4911), 1, - anon_sym_in, - ACTIONS(4913), 1, - anon_sym_BANGin, - ACTIONS(4917), 1, - anon_sym_as, - ACTIONS(4919), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4921), 1, - anon_sym_DASH_DASH, - ACTIONS(4923), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4925), 1, - anon_sym_or, - ACTIONS(4927), 1, - anon_sym_is, - ACTIONS(4929), 1, - anon_sym_BANGis, - ACTIONS(5059), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5061), 1, - anon_sym_DOT_DOT, - STATE(2721), 1, - sym_argument_list, - STATE(2722), 1, - sym_or_block, - STATE(4158), 1, - sym_type_parameters, - ACTIONS(4891), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4885), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4889), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4893), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4887), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69311] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5063), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69414] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5065), 1, - anon_sym_LBRACE, - ACTIONS(5067), 1, - anon_sym_COMMA, - STATE(3986), 1, - aux_sym_match_expression_list_repeat1, - ACTIONS(2880), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2878), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [69469] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5069), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69572] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5071), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69671] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5073), 1, - anon_sym_LBRACE, - ACTIONS(5075), 1, - anon_sym_QMARK, - STATE(1299), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5077), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2732), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [69823] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5079), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [69926] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5081), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2738), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [69977] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5083), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70080] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5085), 1, - anon_sym_LBRACE, - ACTIONS(5087), 1, - anon_sym_QMARK, - STATE(2160), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70181] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4879), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5089), 1, - anon_sym_QMARK, - STATE(1783), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70282] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5091), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70385] = 30, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4675), 1, - anon_sym_DOT, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4687), 1, - anon_sym_QMARK_DOT, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5027), 1, - anon_sym_DOT_DOT, - ACTIONS(5093), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70488] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4947), 1, - anon_sym_CARET, - ACTIONS(4949), 1, - anon_sym_AMP_AMP, - ACTIONS(4951), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4953), 1, - anon_sym_in, - ACTIONS(4955), 1, - anon_sym_BANGin, - ACTIONS(5095), 1, - anon_sym_is, - ACTIONS(5097), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2122), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4943), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4937), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4941), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4945), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4939), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70587] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2698), 28, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [70636] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5099), 1, - anon_sym_QMARK, - STATE(2306), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70737] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5101), 1, - anon_sym_LBRACE, - ACTIONS(5103), 1, - anon_sym_QMARK, - STATE(569), 1, - sym_block, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2983), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [70886] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5105), 1, - anon_sym_RPAREN, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [70984] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(2884), 12, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2882), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71034] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2891), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2889), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3151), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2766), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2768), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71178] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5127), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71276] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2832), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2830), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [71324] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5129), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71422] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5133), 1, - anon_sym_RPAREN, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4000), 1, - sym_type_parameter_declaration, - STATE(4004), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [71516] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5147), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71614] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5149), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71712] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5151), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3994), 1, - sym_type_parameter_declaration, - STATE(3996), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [71806] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5153), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [71904] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5155), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72002] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3049), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3047), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72050] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2965), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72100] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2995), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72148] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5157), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3003), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72294] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3157), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3155), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72342] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5159), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72440] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3033), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3031), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72488] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2921), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72536] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5161), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72634] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2846), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72682] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3191), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3037), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3035), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72778] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5163), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [72876] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2999), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3083), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [72972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2798), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2802), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2816), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2814), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3045), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3043), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73164] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5165), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [73262] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5167), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [73360] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3053), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3051), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73408] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2979), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73456] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5169), 1, - anon_sym_SEMI, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [73554] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5171), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [73652] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3065), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3063), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73700] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3143), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73748] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3139), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73796] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3123), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73844] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3115), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73892] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3075), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73940] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3071), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [73988] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5173), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4043), 1, - sym_parameter_declaration, - STATE(4044), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [74082] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2810), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74130] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2796), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2794), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3149), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3147), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74226] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2122), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5031), 1, - anon_sym_is, - ACTIONS(5033), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74324] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3181), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3179), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74372] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3185), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3183), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74420] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3189), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3187), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74468] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2989), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2987), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74516] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2704), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2702), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74564] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2772), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2770), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74612] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2963), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2961), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74660] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2911), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2909), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74708] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2208), 1, - anon_sym_RPAREN, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74806] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2959), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2957), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [74854] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2218), 1, - anon_sym_RPAREN, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [74952] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5175), 1, - anon_sym_BANG, - ACTIONS(2943), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2941), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75002] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5177), 1, - anon_sym_else, - STATE(2908), 1, - sym_else_branch, - ACTIONS(2406), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2404), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5177), 1, - anon_sym_else, - STATE(2909), 1, - sym_else_branch, - ACTIONS(2400), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2398), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75106] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2927), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2925), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75154] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5179), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75252] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5181), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2856), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2854), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75398] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2784), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2782), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75446] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2844), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2842), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2840), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2838), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75542] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3165), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3163), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75590] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5183), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3941), 1, - sym_parameter_declaration, - STATE(3942), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [75684] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5185), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [75782] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3081), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3079), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75830] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5187), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3915), 1, - sym_parameter_declaration, - STATE(3916), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [75924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3009), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3007), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [75972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2993), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2991), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76020] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2939), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2937), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76068] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2935), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2933), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2919), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2917), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76164] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - ACTIONS(2967), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2965), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [76214] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2915), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2913), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76262] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5189), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3854), 1, - sym_parameter_declaration, - STATE(3992), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [76356] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2903), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2901), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76404] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5191), 1, - sym_identifier, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(3024), 1, - sym_mutability_modifiers, - STATE(3868), 1, - sym_parameter_declaration, - STATE(3873), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [76498] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2730), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2728), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76546] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5195), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [76644] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2700), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2698), 29, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_else, - anon_sym_DOLLARelse, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76692] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3029), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3027), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76740] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3169), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3167), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76788] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3097), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3095), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [76836] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5197), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [76934] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5199), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77032] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3109), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3107), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77080] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3113), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3111), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77128] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2826), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77176] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3121), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3119), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3173), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3171), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77272] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [77370] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3195), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77418] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3129), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3127), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77466] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3059), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77514] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3055), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77562] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3177), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3175), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77610] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2788), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2786), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_LBRACE, - ACTIONS(2700), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2698), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_COLON_EQ, - [77708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2886), 1, - anon_sym_DOT, - ACTIONS(3652), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [77760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3089), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3087), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77808] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3093), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3091), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77856] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2792), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2790), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2836), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2834), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [77952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2864), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2862), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78000] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5203), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78098] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5205), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3918), 1, - sym_type_parameter_declaration, - STATE(3920), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [78192] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5207), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78290] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2698), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78340] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2872), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2870), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78388] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5209), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78486] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2876), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2874), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78534] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2899), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2897), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78582] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2907), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2905), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78630] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5211), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78728] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5213), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78826] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5215), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [78924] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2893), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [78972] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2878), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [79020] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5217), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79118] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5219), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79216] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5221), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4049), 1, - sym_parameter_declaration, - STATE(4053), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [79310] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3013), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3011), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [79358] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3017), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3015), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [79406] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - ACTIONS(4478), 1, - anon_sym_LBRACK, - ACTIONS(4480), 1, - anon_sym_QMARK, - ACTIONS(4482), 1, - anon_sym_BANG, - ACTIONS(4484), 1, - anon_sym_LBRACK2, - ACTIONS(4486), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4488), 1, - anon_sym_as, - ACTIONS(4498), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4500), 1, - anon_sym_DASH_DASH, - ACTIONS(4502), 1, - anon_sym_AMP_AMP, - ACTIONS(4504), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4506), 1, - anon_sym_or, - ACTIONS(4508), 1, - anon_sym_is, - ACTIONS(4510), 1, - anon_sym_BANGis, - ACTIONS(4512), 1, - anon_sym_in, - ACTIONS(4514), 1, - anon_sym_BANGin, - ACTIONS(5015), 1, - anon_sym_CARET, - ACTIONS(5017), 1, - anon_sym_LT_DASH, - STATE(2081), 1, - sym_argument_list, - STATE(2082), 1, - sym_or_block, - STATE(4192), 1, - sym_type_parameters, - ACTIONS(4474), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4494), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4490), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4492), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4496), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5011), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79504] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2824), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2822), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [79552] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2820), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2818), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [79600] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [79672] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5223), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79770] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2808), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2806), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [79818] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5071), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [79916] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5187), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3882), 1, - sym_plain_type, - STATE(3915), 1, - sym_parameter_declaration, - STATE(3916), 1, - sym_type_parameter_declaration, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [80010] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80086] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5225), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [80184] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5227), 1, - anon_sym_RBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [80282] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [80364] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2860), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2858), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80412] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 15, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80488] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 8, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [80572] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2967), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2965), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80622] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5229), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4062), 1, - sym_type_parameter_declaration, - STATE(4064), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [80716] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80792] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5001), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2112), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2110), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80868] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2108), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2106), 15, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80944] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(2772), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2770), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [80994] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5231), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4076), 1, - sym_parameter_declaration, - STATE(4080), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [81088] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3159), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3069), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3067), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81184] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3025), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3023), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81232] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2700), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2698), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81282] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3868), 1, - sym_parameter_declaration, - STATE(3873), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [81376] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 8, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [81460] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5233), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [81558] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 9, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - [81640] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3337), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [81738] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(5117), 1, - anon_sym_CARET, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(2076), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 15, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81814] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2076), 5, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - ACTIONS(2074), 16, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81886] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3027), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2772), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2770), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [81938] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2774), 1, - anon_sym_DOT, - ACTIONS(3029), 12, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3027), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [81988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3021), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(3019), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82036] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5013), 1, - anon_sym_COLON, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82134] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5235), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82232] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5237), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82330] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2931), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2929), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82378] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5239), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2868), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2866), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82524] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - ACTIONS(2967), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2965), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2852), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2850), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82622] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2768), 1, - anon_sym_COMMA, - ACTIONS(2700), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2698), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [82672] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2208), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82770] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2218), 1, - anon_sym_LBRACE, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [82868] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5241), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3866), 1, - sym_parameter_declaration, - STATE(3876), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [82962] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5243), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2880), 13, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - anon_sym_DOT_DOT, - ACTIONS(2878), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [83012] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5001), 1, - anon_sym_CARET, - ACTIONS(5003), 1, - anon_sym_AMP_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5007), 1, - anon_sym_in, - ACTIONS(5009), 1, - anon_sym_BANGin, - ACTIONS(5245), 1, - anon_sym_LBRACE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4995), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4989), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4993), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4997), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4991), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83110] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5247), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(3860), 1, - sym_parameter_declaration, - STATE(3861), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [83204] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5131), 1, - sym_identifier, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - ACTIONS(5249), 1, - anon_sym_RPAREN, - STATE(3028), 1, - sym_mutability_modifiers, - STATE(4029), 1, - sym_type_parameter_declaration, - STATE(4032), 1, - sym_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [83298] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5251), 1, - anon_sym_SEMI, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83396] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5253), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83494] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(5117), 1, - anon_sym_CARET, - ACTIONS(5119), 1, - anon_sym_AMP_AMP, - ACTIONS(5121), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5123), 1, - anon_sym_in, - ACTIONS(5125), 1, - anon_sym_BANGin, - ACTIONS(5255), 1, - anon_sym_RPAREN, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(5113), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5107), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5111), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(5115), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5109), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83592] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5257), 1, - anon_sym_DOLLARelse, - ACTIONS(2740), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2738), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [83641] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5259), 1, - anon_sym_is, - ACTIONS(5261), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83736] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4801), 1, - anon_sym_CARET, - ACTIONS(4803), 1, - anon_sym_AMP_AMP, - ACTIONS(4805), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4813), 1, - anon_sym_in, - ACTIONS(4815), 1, - anon_sym_BANGin, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4793), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4787), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4791), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4795), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4789), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83831] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5263), 1, - anon_sym_is, - ACTIONS(5265), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [83926] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5267), 1, - anon_sym_is, - ACTIONS(5269), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84021] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(607), 1, - anon_sym_LBRACK2, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_DOT_DOT_DOT, - STATE(4125), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3027), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [84108] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5273), 1, - anon_sym_is, - ACTIONS(5275), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84203] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - ACTIONS(3657), 12, - anon_sym_DOT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3661), 25, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - anon_sym_DOT_DOT, - [84252] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5277), 1, - anon_sym_is, - ACTIONS(5279), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84347] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(607), 1, - anon_sym_LBRACK2, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5281), 1, - anon_sym_DOT_DOT_DOT, - STATE(4150), 1, - sym__plain_type_without_special, - STATE(4151), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3027), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2428), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [84436] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5283), 1, - anon_sym_DOLLARelse, - ACTIONS(2734), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2732), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [84485] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5285), 1, - anon_sym_is, - ACTIONS(5287), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84580] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4564), 1, - anon_sym_LBRACE, - ACTIONS(5289), 1, - anon_sym_COMMA, - STATE(4077), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(2880), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2878), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [84633] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4809), 1, - anon_sym_is, - ACTIONS(4811), 1, - anon_sym_BANGis, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84728] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5291), 1, - anon_sym_is, - ACTIONS(5293), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84823] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2777), 1, - anon_sym_LBRACK, - ACTIONS(3027), 1, - anon_sym_LBRACE, - ACTIONS(5295), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - ACTIONS(2772), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2770), 24, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [84876] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5095), 1, - anon_sym_is, - ACTIONS(5097), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [84971] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(607), 1, - anon_sym_LBRACK2, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5281), 1, - anon_sym_DOT_DOT_DOT, - STATE(4151), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3027), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [85058] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5297), 1, - anon_sym_is, - ACTIONS(5299), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85153] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(607), 1, - anon_sym_LBRACK2, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_DOT_DOT_DOT, - STATE(4125), 1, - sym_plain_type, - STATE(4138), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(3027), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - STATE(2428), 3, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [85242] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5301), 1, - anon_sym_is, - ACTIONS(5303), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85337] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5305), 1, - anon_sym_is, - ACTIONS(5307), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85432] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2973), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2976), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85479] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5309), 1, - anon_sym_is, - ACTIONS(5311), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85574] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2951), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2954), 28, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85621] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4422), 1, - anon_sym_as, - ACTIONS(4428), 1, - anon_sym_LPAREN, - ACTIONS(4438), 1, - anon_sym_LBRACK, - ACTIONS(4440), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4442), 1, - anon_sym_DASH_DASH, - ACTIONS(4444), 1, - anon_sym_QMARK, - ACTIONS(4446), 1, - anon_sym_BANG, - ACTIONS(4448), 1, - anon_sym_LBRACK2, - ACTIONS(4450), 1, - anon_sym_AMP_AMP, - ACTIONS(4452), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4454), 1, - anon_sym_or, - ACTIONS(4456), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4458), 1, - anon_sym_is, - ACTIONS(4460), 1, - anon_sym_BANGis, - ACTIONS(4462), 1, - anon_sym_in, - ACTIONS(4464), 1, - anon_sym_BANGin, - ACTIONS(5315), 1, - anon_sym_CARET, - STATE(1934), 1, - sym_or_block, - STATE(1935), 1, - sym_argument_list, - STATE(4313), 1, - sym_type_parameters, - ACTIONS(4420), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4434), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4430), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4432), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4436), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(5313), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85716] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - ACTIONS(4679), 1, - anon_sym_LBRACK, - ACTIONS(4681), 1, - anon_sym_QMARK, - ACTIONS(4683), 1, - anon_sym_BANG, - ACTIONS(4685), 1, - anon_sym_LBRACK2, - ACTIONS(4689), 1, - anon_sym_POUND_LBRACK, - ACTIONS(4783), 1, - anon_sym_as, - ACTIONS(4797), 1, - anon_sym_PLUS_PLUS, - ACTIONS(4799), 1, - anon_sym_DASH_DASH, - ACTIONS(4807), 1, - anon_sym_or, - ACTIONS(4827), 1, - anon_sym_CARET, - ACTIONS(4833), 1, - anon_sym_in, - ACTIONS(4835), 1, - anon_sym_BANGin, - ACTIONS(4837), 1, - anon_sym_AMP_AMP, - ACTIONS(4849), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5317), 1, - anon_sym_is, - ACTIONS(5319), 1, - anon_sym_BANGis, - STATE(2404), 1, - sym_argument_list, - STATE(2408), 1, - sym_or_block, - STATE(4199), 1, - sym_type_parameters, - ACTIONS(4687), 2, - anon_sym_DOT, - anon_sym_QMARK_DOT, - ACTIONS(4829), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(4823), 3, - anon_sym_SLASH, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(4825), 3, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4831), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(4821), 5, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - [85811] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2766), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2768), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3153), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3151), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85903] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2981), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2979), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [85949] = 24, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5135), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5137), 1, - anon_sym_mut, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5145), 1, - anon_sym_shared, - STATE(3037), 1, - sym_mutability_modifiers, - STATE(4117), 1, - sym_type_parameter_declaration, - STATE(4382), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [86037] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2378), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(613), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [86119] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2857), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2878), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2816), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2814), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86259] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1925), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2804), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2802), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2800), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2798), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86399] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3413), 1, - anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5323), 1, - anon_sym_STAR, - ACTIONS(5325), 1, - anon_sym_QMARK, - ACTIONS(5327), 1, - anon_sym_BANG, - ACTIONS(5329), 1, - anon_sym_LBRACK2, - ACTIONS(5331), 1, - anon_sym_AMP, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5335), 1, - anon_sym_map_LBRACK, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - STATE(1643), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(615), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [86481] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(993), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86529] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2985), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2983), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86575] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3413), 1, - anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5323), 1, - anon_sym_STAR, - ACTIONS(5325), 1, - anon_sym_QMARK, - ACTIONS(5327), 1, - anon_sym_BANG, - ACTIONS(5329), 1, - anon_sym_LBRACK2, - ACTIONS(5331), 1, - anon_sym_AMP, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5335), 1, - anon_sym_map_LBRACK, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - STATE(1654), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(589), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [86657] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2165), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86705] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - ACTIONS(2880), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2878), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86753] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2307), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86801] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2895), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2893), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2828), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2826), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3145), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3143), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86939] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3141), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3139), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [86985] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1793), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87033] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3117), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3115), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87079] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3085), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3083), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3001), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2999), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3077), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3075), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87217] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3193), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3191), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87263] = 21, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3413), 1, - anon_sym_LPAREN, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5323), 1, - anon_sym_STAR, - ACTIONS(5325), 1, - anon_sym_QMARK, - ACTIONS(5327), 1, - anon_sym_BANG, - ACTIONS(5329), 1, - anon_sym_LBRACK2, - ACTIONS(5331), 1, - anon_sym_AMP, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5335), 1, - anon_sym_map_LBRACK, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - STATE(1661), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(555), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [87345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2848), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2846), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2923), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2921), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87437] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3057), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3055), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87483] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1160), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87531] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1916), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3005), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3003), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3073), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3071), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87671] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2657), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87719] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2812), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2810), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87765] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2997), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2995), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [87811] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2330), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(551), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [87893] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2383), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - ACTIONS(587), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [87975] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1296), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3161), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3159), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88069] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2796), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2794), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3125), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3123), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88161] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(2443), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88209] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(1642), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88257] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(596), 1, - sym_block, - ACTIONS(3149), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3147), 26, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3061), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3059), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88351] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3197), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(3195), 27, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_COLON, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_DASH, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88397] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5343), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88446] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5345), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5347), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88540] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5349), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88587] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5351), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88636] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5351), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88683] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5351), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88730] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5353), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88777] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5353), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5355), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88871] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5347), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88920] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5355), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [88969] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5357), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89018] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5353), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89067] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5359), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89114] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5357), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89161] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5349), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89208] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5361), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89257] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5363), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89304] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5363), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89351] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5365), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89400] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5367), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5367), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5365), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89543] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5365), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89590] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5369), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89639] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5369), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89686] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5369), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89733] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5359), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89780] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5371), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89829] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5359), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89878] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5373), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89927] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5373), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [89974] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5375), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90021] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5377), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90070] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5375), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90117] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5379), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90164] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5379), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90211] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5363), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90260] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5381), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90309] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5383), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90356] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5383), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90405] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5377), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90452] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5349), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90501] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5377), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90548] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5381), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90595] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5385), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5371), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90689] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5387), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90738] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5375), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90787] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5345), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5345), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90932] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5389), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [90981] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5389), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91028] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5391), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91075] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5391), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91124] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5393), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91173] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5393), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91220] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5361), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5343), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5395), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91361] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5395), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91408] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5361), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91455] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5395), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91504] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5357), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91551] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5387), 1, - anon_sym_RBRACK, - ACTIONS(2832), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2830), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91598] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5385), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91647] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4582), 1, - anon_sym_DOT, - ACTIONS(5397), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 24, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91696] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5385), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91743] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5387), 1, - anon_sym_RBRACK, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91790] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5397), 1, - anon_sym_RPAREN, - ACTIONS(2884), 11, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_GT_GT, - ACTIONS(2882), 25, - anon_sym_DOT, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_LBRACK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_CARET, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_AMP_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_or, - anon_sym_QMARK_DOT, - anon_sym_POUND_LBRACK, - anon_sym_is, - anon_sym_BANGis, - anon_sym_in, - anon_sym_BANGin, - [91837] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5401), 1, - anon_sym_EQ, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(3735), 1, - sym__global_var_value, - STATE(3736), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [91919] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5417), 1, - anon_sym_EQ, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1538), 1, - sym_plain_type, - STATE(1541), 1, - sym__global_var_value, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92001] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5281), 1, - anon_sym_DOT_DOT_DOT, - STATE(4151), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92080] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5431), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92159] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, - sym_plain_type, - STATE(1512), 1, - sym__type_union_list, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92238] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5433), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92317] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5435), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92396] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5437), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92475] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5439), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92554] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, - sym_plain_type, - STATE(1503), 1, - sym__type_union_list, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92633] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5441), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92712] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5443), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92791] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5445), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92870] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5447), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [92949] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5449), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93028] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5451), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93107] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5453), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93186] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5455), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93265] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5457), 1, - sym_identifier, - ACTIONS(5459), 1, - anon_sym_DOT_DOT_DOT, - STATE(4110), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93344] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5271), 1, - anon_sym_DOT_DOT_DOT, - STATE(4125), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93423] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5461), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93502] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5463), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93581] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5459), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5465), 1, - sym_identifier, - STATE(4110), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93660] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5467), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93739] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5469), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93818] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, - sym_plain_type, - STATE(1527), 1, - sym__type_union_list, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93897] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5471), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [93976] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5473), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94055] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5475), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94134] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1420), 1, - sym_plain_type, - STATE(1577), 1, - sym__type_union_list, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94213] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5477), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94292] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5459), 1, - anon_sym_DOT_DOT_DOT, - STATE(4110), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94371] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5479), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94450] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5481), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94529] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5483), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94608] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5485), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94687] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5487), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94766] = 8, - ACTIONS(3), 1, - sym_comment, - STATE(2411), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - ACTIONS(4314), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4316), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94819] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5489), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94898] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - ACTIONS(5491), 1, - anon_sym_RPAREN, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [94977] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2560), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95053] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2063), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95129] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1749), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95205] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2411), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95281] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3910), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95357] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2009), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95433] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2008), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95509] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2537), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95585] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2603), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95661] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2375), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95737] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2213), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95813] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2411), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95889] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1446), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [95965] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2095), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96041] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2000), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96117] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2602), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96193] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2078), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96269] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3970), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96345] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2080), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96421] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2375), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96497] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1457), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96573] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2490), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96649] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1451), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96725] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2379), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96801] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1321), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96877] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2499), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [96953] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2100), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97029] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1474), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97105] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1362), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97181] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1827), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97257] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2046), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97333] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1074), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97409] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(1971), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97485] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1748), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97561] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1825), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97637] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4663), 1, - sym_plain_type, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97713] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1075), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97789] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2223), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97865] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2417), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [97941] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1826), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98017] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1076), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98093] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1088), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98169] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2413), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98245] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2412), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98321] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4567), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98397] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4586), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98473] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2254), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98549] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2125), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98625] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2248), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98701] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2210), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98777] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2246), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98853] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4597), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [98929] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2243), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99005] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1313), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99081] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4615), 1, - sym_plain_type, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99157] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1092), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99233] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1072), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99309] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2212), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99385] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1812), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99461] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2206), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99537] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2211), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99613] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2101), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99689] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2124), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99765] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(847), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99841] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1093), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99917] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3947), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [99993] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2116), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100069] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2208), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100145] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3426), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100221] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2534), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100297] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1107), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100373] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3429), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100449] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1808), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100525] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2361), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100601] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2360), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100677] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2535), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100753] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4020), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100829] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3439), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100905] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2407), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [100981] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4660), 1, - sym_plain_type, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101057] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1221), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101133] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(862), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101209] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2409), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101285] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(861), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101361] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1385), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101437] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1636), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101513] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3962), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101589] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1895), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101665] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3435), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101741] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2781), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101817] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3418), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101893] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2789), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [101969] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2790), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102045] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3431), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102121] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3425), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102197] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1635), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102273] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3419), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102349] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3203), 1, - anon_sym_fn, - ACTIONS(3207), 1, - anon_sym_struct, - ACTIONS(3217), 1, - anon_sym_shared, - ACTIONS(3221), 1, - anon_sym_chan, - ACTIONS(3223), 1, - anon_sym_thread, - ACTIONS(3225), 1, - anon_sym_atomic, - ACTIONS(5619), 1, - anon_sym_LPAREN, - ACTIONS(5621), 1, - anon_sym_STAR, - ACTIONS(5623), 1, - anon_sym_QMARK, - ACTIONS(5625), 1, - anon_sym_BANG, - ACTIONS(5627), 1, - anon_sym_LBRACK2, - ACTIONS(5629), 1, - anon_sym_AMP, - ACTIONS(5631), 1, - anon_sym_map_LBRACK, - STATE(3433), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3442), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(3438), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102425] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1896), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102501] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1639), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102577] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4700), 1, - sym_plain_type, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102653] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1660), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102729] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1165), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102805] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1216), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102881] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(1966), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [102957] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(1958), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103033] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(886), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103109] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(881), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103185] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1470), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103261] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1483), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103337] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1467), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103413] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1469), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103489] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2474), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103565] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1632), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103641] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1644), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103717] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(866), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103793] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4070), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103869] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1656), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [103945] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1187), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104021] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1657), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104097] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(889), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104173] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2879), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104249] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2881), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104325] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2323), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104401] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2543), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104477] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1102), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104553] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2542), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104629] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1659), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104705] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2738), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104781] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2471), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104857] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3869), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [104933] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2261), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105009] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(860), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105085] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2260), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105161] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 1, - sym_identifier, - ACTIONS(3676), 1, - anon_sym_fn, - ACTIONS(3680), 1, - anon_sym_struct, - ACTIONS(3690), 1, - anon_sym_shared, - ACTIONS(3694), 1, - anon_sym_chan, - ACTIONS(3696), 1, - anon_sym_thread, - ACTIONS(3698), 1, - anon_sym_atomic, - ACTIONS(5555), 1, - anon_sym_LPAREN, - ACTIONS(5557), 1, - anon_sym_STAR, - ACTIONS(5559), 1, - anon_sym_QMARK, - ACTIONS(5561), 1, - anon_sym_BANG, - ACTIONS(5563), 1, - anon_sym_LBRACK2, - ACTIONS(5565), 1, - anon_sym_AMP, - ACTIONS(5567), 1, - anon_sym_map_LBRACK, - STATE(2253), 1, - sym_plain_type, - STATE(4566), 1, - sym_reference_expression, - STATE(2159), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2185), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2186), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105237] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2739), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105313] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2740), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105389] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1208), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105465] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1657), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105541] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2098), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105617] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2047), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105693] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4711), 1, - sym_plain_type, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105769] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1480), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105845] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(871), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105921] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(877), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [105997] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2488), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106073] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2749), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106149] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1700), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106225] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1703), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106301] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2752), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106377] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2096), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106453] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1375), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106529] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3897), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106605] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2737), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106681] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1383), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106757] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1384), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106833] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3974), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106909] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2070), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [106985] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1476), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107061] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1636), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107137] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2754), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107213] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1309), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107289] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2470), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107365] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2011), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107441] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2035), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107517] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1079), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107593] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1086), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107669] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2042), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107745] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4661), 1, - sym_plain_type, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107821] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2099), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107897] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2335), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [107973] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(933), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108049] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2379), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108125] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(934), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108201] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2765), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108277] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3902), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108353] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2108), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108429] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2536), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108505] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(1975), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108581] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4274), 1, - sym_identifier, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_fn, - ACTIONS(4280), 1, - anon_sym_STAR, - ACTIONS(4282), 1, - anon_sym_struct, - ACTIONS(4292), 1, - anon_sym_shared, - ACTIONS(4294), 1, - anon_sym_map_LBRACK, - ACTIONS(4296), 1, - anon_sym_chan, - ACTIONS(4298), 1, - anon_sym_thread, - ACTIONS(4300), 1, - anon_sym_atomic, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_BANG, - ACTIONS(5551), 1, - anon_sym_LBRACK2, - ACTIONS(5553), 1, - anon_sym_AMP, - STATE(2767), 1, - sym_plain_type, - STATE(4574), 1, - sym_reference_expression, - STATE(2635), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2723), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2724), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108657] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2010), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108733] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1223), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108809] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2374), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108885] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1868), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [108961] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(949), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109037] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(950), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109113] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2374), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109189] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3527), 1, - sym_identifier, - ACTIONS(3529), 1, - anon_sym_LPAREN, - ACTIONS(3531), 1, - anon_sym_fn, - ACTIONS(3535), 1, - anon_sym_struct, - ACTIONS(3545), 1, - anon_sym_shared, - ACTIONS(3547), 1, - anon_sym_map_LBRACK, - ACTIONS(3549), 1, - anon_sym_chan, - ACTIONS(3551), 1, - anon_sym_thread, - ACTIONS(3553), 1, - anon_sym_atomic, - ACTIONS(5507), 1, - anon_sym_STAR, - ACTIONS(5509), 1, - anon_sym_QMARK, - ACTIONS(5511), 1, - anon_sym_BANG, - ACTIONS(5513), 1, - anon_sym_LBRACK2, - ACTIONS(5515), 1, - anon_sym_AMP, - STATE(2007), 1, - sym_plain_type, - STATE(4528), 1, - sym_reference_expression, - STATE(1923), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2020), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1942), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109265] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1911), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109341] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4608), 1, - sym_plain_type, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109417] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3865), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109493] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1828), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109569] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1378), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109645] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4600), 1, - sym_reference_expression, - STATE(4659), 1, - sym_plain_type, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109721] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1832), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109797] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1099), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109873] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1380), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [109949] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4018), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110025] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1381), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110101] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1713), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110177] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(999), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110253] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1745), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110329] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2546), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110405] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2335), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110481] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3411), 1, - sym_identifier, - ACTIONS(3415), 1, - anon_sym_fn, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(3429), 1, - anon_sym_shared, - ACTIONS(3433), 1, - anon_sym_chan, - ACTIONS(3435), 1, - anon_sym_thread, - ACTIONS(3437), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5517), 1, - anon_sym_STAR, - ACTIONS(5519), 1, - anon_sym_QMARK, - ACTIONS(5521), 1, - anon_sym_BANG, - ACTIONS(5523), 1, - anon_sym_LBRACK2, - ACTIONS(5525), 1, - anon_sym_AMP, - ACTIONS(5527), 1, - anon_sym_map_LBRACK, - STATE(1751), 1, - sym_plain_type, - STATE(4409), 1, - sym_reference_expression, - STATE(1666), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110557] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1190), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110633] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1189), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110709] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1188), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110785] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3387), 1, - anon_sym_fn, - ACTIONS(3391), 1, - anon_sym_struct, - ACTIONS(3401), 1, - anon_sym_shared, - ACTIONS(3405), 1, - anon_sym_chan, - ACTIONS(3407), 1, - anon_sym_thread, - ACTIONS(3409), 1, - anon_sym_atomic, - ACTIONS(5415), 1, - anon_sym_LPAREN, - ACTIONS(5419), 1, - anon_sym_STAR, - ACTIONS(5421), 1, - anon_sym_QMARK, - ACTIONS(5423), 1, - anon_sym_BANG, - ACTIONS(5425), 1, - anon_sym_LBRACK2, - ACTIONS(5427), 1, - anon_sym_AMP, - ACTIONS(5429), 1, - anon_sym_map_LBRACK, - STATE(1477), 1, - sym_plain_type, - STATE(4515), 1, - sym_reference_expression, - STATE(1411), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1465), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1427), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110861] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2323), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [110937] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4543), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111013] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4593), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111089] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4345), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111165] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2602), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111241] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2603), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111317] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3702), 1, - sym_identifier, - ACTIONS(3704), 1, - anon_sym_fn, - ACTIONS(3706), 1, - anon_sym_STAR, - ACTIONS(3716), 1, - anon_sym_shared, - ACTIONS(3718), 1, - anon_sym_map_LBRACK, - ACTIONS(3720), 1, - anon_sym_chan, - ACTIONS(3722), 1, - anon_sym_thread, - ACTIONS(3724), 1, - anon_sym_atomic, - ACTIONS(5529), 1, - anon_sym_QMARK, - ACTIONS(5531), 1, - anon_sym_BANG, - ACTIONS(5533), 1, - anon_sym_LBRACK2, - ACTIONS(5535), 1, - anon_sym_AMP, - STATE(2410), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(2318), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111393] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1867), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111469] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1237), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111545] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1236), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111621] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1797), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111697] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1322), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111773] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3990), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111849] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1659), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [111925] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1656), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112001] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1232), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112077] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4102), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112153] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1332), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112229] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2567), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112305] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3349), 1, - sym_identifier, - ACTIONS(3351), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, - anon_sym_fn, - ACTIONS(3355), 1, - anon_sym_STAR, - ACTIONS(3357), 1, - anon_sym_struct, - ACTIONS(3367), 1, - anon_sym_shared, - ACTIONS(3369), 1, - anon_sym_map_LBRACK, - ACTIONS(3371), 1, - anon_sym_chan, - ACTIONS(3373), 1, - anon_sym_thread, - ACTIONS(3375), 1, - anon_sym_atomic, - ACTIONS(5569), 1, - anon_sym_QMARK, - ACTIONS(5571), 1, - anon_sym_BANG, - ACTIONS(5573), 1, - anon_sym_LBRACK2, - ACTIONS(5575), 1, - anon_sym_AMP, - STATE(1338), 1, - sym_plain_type, - STATE(4423), 1, - sym_reference_expression, - STATE(1294), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1344), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1345), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112381] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3730), 1, - sym_identifier, - ACTIONS(3734), 1, - anon_sym_fn, - ACTIONS(3738), 1, - anon_sym_struct, - ACTIONS(3748), 1, - anon_sym_shared, - ACTIONS(3752), 1, - anon_sym_chan, - ACTIONS(3754), 1, - anon_sym_thread, - ACTIONS(3756), 1, - anon_sym_atomic, - ACTIONS(5493), 1, - anon_sym_LPAREN, - ACTIONS(5495), 1, - anon_sym_STAR, - ACTIONS(5497), 1, - anon_sym_QMARK, - ACTIONS(5499), 1, - anon_sym_BANG, - ACTIONS(5501), 1, - anon_sym_LBRACK2, - ACTIONS(5503), 1, - anon_sym_AMP, - ACTIONS(5505), 1, - anon_sym_map_LBRACK, - STATE(2564), 1, - sym_plain_type, - STATE(4486), 1, - sym_reference_expression, - STATE(2457), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2570), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2569), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112457] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4500), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112533] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(893), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112609] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1644), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112685] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1873), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112761] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1632), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112837] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1862), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112913] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3443), 1, - sym_identifier, - ACTIONS(3447), 1, - anon_sym_fn, - ACTIONS(3451), 1, - anon_sym_struct, - ACTIONS(3461), 1, - anon_sym_shared, - ACTIONS(3465), 1, - anon_sym_chan, - ACTIONS(3467), 1, - anon_sym_thread, - ACTIONS(3469), 1, - anon_sym_atomic, - ACTIONS(5577), 1, - anon_sym_LPAREN, - ACTIONS(5579), 1, - anon_sym_STAR, - ACTIONS(5581), 1, - anon_sym_QMARK, - ACTIONS(5583), 1, - anon_sym_BANG, - ACTIONS(5585), 1, - anon_sym_LBRACK2, - ACTIONS(5587), 1, - anon_sym_AMP, - ACTIONS(5589), 1, - anon_sym_map_LBRACK, - STATE(1859), 1, - sym_plain_type, - STATE(4549), 1, - sym_reference_expression, - STATE(1787), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1886), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1885), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [112989] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1660), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113065] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3870), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113141] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2111), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113217] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4485), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113293] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2060), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113369] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4046), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113445] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2056), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113521] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1247), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113597] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(3864), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113673] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4131), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113749] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3555), 1, - sym_identifier, - ACTIONS(3557), 1, - anon_sym_LPAREN, - ACTIONS(3559), 1, - anon_sym_fn, - ACTIONS(3563), 1, - anon_sym_struct, - ACTIONS(3573), 1, - anon_sym_shared, - ACTIONS(3575), 1, - anon_sym_map_LBRACK, - ACTIONS(3577), 1, - anon_sym_chan, - ACTIONS(3579), 1, - anon_sym_thread, - ACTIONS(3581), 1, - anon_sym_atomic, - ACTIONS(5537), 1, - anon_sym_STAR, - ACTIONS(5539), 1, - anon_sym_QMARK, - ACTIONS(5541), 1, - anon_sym_BANG, - ACTIONS(5543), 1, - anon_sym_LBRACK2, - ACTIONS(5545), 1, - anon_sym_AMP, - STATE(2058), 1, - sym_plain_type, - STATE(4465), 1, - sym_reference_expression, - STATE(1919), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2126), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2127), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113825] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4092), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113901] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(878), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [113977] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(929), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114053] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(553), 1, - sym_identifier, - ACTIONS(559), 1, - anon_sym_fn, - ACTIONS(563), 1, - anon_sym_struct, - ACTIONS(573), 1, - anon_sym_shared, - ACTIONS(577), 1, - anon_sym_chan, - ACTIONS(579), 1, - anon_sym_thread, - ACTIONS(581), 1, - anon_sym_atomic, - ACTIONS(5605), 1, - anon_sym_LPAREN, - ACTIONS(5607), 1, - anon_sym_STAR, - ACTIONS(5609), 1, - anon_sym_QMARK, - ACTIONS(5611), 1, - anon_sym_BANG, - ACTIONS(5613), 1, - anon_sym_LBRACK2, - ACTIONS(5615), 1, - anon_sym_AMP, - ACTIONS(5617), 1, - anon_sym_map_LBRACK, - STATE(931), 1, - sym_plain_type, - STATE(4460), 1, - sym_reference_expression, - STATE(521), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(898), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(896), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114129] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3281), 1, - anon_sym_fn, - ACTIONS(3285), 1, - anon_sym_struct, - ACTIONS(3295), 1, - anon_sym_shared, - ACTIONS(3299), 1, - anon_sym_chan, - ACTIONS(3301), 1, - anon_sym_thread, - ACTIONS(3303), 1, - anon_sym_atomic, - ACTIONS(5633), 1, - anon_sym_LPAREN, - ACTIONS(5635), 1, - anon_sym_STAR, - ACTIONS(5637), 1, - anon_sym_QMARK, - ACTIONS(5639), 1, - anon_sym_BANG, - ACTIONS(5641), 1, - anon_sym_LBRACK2, - ACTIONS(5643), 1, - anon_sym_AMP, - ACTIONS(5645), 1, - anon_sym_map_LBRACK, - STATE(1246), 1, - sym_plain_type, - STATE(4507), 1, - sym_reference_expression, - STATE(1164), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1177), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1178), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114205] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1635), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114281] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4562), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114357] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4063), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114433] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2410), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114509] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2409), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114585] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4153), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114661] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1028), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114737] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3199), 1, - sym_identifier, - ACTIONS(3419), 1, - anon_sym_struct, - ACTIONS(5321), 1, - anon_sym_fn, - ACTIONS(5333), 1, - anon_sym_shared, - ACTIONS(5337), 1, - anon_sym_chan, - ACTIONS(5339), 1, - anon_sym_thread, - ACTIONS(5341), 1, - anon_sym_atomic, - ACTIONS(5399), 1, - anon_sym_LPAREN, - ACTIONS(5403), 1, - anon_sym_STAR, - ACTIONS(5405), 1, - anon_sym_QMARK, - ACTIONS(5407), 1, - anon_sym_BANG, - ACTIONS(5409), 1, - anon_sym_LBRACK2, - ACTIONS(5411), 1, - anon_sym_AMP, - ACTIONS(5413), 1, - anon_sym_map_LBRACK, - STATE(1639), 1, - sym_plain_type, - STATE(4416), 1, - sym_reference_expression, - STATE(3390), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1665), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1641), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114813] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(2407), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114889] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1017), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [114965] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1602), 1, - sym_identifier, - ACTIONS(1606), 1, - anon_sym_fn, - ACTIONS(1610), 1, - anon_sym_struct, - ACTIONS(1620), 1, - anon_sym_shared, - ACTIONS(1624), 1, - anon_sym_chan, - ACTIONS(1626), 1, - anon_sym_thread, - ACTIONS(1628), 1, - anon_sym_atomic, - ACTIONS(5591), 1, - anon_sym_LPAREN, - ACTIONS(5593), 1, - anon_sym_STAR, - ACTIONS(5595), 1, - anon_sym_QMARK, - ACTIONS(5597), 1, - anon_sym_BANG, - ACTIONS(5599), 1, - anon_sym_LBRACK2, - ACTIONS(5601), 1, - anon_sym_AMP, - ACTIONS(5603), 1, - anon_sym_map_LBRACK, - STATE(1016), 1, - sym_plain_type, - STATE(4444), 1, - sym_reference_expression, - STATE(994), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(1059), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(1060), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115041] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(43), 1, - anon_sym_QMARK, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3377), 1, - anon_sym_LPAREN, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5139), 1, - anon_sym_BANG, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4430), 1, - sym_plain_type, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2428), 4, - sym__plain_type_without_special, - sym_multi_return_type, - sym_result_type, - sym_option_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115117] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4387), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115178] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4219), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115239] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4377), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115300] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - sym___double_quote, - ACTIONS(1295), 1, - sym___single_quote, - ACTIONS(1297), 1, - sym___c_double_quote, - ACTIONS(1299), 1, - sym___c_single_quote, - ACTIONS(1301), 1, - sym___r_double_quote, - ACTIONS(1303), 1, - sym___r_single_quote, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5649), 1, - anon_sym_if, - ACTIONS(5651), 1, - anon_sym_unsafe, - STATE(3967), 1, - sym_reference_expression, - STATE(4013), 1, - sym_value_attribute, - STATE(4027), 1, - sym_attribute_expression, - STATE(4247), 1, - sym_literal, - ACTIONS(1287), 2, - sym_float_literal, - sym_rune_literal, - STATE(2336), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - STATE(4184), 4, - sym_if_attribute, - sym__plain_attribute, - sym_literal_attribute, - sym_key_value_attribute, - ACTIONS(1271), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [115365] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4119), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115426] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4263), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115487] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - sym___double_quote, - ACTIONS(1295), 1, - sym___single_quote, - ACTIONS(1297), 1, - sym___c_double_quote, - ACTIONS(1299), 1, - sym___c_single_quote, - ACTIONS(1301), 1, - sym___r_double_quote, - ACTIONS(1303), 1, - sym___r_single_quote, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5649), 1, - anon_sym_if, - ACTIONS(5651), 1, - anon_sym_unsafe, - STATE(3967), 1, - sym_reference_expression, - STATE(4013), 1, - sym_value_attribute, - STATE(4093), 1, - sym_attribute_expression, - STATE(4247), 1, - sym_literal, - ACTIONS(1287), 2, - sym_float_literal, - sym_rune_literal, - STATE(2336), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - STATE(4184), 4, - sym_if_attribute, - sym__plain_attribute, - sym_literal_attribute, - sym_key_value_attribute, - ACTIONS(1271), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [115552] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4318), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115613] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4137), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115674] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4496), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115735] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4103), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115796] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4354), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115857] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4211), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115918] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4208), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [115979] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4438), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [116040] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_map_LBRACK, - ACTIONS(83), 1, - anon_sym_chan, - ACTIONS(85), 1, - anon_sym_thread, - ACTIONS(87), 1, - anon_sym_atomic, - ACTIONS(593), 1, - sym_identifier, - ACTIONS(599), 1, - anon_sym_fn, - ACTIONS(603), 1, - anon_sym_struct, - ACTIONS(611), 1, - anon_sym_shared, - ACTIONS(3379), 1, - anon_sym_STAR, - ACTIONS(5141), 1, - anon_sym_LBRACK2, - ACTIONS(5143), 1, - anon_sym_AMP, - STATE(4301), 1, - sym__plain_type_without_special, - STATE(4600), 1, - sym_reference_expression, - STATE(3581), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(2424), 12, - sym_anon_struct_type, - sym_fixed_array_type, - sym_array_type, - sym_pointer_type, - sym_wrong_pointer_type, - sym_map_type, - sym_channel_type, - sym_shared_type, - sym_thread_type, - sym_atomic_type, - sym_generic_type, - sym_function_type, - [116101] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4671), 1, - anon_sym_LBRACK, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5655), 1, - anon_sym_LPAREN, - ACTIONS(5661), 1, - anon_sym_LT2, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - STATE(3405), 1, - sym_receiver, - STATE(3537), 1, - sym_capture_list, - STATE(3784), 1, - sym_generic_parameters, - STATE(4095), 1, - sym_signature, - STATE(4613), 1, - sym_reference_expression, - STATE(4626), 1, - sym_static_receiver, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - STATE(3534), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [116161] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3137), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym___global, - anon_sym_fn, - anon_sym_STAR, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [116191] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3101), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym___global, - anon_sym_fn, - anon_sym_STAR, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [116221] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3105), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym___global, - anon_sym_fn, - anon_sym_STAR, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [116251] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3133), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym___global, - anon_sym_fn, - anon_sym_STAR, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [116281] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3041), 24, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - anon_sym___global, - anon_sym_fn, - anon_sym_STAR, - anon_sym_struct, - anon_sym_pub, - anon_sym_mut, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - sym_identifier, - anon_sym_shared, - anon_sym_map_LBRACK, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - anon_sym_AT_LBRACK, - [116311] = 4, - ACTIONS(487), 1, - sym_comment, - STATE(3569), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1684), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - ACTIONS(1690), 15, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116341] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3105), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3103), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [116367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3137), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3135), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [116393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3133), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3131), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [116419] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5665), 1, - anon_sym_LPAREN, - STATE(3377), 1, - sym_receiver, - STATE(4613), 1, - sym_reference_expression, - STATE(4668), 1, - sym_static_receiver, - STATE(3515), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [116457] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5665), 1, - anon_sym_LPAREN, - STATE(3392), 1, - sym_receiver, - STATE(4560), 1, - sym_static_receiver, - STATE(4613), 1, - sym_reference_expression, - STATE(3529), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [116495] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5653), 1, - sym_identifier, - ACTIONS(5665), 1, - anon_sym_LPAREN, - STATE(3398), 1, - sym_receiver, - STATE(4542), 1, - sym_static_receiver, - STATE(4613), 1, - sym_reference_expression, - STATE(3506), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [116533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3041), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3039), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [116559] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1293), 1, - sym___double_quote, - ACTIONS(1295), 1, - sym___single_quote, - ACTIONS(1297), 1, - sym___c_double_quote, - ACTIONS(1299), 1, - sym___c_single_quote, - ACTIONS(1301), 1, - sym___r_double_quote, - ACTIONS(1303), 1, - sym___r_single_quote, - ACTIONS(5667), 1, - sym_identifier, - STATE(4218), 1, - sym_literal, - ACTIONS(1287), 2, - sym_float_literal, - sym_rune_literal, - STATE(2336), 3, - sym_c_string_literal, - sym_raw_string_literal, - sym_interpreted_string_literal, - ACTIONS(1271), 5, - sym_none, - sym_true, - sym_false, - sym_nil, - sym_int_literal, - [116603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3101), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(3099), 11, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_STAR, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [116629] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 17, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116652] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5669), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_module, - anon_sym_RBRACE, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_mut, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [116675] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_SEMI, - STATE(3969), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3305), 15, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116702] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5671), 17, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_module, - anon_sym_RBRACE, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_mut, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [116725] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1682), 1, - anon_sym_LBRACE, - STATE(4091), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3305), 15, - anon_sym_COMMA, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116752] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5673), 1, - anon_sym_static, - ACTIONS(5675), 1, - anon_sym_volatile, - ACTIONS(4314), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4316), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [116781] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5677), 1, - anon_sym_COMMA, - STATE(3350), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3787), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116807] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5679), 1, - anon_sym_COMMA, - STATE(3350), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3305), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116833] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4566), 1, - anon_sym_COMMA, - STATE(3355), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(5682), 14, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [116859] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5684), 1, - anon_sym_COMMA, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3227), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116885] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5686), 1, - anon_sym_COMMA, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3227), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4426), 1, - anon_sym_COMMA, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3227), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [116937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5688), 1, - anon_sym_COMMA, - STATE(3355), 1, - aux_sym_expression_without_blocks_list_repeat1, - ACTIONS(4607), 14, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [116963] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5691), 1, - anon_sym_volatile, - ACTIONS(4697), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4699), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [116989] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4534), 1, - anon_sym_COMMA, - STATE(3349), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3227), 14, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - anon_sym_COLON_EQ, - [117015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4697), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4699), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [117038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5693), 1, - anon_sym_LBRACE, - STATE(4707), 1, - sym__select_arm_assignment_statement, - ACTIONS(5695), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [117063] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4723), 7, - anon_sym_fn, - anon_sym_struct, - sym_identifier, - anon_sym_shared, - anon_sym_chan, - anon_sym_thread, - anon_sym_atomic, - ACTIONS(4725), 8, - anon_sym_LPAREN, - anon_sym_STAR, - anon_sym_DOT_DOT_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_LBRACK2, - anon_sym_AMP, - anon_sym_map_LBRACK, - [117086] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5697), 1, - sym_identifier, - ACTIONS(5699), 1, - anon_sym_RBRACE, - STATE(3363), 1, - aux_sym__interface_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3465), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [117127] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5697), 1, - sym_identifier, - ACTIONS(5701), 1, - anon_sym_RBRACE, - STATE(3361), 1, - aux_sym__interface_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3465), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [117168] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5703), 1, - sym_identifier, - ACTIONS(5706), 1, - anon_sym_RBRACE, - ACTIONS(5711), 1, - anon_sym_pub, - STATE(3363), 1, - aux_sym__interface_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(5708), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3465), 3, - sym_struct_field_scope, - sym_struct_field_declaration, - sym_interface_method_definition, - [117209] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5714), 1, - sym_identifier, - STATE(3530), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [117235] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5718), 1, - anon_sym_RBRACE, - STATE(3393), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5722), 1, - anon_sym_COLON_EQ, - ACTIONS(5720), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [117297] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5724), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117337] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5726), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117377] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5728), 1, - anon_sym_RBRACE, - STATE(3379), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117417] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5730), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117457] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2772), 1, - anon_sym_DOT, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [117481] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5732), 1, - anon_sym_RBRACE, - STATE(3367), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117521] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5734), 1, - anon_sym_RBRACE, - STATE(3380), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117561] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5736), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117601] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5738), 1, - anon_sym_RBRACE, - STATE(3391), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117641] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5740), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117681] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5742), 1, - sym_identifier, - STATE(3536), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [117707] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(623), 1, - anon_sym_RBRACE, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - STATE(3382), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117747] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5744), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117787] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5746), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON_EQ, - ACTIONS(5748), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [117849] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5752), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5756), 1, - anon_sym_COLON_EQ, - ACTIONS(5754), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [117911] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5758), 1, - anon_sym_RBRACE, - STATE(3406), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117951] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5760), 1, - anon_sym_RBRACE, - STATE(3376), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [117991] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5762), 1, - anon_sym_RBRACE, - STATE(3409), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118031] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5764), 1, - anon_sym_RBRACE, - STATE(3374), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118071] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5766), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118111] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5768), 1, - anon_sym_RBRACE, - STATE(3388), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118151] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5770), 1, - anon_sym_LBRACK, - STATE(3412), 1, - sym_type_parameters, - ACTIONS(2704), 12, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118175] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5772), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118215] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5774), 1, - sym_identifier, - STATE(3528), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118241] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5776), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118281] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5778), 1, - sym_identifier, - STATE(3483), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118307] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5782), 1, - anon_sym_COLON_EQ, - ACTIONS(5780), 13, - anon_sym_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_AMP_EQ, - anon_sym_AMP_CARET_EQ, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_PIPE_EQ, - anon_sym_CARET_EQ, - [118329] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5784), 1, - anon_sym_RBRACE, - STATE(3370), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118369] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5786), 1, - anon_sym_RBRACE, - STATE(3403), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118409] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5788), 1, - sym_identifier, - STATE(3535), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118435] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5790), 1, - sym_identifier, - ACTIONS(5793), 1, - anon_sym_RBRACE, - ACTIONS(5798), 1, - anon_sym_pub, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(5795), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118475] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5801), 1, - sym_identifier, - STATE(3521), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118501] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5803), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(5805), 11, - anon_sym_module, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - [118523] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5807), 1, - sym_identifier, - STATE(3499), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118549] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5809), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118589] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3027), 1, - anon_sym_LBRACK, - ACTIONS(3029), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118611] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5811), 1, - sym_identifier, - STATE(3522), 2, - sym__function_name, - sym_overridable_operator, - ACTIONS(5659), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5657), 8, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [118637] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5813), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118677] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3167), 1, - anon_sym_LBRACK, - ACTIONS(3169), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118699] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5815), 1, - anon_sym_RBRACE, - STATE(3368), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118739] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(639), 1, - anon_sym_pub, - ACTIONS(5716), 1, - sym_identifier, - ACTIONS(5817), 1, - anon_sym_RBRACE, - STATE(3399), 1, - aux_sym__struct_body_repeat1, - STATE(3474), 1, - sym_generic_type, - STATE(3477), 1, - sym_embedded_definition, - STATE(3478), 1, - sym__struct_field_definition, - STATE(4416), 1, - sym_reference_expression, - ACTIONS(627), 2, - anon_sym___global, - anon_sym_mut, - STATE(3445), 2, - sym_type_reference_expression, - sym_qualified_type, - STATE(3479), 2, - sym_struct_field_scope, - sym_struct_field_declaration, - [118779] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3173), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118798] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3401), 1, - sym_attribute, - STATE(3411), 1, - aux_sym_attributes_repeat1, - ACTIONS(5821), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5819), 9, - anon_sym_module, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - [118823] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3165), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118842] = 5, - ACTIONS(3), 1, - sym_comment, - STATE(3401), 1, - sym_attribute, - STATE(3411), 1, - aux_sym_attributes_repeat1, - ACTIONS(109), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5824), 9, - anon_sym_module, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - [118867] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3177), 13, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118886] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5828), 1, - anon_sym_EQ, - STATE(3464), 1, - sym_attribute, - ACTIONS(4653), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5826), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [118910] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5832), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5830), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_identifier, - [118930] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5836), 3, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_GT, - ACTIONS(5834), 9, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_STAR, - anon_sym_PERCENT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_identifier, - [118950] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2915), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118967] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2844), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [118984] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2927), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119001] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3081), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119018] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3109), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119035] = 4, - ACTIONS(487), 1, - sym_comment, - STATE(3481), 1, - sym_attribute, - ACTIONS(4653), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5838), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119056] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_LBRACK, - STATE(3412), 1, - sym_type_parameters, - ACTIONS(5840), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119079] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2840), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119096] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3121), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119113] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2939), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119130] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2959), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119147] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3113), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119164] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3129), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119181] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2935), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119198] = 4, - ACTIONS(487), 1, - sym_comment, - STATE(3473), 1, - sym_attribute, - ACTIONS(4653), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5842), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119219] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2784), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119236] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3009), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119253] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2856), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119270] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2919), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119287] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3097), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119304] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2704), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119321] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2903), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119338] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2993), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119355] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5819), 11, - anon_sym_module, - anon_sym_const, - anon_sym___global, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_pub, - anon_sym_enum, - anon_sym_interface, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - [119372] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2989), 11, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - anon_sym_LBRACK2, - sym_identifier, - anon_sym_AT_LBRACK, - [119389] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5844), 1, - anon_sym_module, - ACTIONS(5846), 1, - anon_sym_const, - ACTIONS(5848), 1, - anon_sym___global, - ACTIONS(5850), 1, - anon_sym_fn, - ACTIONS(5854), 1, - anon_sym_pub, - ACTIONS(5856), 1, - anon_sym_enum, - ACTIONS(5858), 1, - anon_sym_interface, - STATE(3626), 1, - sym_visibility_modifiers, - ACTIONS(5852), 2, - anon_sym_struct, - anon_sym_union, - [119421] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5860), 1, - sym_identifier, - ACTIONS(5864), 1, - anon_sym_LPAREN, - STATE(1517), 1, - sym_global_var_definition, - ACTIONS(5862), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [119443] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5770), 1, - anon_sym_LBRACK, - STATE(3412), 1, - sym_type_parameters, - ACTIONS(5840), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119463] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3490), 1, - sym_capture_list, - STATE(3739), 1, - sym_generic_parameters, - STATE(4308), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119490] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3537), 1, - sym_capture_list, - STATE(3784), 1, - sym_generic_parameters, - STATE(4095), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119517] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2772), 9, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - anon_sym_COLON, - sym_identifier, - [119532] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3503), 1, - sym_capture_list, - STATE(3699), 1, - sym_generic_parameters, - STATE(4243), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119559] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3525), 1, - anon_sym_COLON, - ACTIONS(3523), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(5868), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [119578] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3509), 1, - sym_capture_list, - STATE(3837), 1, - sym_generic_parameters, - STATE(4244), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119605] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3495), 1, - sym_capture_list, - STATE(3695), 1, - sym_generic_parameters, - STATE(4157), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119632] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3487), 1, - sym_capture_list, - STATE(3705), 1, - sym_generic_parameters, - STATE(4339), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119659] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3507), 1, - sym_capture_list, - STATE(3716), 1, - sym_generic_parameters, - STATE(4329), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119686] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3493), 1, - sym_capture_list, - STATE(3701), 1, - sym_generic_parameters, - STATE(4169), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119713] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3514), 1, - sym_capture_list, - STATE(3746), 1, - sym_generic_parameters, - STATE(4270), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119740] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3513), 1, - sym_capture_list, - STATE(3743), 1, - sym_generic_parameters, - STATE(4405), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119767] = 5, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5872), 1, - anon_sym_EQ, - STATE(3674), 1, - sym_attribute, - ACTIONS(4653), 2, - anon_sym_LBRACK2, - anon_sym_AT_LBRACK, - ACTIONS(5870), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [119788] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3511), 1, - sym_capture_list, - STATE(3722), 1, - sym_generic_parameters, - STATE(4009), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119815] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5663), 1, - anon_sym_LBRACK2, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3525), 1, - sym_capture_list, - STATE(3679), 1, - sym_signature, - STATE(3794), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [119842] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5860), 1, - sym_identifier, - ACTIONS(5874), 1, - anon_sym_LPAREN, - STATE(1488), 1, - sym_global_var_definition, - ACTIONS(5862), 6, - anon_sym_const, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [119863] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(2704), 1, - anon_sym_LBRACE, - ACTIONS(5840), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119880] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5846), 1, - anon_sym_const, - ACTIONS(5848), 1, - anon_sym___global, - ACTIONS(5850), 1, - anon_sym_fn, - ACTIONS(5854), 1, - anon_sym_pub, - ACTIONS(5856), 1, - anon_sym_enum, - ACTIONS(5858), 1, - anon_sym_interface, - STATE(3626), 1, - sym_visibility_modifiers, - ACTIONS(5852), 2, - anon_sym_struct, - anon_sym_union, - [119909] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5876), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119923] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5880), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(5878), 5, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119939] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(635), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5882), 1, - sym_identifier, - ACTIONS(5884), 1, - anon_sym_RBRACE, - STATE(3450), 1, - sym_reference_expression, - STATE(3472), 1, - aux_sym_element_list_repeat1, - STATE(4432), 1, - sym_field_name, - STATE(3476), 2, - sym_keyed_element, - sym_spread_expression, - [119965] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5886), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [119979] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5890), 1, - anon_sym_as, - ACTIONS(5892), 1, - anon_sym_LBRACE, - STATE(3622), 1, - sym_import_alias, - STATE(3692), 1, - sym_selective_import_list, - ACTIONS(5888), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [120001] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5896), 1, - anon_sym_DOT, - STATE(3469), 1, - aux_sym_import_path_repeat1, - ACTIONS(5894), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [120019] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5901), 1, - anon_sym_DOT, - STATE(3482), 1, - aux_sym_import_path_repeat1, - ACTIONS(5899), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [120037] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5903), 1, - anon_sym_COMMA, - ACTIONS(5905), 1, - anon_sym_RBRACK, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - STATE(3880), 1, - sym_capture, - STATE(4370), 1, - sym_mutability_modifiers, - STATE(4371), 1, - sym_reference_expression, - [120065] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5911), 1, - sym_identifier, - ACTIONS(5914), 1, - anon_sym_RBRACE, - ACTIONS(5916), 1, - anon_sym_DOT_DOT_DOT, - STATE(3450), 1, - sym_reference_expression, - STATE(3472), 1, - aux_sym_element_list_repeat1, - STATE(4432), 1, - sym_field_name, - STATE(3476), 2, - sym_keyed_element, - sym_spread_expression, - [120091] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5919), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120105] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5840), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120119] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5921), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120133] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3523), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - ACTIONS(5868), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120149] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5923), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120163] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5925), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120177] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5929), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - ACTIONS(5927), 5, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120193] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5931), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120207] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5933), 8, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [120221] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5901), 1, - anon_sym_DOT, - STATE(3469), 1, - aux_sym_import_path_repeat1, - ACTIONS(5935), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_as, - anon_sym_LBRACE, - [120239] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1453), 1, - sym_signature, - STATE(3813), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [120260] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5941), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5939), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120277] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5945), 1, - anon_sym_RPAREN, - STATE(3505), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5943), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120294] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5949), 1, - anon_sym_RPAREN, - STATE(3497), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5947), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120311] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3721), 1, - sym_generic_parameters, - STATE(4226), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120332] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(5951), 1, - anon_sym_RBRACK, - STATE(4162), 1, - sym_capture, - STATE(4370), 1, - sym_mutability_modifiers, - STATE(4371), 1, - sym_reference_expression, - [120357] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5955), 1, - anon_sym_RPAREN, - STATE(3492), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5953), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120374] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3687), 1, - sym_generic_parameters, - STATE(4392), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120395] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5959), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5957), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120412] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5963), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5961), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120429] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3708), 1, - sym_generic_parameters, - STATE(4203), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120450] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5967), 1, - anon_sym_RPAREN, - STATE(3501), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5965), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120467] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3700), 1, - sym_generic_parameters, - STATE(4107), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120488] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5969), 7, - anon_sym_const, - anon_sym_type, - anon_sym_fn, - anon_sym_struct, - anon_sym_union, - anon_sym_enum, - anon_sym_interface, - [120501] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5973), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5971), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120518] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5977), 1, - anon_sym_RPAREN, - STATE(3491), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5975), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120535] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1447), 1, - sym_signature, - STATE(3750), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [120556] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(5979), 1, - anon_sym_RBRACK, - STATE(4162), 1, - sym_capture, - STATE(4370), 1, - sym_mutability_modifiers, - STATE(4371), 1, - sym_reference_expression, - [120581] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5983), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5981), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120598] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5988), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5985), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120615] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3798), 1, - sym_generic_parameters, - STATE(4212), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120636] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5992), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5990), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120653] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5996), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5994), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120670] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1449), 1, - sym_signature, - STATE(3799), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [120691] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3836), 1, - sym_generic_parameters, - STATE(4305), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120712] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6000), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(5998), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120729] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3850), 1, - sym_generic_parameters, - STATE(4130), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120750] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6002), 1, - sym_identifier, - STATE(3669), 1, - sym_reference_expression, - ACTIONS(6004), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [120767] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3733), 1, - sym_generic_parameters, - STATE(4143), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120788] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6008), 1, - anon_sym_RPAREN, - STATE(3504), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6006), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120805] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3729), 1, - sym_generic_parameters, - STATE(4379), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120826] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3744), 1, - sym_generic_parameters, - STATE(4330), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [120847] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1485), 1, - sym_signature, - STATE(3820), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [120868] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6012), 1, - anon_sym_RPAREN, - STATE(3532), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6010), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120885] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6014), 1, - anon_sym_const, - ACTIONS(6016), 1, - anon_sym_type, - ACTIONS(6018), 1, - anon_sym_fn, - ACTIONS(6022), 1, - anon_sym_enum, - ACTIONS(6024), 1, - anon_sym_interface, - ACTIONS(6020), 2, - anon_sym_struct, - anon_sym_union, - [120908] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6028), 1, - anon_sym_RPAREN, - STATE(3538), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6026), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120925] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6032), 1, - anon_sym_RPAREN, - STATE(3524), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6030), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120942] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6036), 1, - anon_sym_RPAREN, - STATE(3508), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6034), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [120959] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1461), 1, - sym_signature, - STATE(3689), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [120980] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1482), 1, - sym_signature, - STATE(3693), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121001] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6040), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6038), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121018] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6044), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6042), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121035] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3754), 1, - sym_generic_parameters, - STATE(4210), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [121056] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6046), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [121069] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6050), 1, - anon_sym_RPAREN, - STATE(3484), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6048), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121086] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1478), 1, - sym_signature, - STATE(3823), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121107] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1445), 1, - sym_signature, - STATE(3780), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121128] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1431), 1, - sym_signature, - STATE(3691), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121149] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6054), 1, - anon_sym_RPAREN, - STATE(3523), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6052), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121166] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6058), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6056), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121183] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5894), 7, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_as, - anon_sym_LBRACE, - [121196] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1468), 1, - sym_signature, - STATE(3685), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121217] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1441), 1, - sym_signature, - STATE(3826), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121238] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1471), 1, - sym_signature, - STATE(3694), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [121259] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(3778), 1, - sym_generic_parameters, - STATE(4363), 1, - sym_signature, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [121280] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6062), 1, - anon_sym_RPAREN, - STATE(3502), 1, - aux_sym_argument_list_repeat1, - ACTIONS(6060), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - [121297] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6070), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121317] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6078), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121337] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6082), 1, - anon_sym_RBRACE, - STATE(3561), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6080), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [121353] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6084), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121373] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6070), 1, - sym___double_quote, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121393] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6086), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121413] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6086), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121433] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6088), 1, - sym_escape_sequence, - ACTIONS(6090), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6092), 1, - sym___double_quote, - STATE(3554), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121453] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6092), 1, - sym___single_quote, - ACTIONS(6094), 1, - sym_escape_sequence, - ACTIONS(6096), 1, - aux_sym_c_string_literal_token1, - STATE(3557), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121473] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6098), 1, - sym_escape_sequence, - ACTIONS(6100), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6102), 1, - sym___double_quote, - STATE(3564), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121493] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6104), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121513] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(3640), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3789), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [121529] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6102), 1, - sym___single_quote, - ACTIONS(6106), 1, - sym_escape_sequence, - ACTIONS(6108), 1, - aux_sym_c_string_literal_token1, - STATE(3565), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121549] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6110), 1, - sym_escape_sequence, - ACTIONS(6112), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6114), 1, - sym___single_quote, - STATE(3577), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121569] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6114), 1, - sym___double_quote, - ACTIONS(6116), 1, - sym_escape_sequence, - ACTIONS(6118), 1, - aux_sym_c_string_literal_token2, - STATE(3572), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121589] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6120), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121609] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6122), 1, - sym_escape_sequence, - ACTIONS(6124), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6126), 1, - sym___single_quote, - STATE(3596), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121629] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6126), 1, - sym___double_quote, - ACTIONS(6128), 1, - sym_escape_sequence, - ACTIONS(6130), 1, - aux_sym_c_string_literal_token2, - STATE(3542), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121649] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6120), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121669] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6132), 1, - sym_escape_sequence, - ACTIONS(6134), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6136), 1, - sym___single_quote, - STATE(3539), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121689] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6138), 1, - anon_sym_RBRACE, - STATE(3541), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6080), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [121705] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6136), 1, - sym___double_quote, - ACTIONS(6140), 1, - sym_escape_sequence, - ACTIONS(6142), 1, - aux_sym_c_string_literal_token2, - STATE(3543), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121725] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6147), 1, - anon_sym_RBRACE, - STATE(3561), 1, - aux_sym_selective_import_list_repeat1, - ACTIONS(6144), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - [121741] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6149), 1, - sym_escape_sequence, - ACTIONS(6151), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6153), 1, - sym___single_quote, - STATE(3544), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121761] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6153), 1, - sym___double_quote, - ACTIONS(6155), 1, - sym_escape_sequence, - ACTIONS(6157), 1, - aux_sym_c_string_literal_token2, - STATE(3545), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121781] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6159), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121801] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6159), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121821] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(3550), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1770), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [121837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_DOT, - ACTIONS(3027), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - [121851] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5647), 1, - sym_identifier, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - STATE(4162), 1, - sym_capture, - STATE(4370), 1, - sym_mutability_modifiers, - STATE(4371), 1, - sym_reference_expression, - [121873] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4779), 1, - anon_sym_COMMA, - STATE(3640), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(3793), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [121889] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4777), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [121901] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6161), 1, - sym_escape_sequence, - ACTIONS(6164), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6167), 1, - sym___dolcbr, - ACTIONS(6170), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121921] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6172), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121941] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6174), 1, - sym_escape_sequence, - ACTIONS(6176), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6178), 1, - sym___double_quote, - STATE(3593), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [121961] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6178), 1, - sym___single_quote, - ACTIONS(6180), 1, - sym_escape_sequence, - ACTIONS(6182), 1, - aux_sym_c_string_literal_token1, - STATE(3595), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [121981] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6184), 1, - sym_escape_sequence, - ACTIONS(6186), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6188), 1, - sym___double_quote, - STATE(3540), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122001] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6188), 1, - sym___single_quote, - ACTIONS(6190), 1, - sym_escape_sequence, - ACTIONS(6192), 1, - aux_sym_c_string_literal_token1, - STATE(3597), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122021] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6172), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122041] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6104), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122061] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6194), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122081] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6194), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122101] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6196), 1, - anon_sym_LBRACK, - STATE(2321), 1, - sym_type_parameters, - ACTIONS(2702), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [122117] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6198), 1, - sym_escape_sequence, - ACTIONS(6200), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6202), 1, - sym___double_quote, - STATE(3607), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122137] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6204), 1, - sym_escape_sequence, - ACTIONS(6206), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6208), 1, - sym___single_quote, - STATE(3645), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122157] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6202), 1, - sym___single_quote, - ACTIONS(6210), 1, - sym_escape_sequence, - ACTIONS(6212), 1, - aux_sym_c_string_literal_token1, - STATE(3608), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122177] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6214), 1, - sym_escape_sequence, - ACTIONS(6216), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6218), 1, - sym___double_quote, - STATE(3613), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122197] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6218), 1, - sym___single_quote, - ACTIONS(6220), 1, - sym_escape_sequence, - ACTIONS(6222), 1, - aux_sym_c_string_literal_token1, - STATE(3614), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122217] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6224), 1, - sym_escape_sequence, - ACTIONS(6226), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6228), 1, - sym___double_quote, - STATE(3615), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122237] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6228), 1, - sym___single_quote, - ACTIONS(6230), 1, - sym_escape_sequence, - ACTIONS(6232), 1, - aux_sym_c_string_literal_token1, - STATE(3616), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122257] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6234), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122277] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6236), 1, - sym_escape_sequence, - ACTIONS(6238), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6240), 1, - sym___double_quote, - STATE(3609), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122297] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6208), 1, - sym___double_quote, - ACTIONS(6242), 1, - sym_escape_sequence, - ACTIONS(6244), 1, - aux_sym_c_string_literal_token2, - STATE(3646), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122317] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6240), 1, - sym___single_quote, - ACTIONS(6246), 1, - sym_escape_sequence, - ACTIONS(6248), 1, - aux_sym_c_string_literal_token1, - STATE(3610), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122337] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6250), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122357] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6234), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122377] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6250), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122397] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6084), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122417] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6078), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122437] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6252), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122457] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6252), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122477] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6254), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122497] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6256), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122517] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6256), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122537] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6258), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122557] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6258), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122577] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6254), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122597] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6260), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122617] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6262), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122637] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6262), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122657] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6264), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122677] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6264), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122697] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6260), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122717] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6266), 1, - sym_escape_sequence, - ACTIONS(6268), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6270), 1, - sym___single_quote, - STATE(3647), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122737] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6272), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122757] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6272), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122777] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6274), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122797] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6274), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122817] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6276), 1, - sym_escape_sequence, - ACTIONS(6278), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6280), 1, - sym___single_quote, - STATE(3594), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122837] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6280), 1, - sym___double_quote, - ACTIONS(6282), 1, - sym_escape_sequence, - ACTIONS(6284), 1, - aux_sym_c_string_literal_token2, - STATE(3589), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122857] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6286), 1, - sym_escape_sequence, - ACTIONS(6288), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6290), 1, - sym___single_quote, - STATE(3598), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122877] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6290), 1, - sym___double_quote, - ACTIONS(6292), 1, - sym_escape_sequence, - ACTIONS(6294), 1, - aux_sym_c_string_literal_token2, - STATE(3599), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122897] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6270), 1, - sym___double_quote, - ACTIONS(6296), 1, - sym_escape_sequence, - ACTIONS(6298), 1, - aux_sym_c_string_literal_token2, - STATE(3648), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122917] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5892), 1, - anon_sym_LBRACE, - STATE(3793), 1, - sym_selective_import_list, - ACTIONS(6300), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [122933] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6302), 1, - sym_escape_sequence, - ACTIONS(6304), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6306), 1, - sym___single_quote, - STATE(3549), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122953] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6306), 1, - sym___double_quote, - ACTIONS(6308), 1, - sym_escape_sequence, - ACTIONS(6310), 1, - aux_sym_c_string_literal_token2, - STATE(3578), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [122973] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6312), 1, - sym_escape_sequence, - ACTIONS(6314), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6316), 1, - sym___single_quote, - STATE(3579), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [122993] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6318), 1, - anon_sym_const, - ACTIONS(6320), 1, - anon_sym_fn, - ACTIONS(6324), 1, - anon_sym_enum, - ACTIONS(6326), 1, - anon_sym_interface, - ACTIONS(6322), 2, - anon_sym_struct, - anon_sym_union, - [123013] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6316), 1, - sym___double_quote, - ACTIONS(6328), 1, - sym_escape_sequence, - ACTIONS(6330), 1, - aux_sym_c_string_literal_token2, - STATE(3580), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123033] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(5988), 6, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_COMMA, - anon_sym_RPAREN, - [123045] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6332), 1, - sym_escape_sequence, - ACTIONS(6334), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6336), 1, - sym___single_quote, - STATE(3600), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123065] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6336), 1, - sym___double_quote, - ACTIONS(6338), 1, - sym_escape_sequence, - ACTIONS(6340), 1, - aux_sym_c_string_literal_token2, - STATE(3605), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123085] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6342), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123105] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6342), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123125] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6344), 1, - sym_escape_sequence, - ACTIONS(6346), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6348), 1, - sym___single_quote, - STATE(3606), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123145] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6350), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123165] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6350), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123185] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6352), 1, - sym_identifier, - STATE(3702), 1, - sym_label_reference, - ACTIONS(3851), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123201] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6348), 1, - sym___double_quote, - ACTIONS(6354), 1, - sym_escape_sequence, - ACTIONS(6356), 1, - aux_sym_c_string_literal_token2, - STATE(3611), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123221] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6352), 1, - sym_identifier, - STATE(3704), 1, - sym_label_reference, - ACTIONS(3855), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123237] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6358), 1, - sym_escape_sequence, - ACTIONS(6361), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6364), 1, - sym___dolcbr, - ACTIONS(6367), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123257] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6369), 1, - anon_sym_COMMA, - STATE(3640), 1, - aux_sym_strictly_expression_list_repeat1, - ACTIONS(1690), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [123273] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6372), 1, - sym_escape_sequence, - ACTIONS(6374), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6376), 1, - sym___single_quote, - STATE(3631), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123293] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6376), 1, - sym___double_quote, - ACTIONS(6378), 1, - sym_escape_sequence, - ACTIONS(6380), 1, - aux_sym_c_string_literal_token2, - STATE(3632), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123313] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6382), 1, - sym_escape_sequence, - ACTIONS(6384), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6386), 1, - sym___single_quote, - STATE(3634), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123333] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6386), 1, - sym___double_quote, - ACTIONS(6388), 1, - sym_escape_sequence, - ACTIONS(6390), 1, - aux_sym_c_string_literal_token2, - STATE(3635), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123353] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6392), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123373] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6392), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123393] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6064), 1, - sym_escape_sequence, - ACTIONS(6066), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6394), 1, - sym___single_quote, - STATE(3571), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123413] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6072), 1, - sym_escape_sequence, - ACTIONS(6074), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6394), 1, - sym___double_quote, - STATE(3639), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123433] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6396), 1, - sym_escape_sequence, - ACTIONS(6398), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6400), 1, - sym___double_quote, - STATE(3604), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123453] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6400), 1, - sym___single_quote, - ACTIONS(6402), 1, - sym_escape_sequence, - ACTIONS(6404), 1, - aux_sym_c_string_literal_token1, - STATE(3603), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123473] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6076), 1, - sym___dolcbr, - ACTIONS(6406), 1, - sym_escape_sequence, - ACTIONS(6408), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6410), 1, - sym___double_quote, - STATE(3602), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat2, - [123493] = 6, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6068), 1, - sym___dolcbr, - ACTIONS(6410), 1, - sym___single_quote, - ACTIONS(6412), 1, - sym_escape_sequence, - ACTIONS(6414), 1, - aux_sym_c_string_literal_token1, - STATE(3601), 2, - sym_string_interpolation, - aux_sym_c_string_literal_repeat1, - [123513] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6416), 1, - anon_sym_DOT, - ACTIONS(6418), 1, - anon_sym_RBRACE, - ACTIONS(6420), 1, - sym_int_literal, - ACTIONS(6422), 1, - aux_sym_format_specifier_token1, - ACTIONS(6424), 1, - aux_sym_format_specifier_token2, - ACTIONS(6426), 1, - anon_sym_0, - [123535] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1535), 1, - sym__interface_body, - STATE(4326), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123552] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6430), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [123563] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_LBRACE, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(2320), 1, - sym_type_initializer_body, - STATE(4074), 1, - aux_sym_type_parameters_repeat1, - [123582] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6438), 1, - sym_identifier, - ACTIONS(6440), 1, - anon_sym_mut, - STATE(3984), 1, - sym_var_definition, - STATE(4205), 1, - sym_range_clause, - STATE(4548), 1, - sym_var_definition_list, - [123601] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6438), 1, - sym_identifier, - ACTIONS(6440), 1, - anon_sym_mut, - STATE(3984), 1, - sym_var_definition, - STATE(4228), 1, - sym_range_clause, - STATE(4548), 1, - sym_var_definition_list, - [123620] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1561), 1, - sym__struct_body, - STATE(4285), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123637] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1566), 1, - sym__interface_body, - STATE(4266), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123654] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2405), 1, - sym_block, - ACTIONS(6444), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [123669] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym__struct_body, - STATE(4262), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123686] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6448), 1, - anon_sym_RBRACE, - STATE(3672), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6446), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [123701] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1570), 1, - sym__interface_body, - STATE(4251), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123718] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(1690), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [123729] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6452), 1, - anon_sym_RBRACE, - STATE(3663), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6450), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [123744] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_LBRACE, - ACTIONS(6454), 1, - anon_sym_COMMA, - ACTIONS(6456), 1, - anon_sym_RPAREN, - STATE(2320), 1, - sym_type_initializer_body, - STATE(3856), 1, - aux_sym_type_parameters_repeat1, - [123763] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(6458), 1, - sym_identifier, - STATE(4230), 1, - sym_mutable_identifier, - STATE(4545), 1, - sym_mutability_modifiers, - [123782] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6147), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_COMMA, - anon_sym_RBRACE, - [123793] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6460), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - anon_sym_LBRACE, - [123804] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5706), 1, - anon_sym_RBRACE, - ACTIONS(6462), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [123817] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6467), 1, - anon_sym_RBRACE, - STATE(3672), 1, - aux_sym__statement_list_repeat1, - ACTIONS(6464), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [123832] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1537), 1, - sym__struct_body, - STATE(4331), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123849] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6469), 5, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - sym_identifier, - [123860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_LBRACE, - STATE(2320), 1, - sym_type_initializer_body, - ACTIONS(2917), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123875] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1521), 1, - sym__interface_body, - STATE(4343), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123892] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2320), 1, - sym_type_initializer_body, - ACTIONS(2933), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123905] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1572), 1, - sym__struct_body, - STATE(4332), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [123922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2426), 1, - sym_block, - ACTIONS(2937), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [123937] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1324), 1, - sym_block, - ACTIONS(6444), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [123952] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5793), 1, - anon_sym_RBRACE, - ACTIONS(6471), 4, - anon_sym___global, - anon_sym_pub, - anon_sym_mut, - sym_identifier, - [123965] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6473), 2, - anon_sym_RBRACE, - sym_identifier, - ACTIONS(6475), 3, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - [123978] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(6477), 1, - sym_identifier, - STATE(4129), 1, - sym_parameter_declaration, - STATE(4650), 1, - sym_mutability_modifiers, - [123997] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2320), 1, - sym_type_initializer_body, - ACTIONS(2913), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [124010] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1479), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [124024] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6467), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124034] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4384), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124048] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(6479), 1, - anon_sym_DOLLARif, - STATE(1361), 2, - sym_compile_time_if_expression, - sym_block, - [124062] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1439), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [124076] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(6481), 1, - anon_sym_if, - STATE(1363), 1, - sym_block, - STATE(1364), 1, - sym_if_expression, - [124092] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1450), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [124106] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6300), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124116] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1440), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [124130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1473), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [124144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4101), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124158] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4173), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124168] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4177), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124178] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4185), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4214), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124202] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4115), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124216] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4202), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124230] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4189), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124240] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6483), 1, - sym_identifier, - ACTIONS(6485), 1, - anon_sym_DOLLAR, - STATE(1029), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [124254] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4201), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124264] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4273), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124278] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6487), 1, - anon_sym_DOLLARif, - STATE(2324), 2, - sym_compile_time_if_expression, - sym_block, - [124292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6489), 1, - sym_identifier, - ACTIONS(6491), 1, - anon_sym_DOLLAR, - STATE(2040), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [124306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4245), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124320] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6493), 1, - anon_sym_LPAREN, - STATE(1314), 1, - sym_signature, - STATE(1109), 2, - sym_parameter_list, - sym_type_parameter_list, - [124334] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6497), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, - aux_sym_const_declaration_repeat1, - [124350] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(6499), 1, - anon_sym_if, - STATE(2043), 1, - sym_if_expression, - STATE(2079), 1, - sym_block, - [124366] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4224), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124376] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6501), 1, - anon_sym_LPAREN, - STATE(1087), 1, - sym_signature, - STATE(219), 2, - sym_parameter_list, - sym_type_parameter_list, - [124390] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(6503), 1, - anon_sym_DOLLARif, - STATE(2133), 2, - sym_compile_time_if_expression, - sym_block, - [124404] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6505), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4306), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6507), 1, - anon_sym_LPAREN, - STATE(2380), 1, - sym_signature, - STATE(1408), 2, - sym_parameter_list, - sym_type_parameter_list, - [124442] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3955), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124452] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6487), 1, - anon_sym_DOLLARif, - STATE(2349), 2, - sym_compile_time_if_expression, - sym_block, - [124466] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - ACTIONS(6509), 1, - anon_sym_if, - STATE(2351), 1, - sym_block, - STATE(2352), 1, - sym_if_expression, - [124482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4246), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124496] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4114), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124510] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6511), 1, - anon_sym_as, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym__enum_body, - STATE(4334), 1, - sym_enum_backed_type, - [124526] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6515), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124536] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6517), 1, - sym_identifier, - ACTIONS(6519), 1, - anon_sym_RBRACE, - STATE(3682), 1, - sym_enum_field_definition, - STATE(3759), 1, - aux_sym__enum_body_repeat1, - [124552] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - ACTIONS(6503), 1, - anon_sym_DOLLARif, - STATE(2061), 2, - sym_compile_time_if_expression, - sym_block, - [124566] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6523), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3738), 1, - aux_sym_global_var_declaration_repeat1, - [124582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6525), 1, - sym_identifier, - STATE(4037), 1, - sym_generic_parameter, - ACTIONS(6527), 2, - anon_sym_GT, - anon_sym_RBRACK, - [124596] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4365), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124610] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6529), 1, - anon_sym_LPAREN, - STATE(1220), 1, - sym_signature, - STATE(974), 2, - sym_parameter_list, - sym_type_parameter_list, - [124624] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4079), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124634] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6531), 1, - sym_identifier, - ACTIONS(6533), 1, - anon_sym_DOLLAR, - STATE(1753), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [124648] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4118), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124662] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4193), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124672] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4119), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124682] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4107), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124692] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6535), 1, - anon_sym_DOT, - ACTIONS(6537), 1, - anon_sym_RBRACE, - ACTIONS(6539), 1, - sym_int_literal, - ACTIONS(6541), 1, - aux_sym_format_specifier_token1, - [124708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6543), 1, - sym_identifier, - ACTIONS(6546), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3738), 1, - aux_sym_global_var_declaration_repeat1, - [124724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4393), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6548), 1, - anon_sym_COMMA, - STATE(3740), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6551), 2, - anon_sym_GT, - anon_sym_RBRACK, - [124752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6553), 1, - anon_sym_LPAREN, - STATE(1834), 1, - sym_signature, - STATE(1127), 2, - sym_parameter_list, - sym_type_parameter_list, - [124766] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6555), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6558), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [124780] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4380), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124794] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4350), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124808] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6560), 1, - anon_sym_LPAREN, - STATE(887), 1, - sym_signature, - STATE(64), 2, - sym_parameter_list, - sym_type_parameter_list, - [124822] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4317), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124836] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - ACTIONS(6562), 1, - anon_sym_if, - STATE(939), 1, - sym_block, - STATE(940), 1, - sym_if_expression, - [124852] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - ACTIONS(6564), 1, - anon_sym_DOLLARif, - STATE(932), 2, - sym_compile_time_if_expression, - sym_block, - [124866] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6566), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3822), 1, - aux_sym_const_declaration_repeat1, - [124882] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1459), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [124896] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4071), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [124906] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6511), 1, - anon_sym_as, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1536), 1, - sym__enum_body, - STATE(4328), 1, - sym_enum_backed_type, - [124922] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6568), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [124932] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4223), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [124946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - ACTIONS(6570), 1, - anon_sym_DOLLARif, - STATE(2716), 2, - sym_compile_time_if_expression, - sym_block, - [124960] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - ACTIONS(6572), 1, - anon_sym_DOLLARif, - STATE(2188), 2, - sym_compile_time_if_expression, - sym_block, - [124974] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6574), 1, - sym_identifier, - ACTIONS(6577), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, - aux_sym_const_declaration_repeat1, - [124990] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(2380), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [125004] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6579), 1, - sym_identifier, - ACTIONS(6582), 1, - anon_sym_RBRACE, - STATE(3682), 1, - sym_enum_field_definition, - STATE(3759), 1, - aux_sym__enum_body_repeat1, - [125020] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - ACTIONS(6584), 1, - anon_sym_if, - STATE(1021), 1, - sym_if_expression, - STATE(1082), 1, - sym_block, - [125036] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - ACTIONS(6572), 1, - anon_sym_DOLLARif, - STATE(2256), 2, - sym_compile_time_if_expression, - sym_block, - [125050] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACE, - ACTIONS(6586), 1, - anon_sym_if, - STATE(2904), 1, - sym_if_expression, - STATE(2905), 1, - sym_block, - [125066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLARif, - STATE(2928), 2, - sym_compile_time_if_expression, - sym_block, - [125080] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - ACTIONS(6590), 1, - anon_sym_if, - STATE(2167), 1, - sym_if_expression, - STATE(2285), 1, - sym_block, - [125096] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4051), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125106] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4047), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125116] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4035), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125126] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(4216), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6592), 1, - sym_identifier, - ACTIONS(6594), 1, - anon_sym_DOLLAR, - STATE(1874), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125150] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6596), 1, - sym_identifier, - ACTIONS(6598), 1, - anon_sym_DOLLAR, - STATE(849), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125164] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6602), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6600), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [125176] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACE, - ACTIONS(6588), 1, - anon_sym_DOLLARif, - STATE(2921), 2, - sym_compile_time_if_expression, - sym_block, - [125190] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6604), 1, - sym_identifier, - ACTIONS(6606), 1, - anon_sym_DOLLAR, - STATE(2115), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125204] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6610), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6608), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [125216] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - ACTIONS(6612), 1, - anon_sym_DOLLARif, - STATE(1031), 2, - sym_compile_time_if_expression, - sym_block, - [125230] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6616), 1, - aux_sym_c_string_literal_token1, - ACTIONS(6614), 3, - sym_escape_sequence, - sym___dolcbr, - sym___single_quote, - [125242] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - sym_identifier, - ACTIONS(6620), 1, - anon_sym_DOLLAR, - STATE(2252), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125256] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4096), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [125270] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(6622), 1, - anon_sym_DOLLARif, - STATE(2591), 2, - sym_compile_time_if_expression, - sym_block, - [125284] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1462), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [125298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6624), 1, - sym_identifier, - ACTIONS(6626), 1, - anon_sym_DOLLAR, - STATE(1374), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125312] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6628), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3738), 1, - aux_sym_global_var_declaration_repeat1, - [125328] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6566), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, - aux_sym_const_declaration_repeat1, - [125344] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4364), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [125358] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_DOLLARif, - STATE(1677), 2, - sym_compile_time_if_expression, - sym_block, - [125372] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - ACTIONS(6612), 1, - anon_sym_DOLLARif, - STATE(1049), 2, - sym_compile_time_if_expression, - sym_block, - [125386] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 1, - anon_sym_LPAREN, - STATE(3423), 1, - sym_signature, - STATE(2513), 2, - sym_parameter_list, - sym_type_parameter_list, - [125400] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6634), 1, - anon_sym_LPAREN, - STATE(1647), 1, - sym_signature, - STATE(1118), 2, - sym_parameter_list, - sym_type_parameter_list, - [125414] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6636), 1, - anon_sym_LPAREN, - STATE(2242), 1, - sym_signature, - STATE(1377), 2, - sym_parameter_list, - sym_type_parameter_list, - [125428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6638), 1, - sym_identifier, - ACTIONS(6640), 1, - anon_sym_DOLLAR, - STATE(2475), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125442] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(6622), 1, - anon_sym_DOLLARif, - STATE(2583), 2, - sym_compile_time_if_expression, - sym_block, - [125456] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - ACTIONS(6642), 1, - anon_sym_if, - STATE(2468), 1, - sym_block, - STATE(2580), 1, - sym_if_expression, - [125472] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6644), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [125482] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4207), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [125496] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6646), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [125506] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(1766), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6648), 1, - anon_sym_COMMA, - STATE(3740), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6650), 2, - anon_sym_GT, - anon_sym_RBRACK, - [125530] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4194), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [125544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1452), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [125558] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 1, - anon_sym_DOT, - ACTIONS(6652), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [125570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(6630), 1, - anon_sym_DOLLARif, - STATE(1678), 2, - sym_compile_time_if_expression, - sym_block, - [125584] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - ACTIONS(6654), 1, - anon_sym_if, - STATE(1693), 1, - sym_block, - STATE(1694), 1, - sym_if_expression, - [125600] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6656), 1, - anon_sym_EQ, - STATE(4431), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [125614] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6658), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3727), 1, - aux_sym_global_var_declaration_repeat1, - [125630] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(6660), 1, - anon_sym_DOLLARif, - STATE(1256), 2, - sym_compile_time_if_expression, - sym_block, - [125644] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6662), 1, - anon_sym_RPAREN, - STATE(3710), 1, - aux_sym_const_declaration_repeat1, - STATE(3753), 1, - sym_const_definition, - [125660] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6664), 1, - anon_sym_LPAREN, - STATE(2055), 1, - sym_signature, - STATE(1152), 2, - sym_parameter_list, - sym_type_parameter_list, - [125674] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6636), 1, - anon_sym_LPAREN, - STATE(2500), 1, - sym_signature, - STATE(1425), 2, - sym_parameter_list, - sym_type_parameter_list, - [125688] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(3935), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_RBRACE, - [125698] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - ACTIONS(6666), 1, - anon_sym_if, - STATE(2709), 1, - sym_if_expression, - STATE(2710), 1, - sym_block, - [125714] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 1, - sym_identifier, - ACTIONS(6670), 1, - anon_sym_DOLLAR, - STATE(2418), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125728] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6672), 4, - anon_sym_LF, - anon_sym_CR, - anon_sym_CR_LF, - anon_sym_SEMI, - [125738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1484), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [125752] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6674), 1, - anon_sym_LPAREN, - STATE(2748), 1, - sym_signature, - STATE(1582), 2, - sym_parameter_list, - sym_type_parameter_list, - [125766] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6517), 1, - sym_identifier, - ACTIONS(6676), 1, - anon_sym_RBRACE, - STATE(3682), 1, - sym_enum_field_definition, - STATE(3725), 1, - aux_sym__enum_body_repeat1, - [125782] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6511), 1, - anon_sym_as, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1569), 1, - sym__enum_body, - STATE(4253), 1, - sym_enum_backed_type, - [125798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - ACTIONS(6564), 1, - anon_sym_DOLLARif, - STATE(854), 2, - sym_compile_time_if_expression, - sym_block, - [125812] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6678), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, - aux_sym_const_declaration_repeat1, - [125828] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - ACTIONS(6570), 1, - anon_sym_DOLLARif, - STATE(2711), 2, - sym_compile_time_if_expression, - sym_block, - [125842] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1460), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [125856] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 1, - anon_sym_LPAREN, - STATE(1647), 1, - sym_signature, - STATE(2898), 2, - sym_parameter_list, - sym_type_parameter_list, - [125870] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6680), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3757), 1, - aux_sym_const_declaration_repeat1, - [125886] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1434), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [125900] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6521), 1, - sym_identifier, - ACTIONS(6682), 1, - anon_sym_RPAREN, - STATE(3724), 1, - sym_global_var_definition, - STATE(3782), 1, - aux_sym_global_var_declaration_repeat1, - [125916] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6684), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3783), 1, - aux_sym_const_declaration_repeat1, - [125932] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1429), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [125946] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6686), 1, - anon_sym_COMMA, - STATE(3797), 1, - aux_sym_generic_parameters_repeat1, - ACTIONS(6688), 2, - anon_sym_GT, - anon_sym_RBRACK, - [125960] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6610), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6608), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [125972] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6690), 1, - sym_identifier, - ACTIONS(6692), 1, - anon_sym_DOLLAR, - STATE(2780), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [125986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6694), 1, - anon_sym_LPAREN, - STATE(2003), 1, - sym_signature, - STATE(1149), 2, - sym_parameter_list, - sym_type_parameter_list, - [126000] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(6696), 1, - anon_sym_if, - STATE(1962), 1, - sym_if_expression, - STATE(1968), 1, - sym_block, - [126016] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(6479), 1, - anon_sym_DOLLARif, - STATE(1355), 2, - sym_compile_time_if_expression, - sym_block, - [126030] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5937), 1, - anon_sym_LPAREN, - STATE(1454), 1, - sym_signature, - STATE(1116), 2, - sym_parameter_list, - sym_type_parameter_list, - [126044] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(6698), 1, - anon_sym_DOLLARif, - STATE(1981), 2, - sym_compile_time_if_expression, - sym_block, - [126058] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6511), 1, - anon_sym_as, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1563), 1, - sym__enum_body, - STATE(4281), 1, - sym_enum_backed_type, - [126074] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4279), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [126088] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4134), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [126102] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5907), 1, - anon_sym_mut, - ACTIONS(5909), 1, - anon_sym_shared, - ACTIONS(6700), 1, - sym_identifier, - STATE(4704), 1, - sym_mutability_modifiers, - [126118] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - ACTIONS(6698), 1, - anon_sym_DOLLARif, - STATE(2026), 2, - sym_compile_time_if_expression, - sym_block, - [126132] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6702), 1, - anon_sym_EQ, - STATE(4706), 1, - sym_generic_parameters, - ACTIONS(4671), 2, - anon_sym_LBRACK, - anon_sym_LT2, - [126146] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - ACTIONS(6704), 1, - anon_sym_DOLLARif, - STATE(1866), 2, - sym_compile_time_if_expression, - sym_block, - [126160] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6602), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6600), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [126172] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - ACTIONS(6706), 1, - anon_sym_if, - STATE(1907), 1, - sym_if_expression, - STATE(1909), 1, - sym_block, - [126188] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6497), 1, - anon_sym_RPAREN, - STATE(3753), 1, - sym_const_definition, - STATE(3818), 1, - aux_sym_const_declaration_repeat1, - [126204] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6708), 1, - sym_identifier, - ACTIONS(6710), 1, - anon_sym_DOLLAR, - STATE(1231), 2, - sym_reference_expression, - sym_compile_time_selector_expression, - [126218] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - ACTIONS(6704), 1, - anon_sym_DOLLARif, - STATE(1799), 2, - sym_compile_time_if_expression, - sym_block, - [126232] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(6660), 1, - anon_sym_DOLLARif, - STATE(1263), 2, - sym_compile_time_if_expression, - sym_block, - [126246] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - ACTIONS(6712), 1, - anon_sym_if, - STATE(1264), 1, - sym_block, - STATE(1265), 1, - sym_if_expression, - [126262] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 1, - sym_identifier, - STATE(3468), 1, - sym_import_path, - STATE(3470), 1, - sym_import_name, - STATE(3812), 1, - sym_import_spec, - [126278] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_LPAREN, - STATE(4116), 1, - sym_signature, - STATE(2924), 2, - sym_parameter_list, - sym_type_parameter_list, - [126292] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6632), 1, - anon_sym_LPAREN, - STATE(3427), 1, - sym_signature, - STATE(2513), 2, - sym_parameter_list, - sym_type_parameter_list, - [126306] = 3, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6616), 1, - aux_sym_c_string_literal_token2, - ACTIONS(6614), 3, - sym_escape_sequence, - sym___dolcbr, - sym___double_quote, - [126318] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6525), 1, - sym_identifier, - STATE(4037), 1, - sym_generic_parameter, - ACTIONS(6650), 2, - anon_sym_GT, - anon_sym_RBRACK, - [126332] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6718), 1, - anon_sym_RPAREN, - STATE(4005), 1, - aux_sym_parameter_list_repeat1, - [126345] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6720), 1, - anon_sym_COMMA, - ACTIONS(6723), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [126358] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5443), 1, - anon_sym_RPAREN, - ACTIONS(6725), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [126371] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5243), 1, - anon_sym_LBRACE, - ACTIONS(6727), 1, - anon_sym_COMMA, - STATE(3857), 1, - aux_sym_match_expression_list_repeat1, - [126384] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6732), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [126397] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5437), 1, - anon_sym_RPAREN, - ACTIONS(6734), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [126410] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6736), 1, - anon_sym_RPAREN, - STATE(3874), 1, - aux_sym_parameter_list_repeat1, - [126423] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6740), 1, - anon_sym_RPAREN, - STATE(3875), 1, - aux_sym_type_parameter_list_repeat1, - [126436] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6732), 1, - sym___single_quote, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [126449] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5439), 1, - anon_sym_RPAREN, - ACTIONS(6744), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [126462] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6746), 1, - anon_sym_COMMA, - ACTIONS(6748), 1, - anon_sym_RPAREN, - STATE(3987), 1, - aux_sym_type_parameters_repeat1, - [126475] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6750), 1, - anon_sym_COMMA, - ACTIONS(6752), 1, - anon_sym_RPAREN, - STATE(3914), 1, - aux_sym_type_parameters_repeat1, - [126488] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6754), 1, - anon_sym_RPAREN, - STATE(3889), 1, - aux_sym_parameter_list_repeat1, - [126501] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2770), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_QMARK, - [126510] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6756), 1, - anon_sym_RPAREN, - STATE(4038), 1, - aux_sym_parameter_list_repeat1, - [126523] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6758), 1, - anon_sym_COMMA, - ACTIONS(6760), 1, - anon_sym_RPAREN, - STATE(3922), 1, - aux_sym_type_parameters_repeat1, - [126536] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6762), 1, - anon_sym_COMMA, - ACTIONS(6764), 1, - anon_sym_RPAREN, - STATE(3863), 1, - aux_sym_type_parameters_repeat1, - [126549] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6766), 1, - anon_sym_RBRACK, - STATE(3881), 1, - aux_sym_type_parameters_repeat1, - [126562] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6768), 1, - sym_identifier, - ACTIONS(6770), 1, - anon_sym_LPAREN, - STATE(1502), 1, - sym_const_definition, - [126575] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6772), 1, - anon_sym_RPAREN, - STATE(4059), 1, - aux_sym_type_parameter_list_repeat1, - [126588] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6774), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [126601] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6776), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [126614] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6778), 1, - anon_sym_RPAREN, - STATE(3891), 1, - aux_sym_type_parameter_list_repeat1, - [126627] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6780), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [126636] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_SEMI, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(3972), 1, - aux_sym_strictly_expression_list_repeat1, - [126649] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6782), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [126658] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6784), 1, - anon_sym_COMMA, - ACTIONS(6786), 1, - anon_sym_RBRACK, - STATE(3973), 1, - aux_sym_capture_list_repeat1, - [126671] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6788), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [126684] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(3863), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(6790), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [126695] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6792), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6794), 1, - sym___single_quote, - STATE(3862), 1, - aux_sym_raw_string_literal_repeat1, - [126708] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6796), 1, - sym_identifier, - ACTIONS(6798), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [126721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6800), 1, - anon_sym_COMMA, - ACTIONS(6803), 1, - anon_sym_in, - STATE(3885), 1, - aux_sym_var_definition_list_repeat1, - [126734] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6794), 1, - sym___double_quote, - ACTIONS(6805), 1, - aux_sym_raw_string_literal_token2, - STATE(3858), 1, - aux_sym_raw_string_literal_repeat2, - [126747] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6807), 1, - anon_sym_RBRACK, - STATE(3896), 1, - aux_sym_type_parameters_repeat1, - [126760] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6809), 1, - sym_identifier, - ACTIONS(6811), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym__content_block, - [126773] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6813), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [126786] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6815), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [126799] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6817), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [126812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6819), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [126821] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6821), 1, - sym_identifier, - ACTIONS(6823), 1, - anon_sym_LBRACE, - STATE(2179), 1, - sym__content_block, - [126834] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(3932), 1, - aux_sym_strictly_expression_list_repeat1, - [126847] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6815), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [126860] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6825), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [126873] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6827), 1, - anon_sym_COMMA, - ACTIONS(6829), 1, - anon_sym_RPAREN, - STATE(3859), 1, - aux_sym_type_parameters_repeat1, - [126886] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6831), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [126899] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6833), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6835), 1, - sym___double_quote, - STATE(3928), 1, - aux_sym_raw_string_literal_repeat2, - [126912] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6835), 1, - sym___single_quote, - ACTIONS(6837), 1, - aux_sym_raw_string_literal_token1, - STATE(3929), 1, - aux_sym_raw_string_literal_repeat1, - [126925] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6839), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [126938] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6841), 1, - anon_sym_COMMA, - ACTIONS(6843), 1, - anon_sym_RPAREN, - STATE(3940), 1, - aux_sym_type_parameters_repeat1, - [126951] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6845), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [126960] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6847), 1, - sym_identifier, - ACTIONS(6849), 1, - anon_sym_LBRACE, - STATE(1978), 1, - sym__content_block, - [126973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6851), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [126986] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6853), 1, - anon_sym_RBRACK, - STATE(3898), 1, - aux_sym_type_parameters_repeat1, - [126999] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6768), 1, - sym_identifier, - ACTIONS(6855), 1, - anon_sym_LPAREN, - STATE(1511), 1, - sym_const_definition, - [127012] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6857), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6859), 1, - sym___single_quote, - STATE(3912), 1, - aux_sym_raw_string_literal_repeat1, - [127025] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6861), 1, - sym_identifier, - ACTIONS(6863), 1, - anon_sym_LBRACE, - STATE(956), 1, - sym__content_block, - [127038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6454), 1, - anon_sym_COMMA, - ACTIONS(6456), 1, - anon_sym_RPAREN, - STATE(3856), 1, - aux_sym_type_parameters_repeat1, - [127051] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6865), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127064] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6865), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [127077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6867), 1, - anon_sym_SEMI, - ACTIONS(6869), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_attribute_repeat1, - [127090] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5469), 1, - anon_sym_RPAREN, - ACTIONS(6871), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127103] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6873), 1, - anon_sym_RPAREN, - STATE(3933), 1, - aux_sym_parameter_list_repeat1, - [127116] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6875), 1, - anon_sym_RPAREN, - STATE(3934), 1, - aux_sym_type_parameter_list_repeat1, - [127129] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6768), 1, - sym_identifier, - ACTIONS(6877), 1, - anon_sym_LPAREN, - STATE(1544), 1, - sym_const_definition, - [127142] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6879), 1, - anon_sym_RPAREN, - STATE(3901), 1, - aux_sym_type_parameter_list_repeat1, - [127155] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 1, - anon_sym_COMMA, - ACTIONS(6881), 1, - anon_sym_COLON_EQ, - STATE(3971), 1, - aux_sym_identifier_list_repeat1, - [127168] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6883), 1, - anon_sym_RPAREN, - STATE(3905), 1, - aux_sym_parameter_list_repeat1, - [127181] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6885), 1, - sym_identifier, - ACTIONS(6887), 1, - anon_sym_LBRACE, - STATE(1710), 1, - sym__content_block, - [127194] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5491), 1, - anon_sym_RPAREN, - ACTIONS(6889), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127207] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4548), 1, - anon_sym_COMMA, - ACTIONS(4550), 1, - anon_sym_COLON_EQ, - STATE(3919), 1, - aux_sym_identifier_list_repeat1, - [127220] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6891), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [127233] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6893), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6895), 1, - sym___single_quote, - STATE(3890), 1, - aux_sym_raw_string_literal_repeat1, - [127246] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6895), 1, - sym___double_quote, - ACTIONS(6897), 1, - aux_sym_raw_string_literal_token2, - STATE(3895), 1, - aux_sym_raw_string_literal_repeat2, - [127259] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6899), 1, - anon_sym_RBRACK, - STATE(3944), 1, - aux_sym_type_parameters_repeat1, - [127272] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6901), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127285] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6901), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [127298] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6903), 1, - sym_identifier, - ACTIONS(6905), 1, - anon_sym_LBRACE, - STATE(1894), 1, - sym__content_block, - [127311] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6891), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127324] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_LBRACE, - ACTIONS(6907), 1, - anon_sym_COMMA, - STATE(3932), 1, - aux_sym_strictly_expression_list_repeat1, - [127337] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6910), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [127350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6912), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [127363] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 1, - anon_sym_COLON_EQ, - ACTIONS(4785), 1, - anon_sym_COMMA, - STATE(4065), 1, - aux_sym_strictly_expression_list_repeat1, - [127376] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6438), 1, - sym_identifier, - ACTIONS(6440), 1, - anon_sym_mut, - STATE(4374), 1, - sym_var_definition, - [127389] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(6914), 1, - anon_sym_LBRACE, - STATE(3985), 1, - aux_sym_match_expression_list_repeat1, - [127402] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6916), 1, - anon_sym_COMMA, - ACTIONS(6918), 1, - anon_sym_in, - STATE(3885), 1, - aux_sym_var_definition_list_repeat1, - [127415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(3894), 1, - aux_sym_strictly_expression_list_repeat1, - [127428] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5467), 1, - anon_sym_RPAREN, - ACTIONS(6920), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127441] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6922), 1, - anon_sym_RPAREN, - STATE(3965), 1, - aux_sym_parameter_list_repeat1, - [127454] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6924), 1, - anon_sym_RPAREN, - STATE(3966), 1, - aux_sym_type_parameter_list_repeat1, - [127467] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6926), 1, - anon_sym_QMARK, - ACTIONS(5021), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [127478] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6928), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127491] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6930), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6932), 1, - sym___single_quote, - STATE(3924), 1, - aux_sym_raw_string_literal_repeat1, - [127504] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6934), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [127517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6936), 1, - anon_sym_COMMA, - ACTIONS(6938), 1, - anon_sym_RPAREN, - STATE(4042), 1, - aux_sym_type_parameters_repeat1, - [127530] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6934), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127543] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6932), 1, - sym___double_quote, - ACTIONS(6940), 1, - aux_sym_raw_string_literal_token2, - STATE(3931), 1, - aux_sym_raw_string_literal_repeat2, - [127556] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6535), 1, - anon_sym_DOT, - ACTIONS(6537), 1, - anon_sym_RBRACE, - ACTIONS(6541), 1, - aux_sym_format_specifier_token1, - [127569] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2824), 1, - sym_type_initializer_body, - ACTIONS(6942), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [127580] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6944), 1, - sym_identifier, - ACTIONS(6946), 1, - anon_sym_LBRACE, - STATE(1325), 1, - sym__content_block, - [127593] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5065), 1, - anon_sym_LBRACE, - ACTIONS(5067), 1, - anon_sym_COMMA, - STATE(3986), 1, - aux_sym_match_expression_list_repeat1, - [127606] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6948), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6951), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127619] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6953), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(6956), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [127632] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6958), 1, - sym_identifier, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(2540), 1, - sym__content_block, - [127645] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6962), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127658] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6964), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6966), 1, - sym___double_quote, - STATE(4025), 1, - aux_sym_raw_string_literal_repeat2, - [127671] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6968), 1, - anon_sym_RBRACK, - STATE(3976), 1, - aux_sym_type_parameters_repeat1, - [127684] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6970), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(6972), 1, - sym___double_quote, - STATE(3982), 1, - aux_sym_raw_string_literal_repeat2, - [127697] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6972), 1, - sym___single_quote, - ACTIONS(6974), 1, - aux_sym_raw_string_literal_token1, - STATE(3983), 1, - aux_sym_raw_string_literal_repeat1, - [127710] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6976), 1, - anon_sym_COMMA, - ACTIONS(6978), 1, - anon_sym_RPAREN, - STATE(4007), 1, - aux_sym_type_parameters_repeat1, - [127723] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6966), 1, - sym___single_quote, - ACTIONS(6980), 1, - aux_sym_raw_string_literal_token1, - STATE(4033), 1, - aux_sym_raw_string_literal_repeat1, - [127736] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6982), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127749] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(6984), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [127762] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6986), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [127775] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3652), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [127784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6444), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_COLON, - [127793] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3791), 1, - anon_sym_SEMI, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(4060), 1, - aux_sym_strictly_expression_list_repeat1, - [127806] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6988), 1, - anon_sym_COMMA, - ACTIONS(6990), 1, - anon_sym_RPAREN, - STATE(3999), 1, - aux_sym_type_parameters_repeat1, - [127819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6992), 1, - anon_sym_COMMA, - ACTIONS(6995), 1, - anon_sym_COLON_EQ, - STATE(3971), 1, - aux_sym_identifier_list_repeat1, - [127832] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3787), 1, - anon_sym_SEMI, - ACTIONS(4987), 1, - anon_sym_COMMA, - STATE(4060), 1, - aux_sym_strictly_expression_list_repeat1, - [127845] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5979), 1, - anon_sym_RBRACK, - ACTIONS(6997), 1, - anon_sym_COMMA, - STATE(4019), 1, - aux_sym_capture_list_repeat1, - [127858] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(6436), 1, - anon_sym_RBRACK, - STATE(4074), 1, - aux_sym_type_parameters_repeat1, - [127871] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(6999), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [127884] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7001), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [127897] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7003), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [127910] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6859), 1, - sym___double_quote, - ACTIONS(7005), 1, - aux_sym_raw_string_literal_token2, - STATE(3911), 1, - aux_sym_raw_string_literal_repeat2, - [127923] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7007), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7009), 1, - sym___double_quote, - STATE(3948), 1, - aux_sym_raw_string_literal_repeat2, - [127936] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7009), 1, - sym___single_quote, - ACTIONS(7011), 1, - aux_sym_raw_string_literal_token1, - STATE(3946), 1, - aux_sym_raw_string_literal_repeat1, - [127949] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7013), 1, - anon_sym_RBRACK, - STATE(3957), 1, - aux_sym_type_parameters_repeat1, - [127962] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7015), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [127975] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7015), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [127988] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6916), 1, - anon_sym_COMMA, - ACTIONS(7017), 1, - anon_sym_in, - STATE(3938), 1, - aux_sym_var_definition_list_repeat1, - [128001] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(7019), 1, - anon_sym_LBRACE, - STATE(3857), 1, - aux_sym_match_expression_list_repeat1, - [128014] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5067), 1, - anon_sym_COMMA, - ACTIONS(7021), 1, - anon_sym_LBRACE, - STATE(3857), 1, - aux_sym_match_expression_list_repeat1, - [128027] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5475), 1, - anon_sym_RPAREN, - ACTIONS(7023), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128040] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7025), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [128053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7027), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [128066] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7029), 1, - anon_sym_RBRACK, - STATE(3964), 1, - aux_sym_type_parameters_repeat1, - [128079] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7031), 1, - anon_sym_SEMI, - ACTIONS(7034), 1, - anon_sym_RBRACK, - STATE(3991), 1, - aux_sym_attribute_repeat1, - [128092] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7036), 1, - anon_sym_RPAREN, - STATE(4006), 1, - aux_sym_type_parameter_list_repeat1, - [128105] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7038), 1, - anon_sym_DOT, - ACTIONS(7040), 1, - anon_sym_RBRACE, - ACTIONS(7042), 1, - aux_sym_format_specifier_token1, - [128118] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7044), 1, - anon_sym_RPAREN, - STATE(3988), 1, - aux_sym_type_parameter_list_repeat1, - [128131] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7046), 1, - sym_identifier, - ACTIONS(7048), 1, - anon_sym_LBRACE, - STATE(2770), 1, - sym__content_block, - [128144] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7050), 1, - anon_sym_RPAREN, - STATE(3989), 1, - aux_sym_parameter_list_repeat1, - [128157] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7052), 1, - anon_sym_RBRACK, - STATE(4012), 1, - aux_sym_type_parameters_repeat1, - [128170] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6768), 1, - sym_identifier, - ACTIONS(7054), 1, - anon_sym_LPAREN, - STATE(1489), 1, - sym_const_definition, - [128183] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5455), 1, - anon_sym_RPAREN, - ACTIONS(7056), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128196] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7058), 1, - anon_sym_RPAREN, - STATE(3975), 1, - aux_sym_type_parameter_list_repeat1, - [128209] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7060), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7062), 1, - sym___double_quote, - STATE(4030), 1, - aux_sym_raw_string_literal_repeat2, - [128222] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7062), 1, - sym___single_quote, - ACTIONS(7064), 1, - aux_sym_raw_string_literal_token1, - STATE(4031), 1, - aux_sym_raw_string_literal_repeat1, - [128235] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7066), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [128248] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7068), 1, - anon_sym_RPAREN, - STATE(3977), 1, - aux_sym_parameter_list_repeat1, - [128261] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7070), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [128274] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7072), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [128287] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5473), 1, - anon_sym_RPAREN, - ACTIONS(7074), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128300] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3227), 1, - anon_sym_COLON_EQ, - ACTIONS(4785), 1, - anon_sym_COMMA, - STATE(3935), 1, - aux_sym_strictly_expression_list_repeat1, - [128313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2937), 1, - anon_sym_COMMA, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2727), 1, - sym_block, - [128326] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2824), 1, - sym_type_initializer_body, - ACTIONS(2933), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [128337] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7066), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128350] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7076), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7080), 1, - anon_sym_COLON, - ACTIONS(7078), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [128374] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7082), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [128387] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2917), 1, - anon_sym_COMMA, - ACTIONS(7084), 1, - anon_sym_LBRACE, - STATE(2824), 1, - sym_type_initializer_body, - [128400] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7082), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128413] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(2824), 1, - sym_type_initializer_body, - ACTIONS(2913), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [128424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7086), 1, - anon_sym_COMMA, - ACTIONS(7088), 1, - anon_sym_RPAREN, - STATE(4069), 1, - aux_sym_type_parameters_repeat1, - [128437] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7090), 1, - anon_sym_COMMA, - ACTIONS(7093), 1, - anon_sym_RBRACK, - STATE(4019), 1, - aux_sym_capture_list_repeat1, - [128450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6558), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [128459] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7095), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128472] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7097), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [128485] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7099), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [128498] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7101), 1, - sym_identifier, - ACTIONS(7103), 1, - anon_sym_LBRACE, - STATE(1185), 1, - sym__content_block, - [128511] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7105), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128524] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7107), 1, - anon_sym_RBRACK, - STATE(4021), 1, - aux_sym_type_parameters_repeat1, - [128537] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6867), 1, - anon_sym_SEMI, - ACTIONS(7109), 1, - anon_sym_RBRACK, - STATE(3913), 1, - aux_sym_attribute_repeat1, - [128550] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7111), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7113), 1, - sym___double_quote, - STATE(4055), 1, - aux_sym_raw_string_literal_repeat2, - [128563] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7115), 1, - anon_sym_RPAREN, - STATE(4022), 1, - aux_sym_type_parameter_list_repeat1, - [128576] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7117), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128589] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7117), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [128602] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7119), 1, - anon_sym_RPAREN, - STATE(4023), 1, - aux_sym_parameter_list_repeat1, - [128615] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7105), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [128628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5463), 1, - anon_sym_RPAREN, - ACTIONS(7121), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128641] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7113), 1, - sym___single_quote, - ACTIONS(7123), 1, - aux_sym_raw_string_literal_token1, - STATE(4058), 1, - aux_sym_raw_string_literal_repeat1, - [128654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7125), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [128663] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6551), 3, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_RBRACK, - [128672] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7127), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [128685] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7129), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128698] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7131), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7133), 1, - sym___single_quote, - STATE(4014), 1, - aux_sym_raw_string_literal_repeat1, - [128711] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7133), 1, - sym___double_quote, - ACTIONS(7135), 1, - aux_sym_raw_string_literal_token2, - STATE(4016), 1, - aux_sym_raw_string_literal_repeat2, - [128724] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5453), 1, - anon_sym_RPAREN, - ACTIONS(7137), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128737] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7139), 1, - anon_sym_RPAREN, - STATE(4067), 1, - aux_sym_parameter_list_repeat1, - [128750] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7141), 1, - anon_sym_RPAREN, - STATE(4068), 1, - aux_sym_type_parameter_list_repeat1, - [128763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7143), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [128772] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7145), 1, - anon_sym_COMMA, - ACTIONS(7147), 1, - anon_sym_RPAREN, - STATE(4048), 1, - aux_sym_type_parameters_repeat1, - [128785] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7149), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [128798] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5445), 1, - anon_sym_RPAREN, - ACTIONS(7151), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [128811] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7153), 1, - anon_sym_RPAREN, - STATE(4072), 1, - aux_sym_parameter_list_repeat1, - [128824] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7155), 1, - sym_identifier, - ACTIONS(7157), 1, - anon_sym_LBRACE, - STATE(2933), 1, - sym__content_block, - [128837] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7159), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [128850] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7161), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7163), 1, - sym___single_quote, - STATE(4003), 1, - aux_sym_raw_string_literal_repeat1, - [128863] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7165), 1, - anon_sym_RPAREN, - STATE(4073), 1, - aux_sym_type_parameter_list_repeat1, - [128876] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7163), 1, - sym___double_quote, - ACTIONS(7167), 1, - aux_sym_raw_string_literal_token2, - STATE(4011), 1, - aux_sym_raw_string_literal_repeat2, - [128889] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6730), 1, - aux_sym_raw_string_literal_token2, - ACTIONS(7169), 1, - sym___double_quote, - STATE(3954), 1, - aux_sym_raw_string_literal_repeat2, - [128902] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7171), 1, - anon_sym_RBRACK, - STATE(4039), 1, - aux_sym_type_parameters_repeat1, - [128915] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7173), 1, - sym_identifier, - ACTIONS(7175), 1, - anon_sym_LBRACE, - STATE(2377), 1, - sym__content_block, - [128928] = 4, - ACTIONS(487), 1, - sym_comment, - ACTIONS(6742), 1, - aux_sym_raw_string_literal_token1, - ACTIONS(7169), 1, - sym___single_quote, - STATE(3955), 1, - aux_sym_raw_string_literal_repeat1, - [128941] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7177), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [128954] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_SEMI, - ACTIONS(7179), 1, - anon_sym_COMMA, - STATE(4060), 1, - aux_sym_strictly_expression_list_repeat1, - [128967] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7182), 1, - anon_sym_RBRACK, - STATE(4078), 1, - aux_sym_type_parameters_repeat1, - [128980] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7184), 1, - anon_sym_RPAREN, - STATE(4047), 1, - aux_sym_type_parameter_list_repeat1, - [128993] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7186), 1, - anon_sym_COMMA, - ACTIONS(7188), 1, - anon_sym_RPAREN, - STATE(4034), 1, - aux_sym_type_parameters_repeat1, - [129006] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7190), 1, - anon_sym_RPAREN, - STATE(4051), 1, - aux_sym_parameter_list_repeat1, - [129019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3305), 1, - anon_sym_COLON_EQ, - ACTIONS(7192), 1, - anon_sym_COMMA, - STATE(4065), 1, - aux_sym_strictly_expression_list_repeat1, - [129032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7195), 1, - anon_sym_COMMA, - ACTIONS(7198), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [129045] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7200), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [129058] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7202), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [129071] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5431), 1, - anon_sym_RPAREN, - ACTIONS(7204), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129084] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7206), 1, - anon_sym_RBRACK, - STATE(4085), 1, - aux_sym_type_parameters_repeat1, - [129097] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7208), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129110] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7210), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [129123] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7212), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [129136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7214), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5449), 1, - anon_sym_RPAREN, - ACTIONS(7216), 1, - anon_sym_COMMA, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129162] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7218), 1, - anon_sym_RPAREN, - STATE(4083), 1, - aux_sym_parameter_list_repeat1, - [129175] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5289), 1, - anon_sym_COMMA, - ACTIONS(5682), 1, - anon_sym_LBRACE, - STATE(4086), 1, - aux_sym_expression_without_blocks_list_repeat1, - [129188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7220), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129201] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7222), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [129210] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7224), 1, - anon_sym_RPAREN, - STATE(4082), 1, - aux_sym_type_parameter_list_repeat1, - [129223] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 3, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LT2, - [129232] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6738), 1, - anon_sym_COMMA, - ACTIONS(7228), 1, - anon_sym_RPAREN, - STATE(3855), 1, - aux_sym_type_parameter_list_repeat1, - [129245] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6716), 1, - anon_sym_COMMA, - ACTIONS(7230), 1, - anon_sym_RPAREN, - STATE(4066), 1, - aux_sym_parameter_list_repeat1, - [129258] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5914), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT_DOT, - sym_identifier, - [129267] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7232), 1, - anon_sym_RBRACK, - STATE(3742), 1, - aux_sym_type_parameters_repeat1, - [129280] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4607), 1, - anon_sym_LBRACE, - ACTIONS(7234), 1, - anon_sym_COMMA, - STATE(4086), 1, - aux_sym_expression_without_blocks_list_repeat1, - [129293] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7237), 1, - sym_identifier, - ACTIONS(7239), 1, - anon_sym_LBRACE, - STATE(2142), 1, - sym__content_block, - [129306] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6434), 1, - anon_sym_COMMA, - ACTIONS(7241), 1, - anon_sym_RBRACK, - STATE(4071), 1, - aux_sym_type_parameters_repeat1, - [129319] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4314), 1, - sym_identifier, - ACTIONS(7243), 1, - anon_sym_static, - ACTIONS(7245), 1, - anon_sym_volatile, - [129332] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7247), 3, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_EQ, - [129341] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3791), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COMMA, - STATE(3932), 1, - aux_sym_strictly_expression_list_repeat1, - [129354] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7249), 1, - anon_sym_COMMA, - ACTIONS(7251), 1, - anon_sym_RPAREN, - STATE(4075), 1, - aux_sym_type_parameters_repeat1, - [129367] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7034), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [129375] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6798), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [129385] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(880), 1, - sym_block, - [129395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(918), 1, - sym_block, - [129405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4697), 1, - sym_identifier, - ACTIONS(7253), 1, - anon_sym_volatile, - [129415] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7255), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [129423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(2141), 1, - sym_block, - [129433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7084), 1, - anon_sym_LBRACE, - STATE(2824), 1, - sym_type_initializer_body, - [129443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1250), 1, - sym_block, - [129453] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7257), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129461] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7259), 1, - anon_sym_COMMA, - ACTIONS(7261), 1, - anon_sym_RPAREN, - [129471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7263), 1, - anon_sym_LBRACE, - STATE(2193), 1, - sym__struct_body, - [129481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4935), 1, - anon_sym_RBRACE, - STATE(3776), 1, - sym___rcbr, - [129491] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(1869), 1, - sym_block, - [129501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1252), 1, - sym_block, - [129511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2472), 1, - sym_block, - [129521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(1938), 1, - sym_block, - [129531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7265), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7239), 1, - anon_sym_LBRACE, - STATE(2034), 1, - sym__content_block, - [129549] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 1, - sym_identifier, - STATE(2347), 1, - sym_reference_expression, - [129559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7267), 1, - sym_identifier, - STATE(2277), 1, - sym_type_reference_expression, - [129569] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2800), 1, - sym_block, - [129579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1266), 1, - sym_block, - [129589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1696), 1, - sym_block, - [129599] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6723), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129607] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2825), 1, - sym_block, - [129617] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7269), 1, - anon_sym_COMMA, - ACTIONS(7271), 1, - anon_sym_RPAREN, - [129627] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_type_initializer_body, - [129637] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7273), 1, - anon_sym_LPAREN, - STATE(2350), 1, - sym_special_argument_list, - [129647] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7275), 1, - sym_identifier, - STATE(2064), 1, - sym_type_reference_expression, - [129657] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7277), 1, - anon_sym_LPAREN, - STATE(1239), 1, - sym_argument_list, - [129667] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1235), 1, - sym_block, - [129677] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7279), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129685] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2405), 1, - sym_block, - [129695] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6604), 1, - sym_identifier, - STATE(2041), 1, - sym_reference_expression, - [129705] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7281), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [129715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7198), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1737), 1, - sym_block, - [129733] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7283), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129741] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1764), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [129749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(2054), 1, - sym_special_argument_list, - [129759] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1747), 1, - sym_block, - [129769] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7103), 1, - anon_sym_LBRACE, - STATE(1227), 1, - sym__content_block, - [129779] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACE, - STATE(2932), 1, - sym_block, - [129789] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7287), 1, - anon_sym_COMMA, - ACTIONS(7289), 1, - anon_sym_RPAREN, - [129799] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(7291), 1, - anon_sym_RPAREN, - [129809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1166), 1, - sym_block, - [129819] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7293), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [129829] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_type_initializer_body, - [129839] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7297), 1, - sym_identifier, - STATE(1419), 1, - sym_type_reference_expression, - [129849] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2801), 1, - sym_block, - [129859] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(2161), 1, - sym_block, - [129869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1150), 1, - sym_block, - [129879] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7301), 1, - anon_sym_LBRACE, - STATE(890), 1, - sym__struct_body, - [129889] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7303), 1, - anon_sym_LBRACE, - STATE(2926), 1, - sym_type_initializer_body, - [129899] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(1202), 1, - sym_type_initializer_body, - [129909] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7305), 1, - sym_identifier, - STATE(1818), 1, - sym_type_reference_expression, - [129919] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2987), 1, - anon_sym_COMMA, - ACTIONS(7307), 1, - anon_sym_RPAREN, - [129929] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7309), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129937] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1202), 1, - sym_type_initializer_body, - [129947] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7313), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [129955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7315), 1, - anon_sym_LBRACE, - STATE(2132), 1, - sym__struct_body, - [129965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1202), 1, - sym_type_initializer_body, - [129975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7317), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_type_initializer_body, - [129985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1215), 1, - sym_block, - [129995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 1, - anon_sym_LPAREN, - STATE(2791), 1, - sym_argument_list, - [130005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7319), 1, - anon_sym_LBRACE, - STATE(2729), 1, - sym__struct_body, - [130015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6546), 2, - anon_sym_RPAREN, - sym_identifier, - [130023] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2299), 1, - sym_block, - [130033] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7093), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [130041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2423), 1, - sym_block, - [130051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - sym_identifier, - STATE(2760), 1, - sym_type_reference_expression, - [130061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7311), 1, - anon_sym_LBRACE, - STATE(1202), 1, - sym_type_initializer_body, - [130071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7323), 1, - anon_sym_LPAREN, - STATE(1742), 1, - sym_argument_list, - [130081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1746), 1, - sym_block, - [130091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2787), 1, - sym_block, - [130101] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(2092), 1, - sym_block, - [130111] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym_type_initializer_body, - [130121] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7325), 1, - anon_sym_LBRACE, - STATE(2562), 1, - sym__struct_body, - [130131] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym_type_initializer_body, - [130141] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7175), 1, - anon_sym_LBRACE, - STATE(2422), 1, - sym__content_block, - [130151] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym_type_initializer_body, - [130161] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4851), 1, - anon_sym_LBRACE, - STATE(1184), 1, - sym_block, - [130171] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7048), 1, - anon_sym_LBRACE, - STATE(2686), 1, - sym__content_block, - [130181] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACE, - STATE(2732), 1, - sym_block, - [130191] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2684), 1, - sym_block, - [130201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4867), 1, - anon_sym_LBRACE, - STATE(2922), 1, - sym_block, - [130211] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7157), 1, - anon_sym_LBRACE, - STATE(2918), 1, - sym__content_block, - [130221] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7329), 1, - anon_sym_LPAREN, - STATE(1182), 1, - sym_special_argument_list, - [130231] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6577), 2, - anon_sym_RPAREN, - sym_identifier, - [130239] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6582), 2, - anon_sym_RBRACE, - sym_identifier, - [130247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7331), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [130255] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6708), 1, - sym_identifier, - STATE(1179), 1, - sym_reference_expression, - [130265] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2611), 1, - sym_block, - [130275] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6887), 1, - anon_sym_LBRACE, - STATE(3765), 1, - sym__content_block, - [130285] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_type_initializer_body, - [130295] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(1878), 1, - sym__struct_body, - [130305] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7335), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [130315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(2123), 1, - sym_block, - [130325] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4476), 1, - anon_sym_LPAREN, - STATE(2128), 1, - sym_argument_list, - [130335] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(391), 1, - sym_block, - [130345] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2579), 1, - sym_block, - [130355] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7337), 1, - sym_identifier, - STATE(2497), 1, - sym_type_reference_expression, - [130365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7339), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [130373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(3751), 1, - sym_block, - [130383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2414), 1, - sym_block, - [130393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4677), 1, - anon_sym_LPAREN, - STATE(2333), 1, - sym_argument_list, - [130403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7341), 1, - sym_identifier, - STATE(3407), 1, - sym_type_reference_expression, - [130413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7327), 1, - anon_sym_LBRACE, - STATE(1994), 1, - sym_type_initializer_body, - [130423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(2135), 1, - sym_block, - [130433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(2136), 1, - sym_block, - [130443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(900), 1, - sym_block, - [130453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(3731), 1, - sym_block, - [130463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6887), 1, - anon_sym_LBRACE, - STATE(1757), 1, - sym__content_block, - [130473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2394), 1, - sym_block, - [130483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7343), 1, - anon_sym_COMMA, - ACTIONS(7345), 1, - anon_sym_RPAREN, - [130493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6863), 1, - anon_sym_LBRACE, - STATE(902), 1, - sym__content_block, - [130503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2392), 1, - sym_block, - [130513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7347), 1, - anon_sym_COMMA, - ACTIONS(7349), 1, - anon_sym_RPAREN, - [130523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2509), 1, - sym_block, - [130533] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4591), 2, - anon_sym_COMMA, - anon_sym_in, - [130541] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2508), 1, - sym_block, - [130551] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4871), 1, - anon_sym_LBRACE, - STATE(2772), 1, - sym_block, - [130561] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1758), 1, - sym_block, - [130571] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7351), 1, - anon_sym_LPAREN, - STATE(2682), 1, - sym_special_argument_list, - [130581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [130589] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7355), 1, - anon_sym_COMMA, - ACTIONS(7357), 1, - anon_sym_RPAREN, - [130599] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7317), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_type_initializer_body, - [130609] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7359), 1, - sym_identifier, - STATE(1104), 1, - sym_type_reference_expression, - [130619] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7361), 1, - anon_sym_LPAREN, - STATE(2568), 1, - sym_argument_list, - [130629] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(2356), 1, - sym_block, - [130639] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1630), 1, - sym_block, - [130649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(1717), 1, - sym_type_initializer_body, - [130659] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2266), 1, - sym_block, - [130669] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6690), 1, - sym_identifier, - STATE(2670), 1, - sym_reference_expression, - [130679] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - anon_sym_LBRACE, - STATE(1531), 1, - sym_block, - [130689] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6960), 1, - anon_sym_LBRACE, - STATE(2482), 1, - sym__content_block, - [130699] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6995), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - [130707] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - anon_sym_LBRACE, - STATE(1529), 1, - sym_block, - [130717] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2483), 1, - sym_block, - [130727] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7363), 1, - anon_sym_LBRACE, - STATE(1717), 1, - sym_type_initializer_body, - [130737] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7365), 1, - anon_sym_LBRACE, - STATE(1523), 1, - sym__content_block, - [130747] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2332), 1, - sym_block, - [130757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1432), 1, - sym__struct_body, - [130767] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(2518), 1, - sym_type_initializer_body, - [130777] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1717), 1, - sym_type_initializer_body, - [130787] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(2518), 1, - sym_type_initializer_body, - [130797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7369), 1, - sym_identifier, - STATE(3943), 1, - sym_reference_expression, - [130807] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7371), 1, - anon_sym_LBRACE, - STATE(1065), 1, - sym__struct_body, - [130817] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(2518), 1, - sym_type_initializer_body, - [130827] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2505), 1, - sym_block, - [130837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1689), 1, - sym_block, - [130847] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4865), 1, - anon_sym_LBRACE, - STATE(2025), 1, - sym_block, - [130857] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2284), 1, - sym_block, - [130867] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3659), 2, - anon_sym_SEMI, - anon_sym_RBRACK, - [130875] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7367), 1, - anon_sym_LBRACE, - STATE(2518), 1, - sym_type_initializer_body, - [130885] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7363), 1, - anon_sym_LBRACE, - STATE(1717), 1, - sym_type_initializer_body, - [130895] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6525), 1, - sym_identifier, - STATE(3827), 1, - sym_generic_parameter, - [130905] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1496), 1, - sym__interface_body, - [130915] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6624), 1, - sym_identifier, - STATE(1305), 1, - sym_reference_expression, - [130925] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1534), 1, - sym__enum_body, - [130935] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4847), 1, - anon_sym_LBRACE, - STATE(2541), 1, - sym_block, - [130945] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7373), 1, - anon_sym_LPAREN, - STATE(1318), 1, - sym_special_argument_list, - [130955] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1070), 1, - sym_block, - [130965] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7375), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [130975] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7377), 1, - sym_identifier, - STATE(1558), 1, - sym_label_reference, - [130985] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(2164), 1, - sym_block, - [130995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7379), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7381), 1, - anon_sym_LPAREN, - STATE(2548), 1, - sym_special_argument_list, - [131015] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1579), 1, - sym__struct_body, - [131025] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7383), 1, - anon_sym_COMMA, - ACTIONS(7385), 1, - anon_sym_RPAREN, - [131035] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6638), 1, - sym_identifier, - STATE(2566), 1, - sym_reference_expression, - [131045] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6592), 1, - sym_identifier, - STATE(1824), 1, - sym_reference_expression, - [131055] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1504), 1, - sym__interface_body, - [131065] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4424), 1, - anon_sym_LBRACE, - STATE(1554), 1, - sym_block, - [131075] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7387), 1, - sym_identifier, - STATE(3698), 1, - sym_label_reference, - [131085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_LBRACE, - STATE(2320), 1, - sym_type_initializer_body, - [131095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1353), 1, - sym_block, - [131105] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_type_initializer_body, - [131115] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1798), 1, - sym_block, - [131125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2265), 1, - sym_block, - [131135] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7389), 1, - anon_sym_LBRACE, - STATE(1663), 1, - sym__struct_body, - [131145] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7295), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_type_initializer_body, - [131155] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(1346), 1, - sym_type_initializer_body, - [131165] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1284), 1, - sym_block, - [131175] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1369), 1, - sym_block, - [131185] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(1951), 1, - sym_block, - [131195] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7391), 1, - anon_sym_LPAREN, - STATE(1871), 1, - sym_special_argument_list, - [131205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1505), 1, - sym__enum_body, - [131215] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7393), 1, - sym_identifier, - STATE(1932), 1, - sym_type_reference_expression, - [131225] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7395), 1, - anon_sym_LPAREN, - STATE(2262), 1, - sym_argument_list, - [131235] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7397), 2, - anon_sym_COMMA, - anon_sym_in, - [131243] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1514), 1, - sym__struct_body, - [131253] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6946), 1, - anon_sym_LBRACE, - STATE(1371), 1, - sym__content_block, - [131263] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(870), 1, - sym_block, - [131273] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1889), 1, - sym_block, - [131283] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2259), 1, - sym_block, - [131293] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7399), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131303] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7401), 1, - anon_sym_LPAREN, - STATE(879), 1, - sym_argument_list, - [131313] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(3696), 1, - sym_block, - [131323] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7403), 1, - sym_identifier, - STATE(2354), 1, - sym_type_reference_expression, - [131333] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1382), 1, - sym_block, - [131343] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3598), 1, - anon_sym_LPAREN, - STATE(1387), 1, - sym_argument_list, - [131353] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7405), 1, - sym_identifier, - STATE(947), 1, - sym_type_reference_expression, - [131363] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7407), 1, - anon_sym_LBRACE, - STATE(1817), 1, - sym_type_initializer_body, - [131373] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7409), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131383] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6823), 1, - anon_sym_LBRACE, - STATE(2224), 1, - sym__content_block, - [131393] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(2152), 1, - sym_block, - [131403] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7411), 1, - anon_sym_COMMA, - ACTIONS(7413), 1, - anon_sym_RPAREN, - [131413] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4877), 1, - anon_sym_LBRACE, - STATE(4696), 1, - sym_block, - [131423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2221), 1, - sym_block, - [131433] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7415), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(2002), 1, - sym_block, - [131453] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(2004), 1, - sym_block, - [131463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2148), 1, - sym_block, - [131473] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1823), 1, - sym_block, - [131483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_type_initializer_body, - [131493] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7417), 1, - sym_identifier, - STATE(1333), 1, - sym_type_reference_expression, - [131503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4613), 1, - anon_sym_COLON, - ACTIONS(7419), 1, - anon_sym_mut, - [131513] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1817), 1, - sym_type_initializer_body, - [131523] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4428), 1, - anon_sym_LPAREN, - STATE(2021), 1, - sym_argument_list, - [131533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(2048), 1, - sym_block, - [131543] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7421), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_type_initializer_body, - [131553] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7423), 1, - anon_sym_LBRACE, - STATE(1180), 1, - sym__struct_body, - [131563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1349), 1, - sym_block, - [131573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7425), 1, - anon_sym_COMMA, - ACTIONS(7427), 1, - anon_sym_RPAREN, - [131583] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6849), 1, - anon_sym_LBRACE, - STATE(1937), 1, - sym__content_block, - [131593] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(2084), 1, - sym_block, - [131603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(1850), 1, - sym_block, - [131613] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(1929), 1, - sym_type_initializer_body, - [131623] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7429), 1, - anon_sym_LBRACE, - STATE(1929), 1, - sym_type_initializer_body, - [131633] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7431), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym__struct_body, - [131643] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7433), 1, - anon_sym_LBRACE, - STATE(2131), 1, - sym__struct_body, - [131653] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1524), 1, - sym__interface_body, - [131663] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1929), 1, - sym_type_initializer_body, - [131673] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1501), 1, - sym__enum_body, - [131683] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(1930), 1, - sym_block, - [131693] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1319), 1, - sym_block, - [131703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1497), 1, - sym__struct_body, - [131713] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6442), 1, - anon_sym_LBRACE, - STATE(1574), 1, - sym__struct_body, - [131723] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7429), 1, - anon_sym_LBRACE, - STATE(1929), 1, - sym_type_initializer_body, - [131733] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6513), 1, - anon_sym_LBRACE, - STATE(1576), 1, - sym__enum_body, - [131743] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7407), 1, - anon_sym_LBRACE, - STATE(1817), 1, - sym_type_initializer_body, - [131753] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6525), 1, - sym_identifier, - STATE(4037), 1, - sym_generic_parameter, - [131763] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7435), 1, - anon_sym_RBRACE, - ACTIONS(7437), 1, - aux_sym_format_specifier_token1, - [131773] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_type_initializer_body, - [131783] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2205), 1, - sym_block, - [131793] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(1817), 1, - sym_type_initializer_body, - [131803] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(916), 1, - sym_block, - [131813] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1324), 1, - sym_block, - [131823] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_LBRACE, - STATE(1578), 1, - sym__interface_body, - [131833] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7439), 1, - anon_sym_LPAREN, - STATE(1992), 1, - sym_special_argument_list, - [131843] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7441), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [131851] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1727), 1, - sym_block, - [131861] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6489), 1, - sym_identifier, - STATE(2091), 1, - sym_reference_expression, - [131871] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7443), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131881] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7445), 1, - anon_sym_LPAREN, - STATE(913), 1, - sym_special_argument_list, - [131891] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(1366), 1, - sym_block, - [131901] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 1, - sym_identifier, - STATE(3670), 1, - sym_import_name, - [131911] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6531), 1, - sym_identifier, - STATE(3559), 1, - sym_reference_expression, - [131921] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7421), 1, - anon_sym_LBRACE, - STATE(2200), 1, - sym_type_initializer_body, - [131931] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7447), 1, - anon_sym_COMMA, - ACTIONS(7449), 1, - anon_sym_RPAREN, - [131941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7451), 1, - anon_sym_RBRACE, - ACTIONS(7453), 1, - aux_sym_format_specifier_token1, - [131951] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1897), 1, - sym_block, - [131961] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6905), 1, - anon_sym_LBRACE, - STATE(1882), 1, - sym__content_block, - [131971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4468), 1, - anon_sym_LBRACE, - STATE(1711), 1, - sym_block, - [131981] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [131991] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6483), 1, - sym_identifier, - STATE(1078), 1, - sym_reference_expression, - [132001] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7457), 1, - anon_sym_LPAREN, - STATE(1073), 1, - sym_special_argument_list, - [132011] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6714), 1, - sym_identifier, - STATE(3533), 1, - sym_import_name, - [132021] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(905), 1, - sym_block, - [132031] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4817), 1, - anon_sym_LBRACE, - STATE(904), 1, - sym_block, - [132041] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1022), 1, - sym_block, - [132051] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4875), 1, - anon_sym_LBRACE, - STATE(2244), 1, - sym_block, - [132061] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7459), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [132071] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4843), 1, - anon_sym_LBRACE, - STATE(2105), 1, - sym_block, - [132081] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7461), 1, - anon_sym_LPAREN, - STATE(1740), 1, - sym_special_argument_list, - [132091] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6668), 1, - sym_identifier, - STATE(4098), 1, - sym_reference_expression, - [132101] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7463), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [132109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7465), 1, - anon_sym_LPAREN, - STATE(2181), 1, - sym_special_argument_list, - [132119] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7467), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [132129] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6803), 2, - anon_sym_COMMA, - anon_sym_in, - [132137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6618), 1, - sym_identifier, - STATE(2194), 1, - sym_reference_expression, - [132147] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6531), 1, - sym_identifier, - STATE(1708), 1, - sym_reference_expression, - [132157] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7469), 1, - anon_sym_COMMA, - ACTIONS(7471), 1, - anon_sym_RPAREN, - [132167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4931), 1, - anon_sym_RBRACE, - STATE(3852), 1, - sym___rcbr, - [132177] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1006), 1, - sym_block, - [132187] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1007), 1, - sym_block, - [132197] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7473), 1, - anon_sym_LBRACE, - STATE(2393), 1, - sym__struct_body, - [132207] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6790), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [132215] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4045), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [132223] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1822), 1, - sym_block, - [132233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4033), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - [132241] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6596), 1, - sym_identifier, - STATE(875), 1, - sym_reference_expression, - [132251] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7475), 1, - anon_sym_COMMA, - ACTIONS(7477), 1, - anon_sym_RPAREN, - [132261] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7479), 1, - sym_identifier, - STATE(1728), 1, - sym_type_reference_expression, - [132271] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7481), 1, - anon_sym_LPAREN, - STATE(1013), 1, - sym_argument_list, - [132281] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1019), 1, - sym_block, - [132291] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5243), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [132299] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1847), 1, - sym_block, - [132309] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_LBRACE, - STATE(1853), 1, - sym_block, - [132319] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6811), 1, - anon_sym_LBRACE, - STATE(1036), 1, - sym__content_block, - [132329] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7483), 2, - anon_sym_LBRACE, - anon_sym_COMMA, - [132337] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1037), 1, - sym_block, - [132347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7485), 1, - sym_identifier, - STATE(1241), 1, - sym_type_reference_expression, - [132357] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(986), 1, - sym_block, - [132367] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7487), 1, - anon_sym_LPAREN, - STATE(1856), 1, - sym_argument_list, - [132377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2913), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym_type_initializer_body, - [132387] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5295), 2, - anon_sym_COMMA, - anon_sym_COLON_EQ, - [132395] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7489), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym_type_initializer_body, - [132405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7491), 1, - anon_sym_LBRACE, - STATE(3428), 1, - sym__struct_body, - [132415] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2933), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym_type_initializer_body, - [132425] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_block, - [132435] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7040), 1, - anon_sym_RBRACE, - ACTIONS(7042), 1, - aux_sym_format_specifier_token1, - [132445] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7489), 1, - anon_sym_LBRACE, - STATE(1048), 1, - sym_type_initializer_body, - [132455] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(885), 1, - anon_sym_RBRACE, - [132462] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7493), 1, - anon_sym_DOT, - [132469] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6786), 1, - anon_sym_RBRACK, - [132476] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7495), 1, - anon_sym_RBRACE, - [132483] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(929), 1, - anon_sym_RBRACE, - [132490] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7497), 1, - anon_sym_RBRACE, - [132497] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5233), 1, - anon_sym_LBRACE, - [132504] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7499), 1, - anon_sym_LBRACE, - [132511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7501), 1, - anon_sym_DOT, - [132518] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7503), 1, - aux_sym__content_block_token1, - [132525] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7505), 1, - anon_sym_LBRACE, - [132532] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4316), 1, - sym_identifier, - [132539] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5245), 1, - anon_sym_LBRACE, - [132546] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7507), 1, - anon_sym_LBRACE, - [132553] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7509), 1, - aux_sym__content_block_token1, - [132560] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7511), 1, - anon_sym_DOT, - [132567] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7513), 1, - sym_int_literal, - [132574] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7515), 1, - anon_sym_RBRACE, - [132581] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5235), 1, - anon_sym_LBRACE, - [132588] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7517), 1, - anon_sym_LBRACE, - [132595] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7519), 1, - aux_sym__content_block_token1, - [132602] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7040), 1, - anon_sym_RBRACE, - [132609] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7521), 1, - anon_sym_RBRACK, - [132616] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7523), 1, - anon_sym_EQ, - [132623] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7525), 1, - anon_sym_COLON, - [132630] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7527), 1, - anon_sym_RBRACE, - [132637] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7529), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [132644] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7531), 1, - anon_sym_RBRACK, - [132651] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7533), 1, - anon_sym_RBRACE, - [132658] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7535), 1, - anon_sym_RBRACE, - [132665] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7291), 1, - anon_sym_RPAREN, - [132672] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7537), 1, - anon_sym_RBRACE, - [132679] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7451), 1, - anon_sym_RBRACE, - [132686] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7539), 1, - anon_sym_RBRACE, - [132693] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(895), 1, - anon_sym_RBRACE, - [132700] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4613), 1, - anon_sym_COLON, - [132707] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7541), 1, - anon_sym_DOT, - [132714] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7543), 1, - aux_sym__content_block_token1, - [132721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7545), 1, - anon_sym_LBRACE, - [132728] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_LBRACE, - [132735] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7547), 1, - anon_sym_LBRACE, - [132742] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7549), 1, - aux_sym__content_block_token1, - [132749] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5215), 1, - anon_sym_LBRACE, - [132756] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7551), 1, - anon_sym_RBRACE, - [132763] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7553), 1, - sym_int_literal, - [132770] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(893), 1, - anon_sym_RBRACE, - [132777] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7555), 1, - anon_sym_RBRACE, - [132784] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7557), 1, - anon_sym_RBRACE, - [132791] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7559), 1, - anon_sym_RBRACE, - [132798] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7561), 1, - sym_identifier, - [132805] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7563), 1, - sym_identifier, - [132812] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7565), 1, - sym_identifier, - [132819] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7567), 1, - anon_sym_DOT, - [132826] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7569), 1, - sym_identifier, - [132833] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7571), 1, - anon_sym_RBRACE, - [132840] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7573), 1, - anon_sym_RBRACE, - [132847] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7575), 1, - anon_sym_RBRACE, - [132854] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7577), 1, - anon_sym_DOT, - [132861] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7579), 1, - anon_sym_RBRACK, - [132868] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7581), 1, - anon_sym_RBRACE, - [132875] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5211), 1, - anon_sym_LBRACE, - [132882] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7583), 1, - anon_sym_LBRACE, - [132889] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7585), 1, - aux_sym__content_block_token1, - [132896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7435), 1, - anon_sym_RBRACE, - [132903] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7587), 1, - anon_sym_RBRACE, - [132910] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(913), 1, - anon_sym_RBRACE, - [132917] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7589), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [132924] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7591), 1, - sym_identifier, - [132931] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7593), 1, - sym_identifier, - [132938] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7595), 1, - sym_identifier, - [132945] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7597), 1, - anon_sym_RBRACE, - [132952] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7599), 1, - anon_sym_RBRACE, - [132959] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7601), 1, - sym_identifier, - [132966] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7603), 1, - anon_sym_RBRACE, - [132973] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7605), 1, - anon_sym_RBRACE, - [132980] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7607), 1, - anon_sym_LBRACE, - [132987] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7609), 1, - anon_sym_RBRACE, - [132994] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7611), 1, - anon_sym_RBRACK, - [133001] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7613), 1, - anon_sym_DOT, - [133008] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7615), 1, - anon_sym_RBRACE, - [133015] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7617), 1, - anon_sym_RBRACE, - [133022] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5209), 1, - anon_sym_LBRACE, - [133029] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7619), 1, - anon_sym_LBRACE, - [133036] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7621), 1, - aux_sym__content_block_token1, - [133043] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5693), 1, - anon_sym_LBRACE, - [133050] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(891), 1, - anon_sym_RBRACE, - [133057] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7623), 1, - anon_sym_COLON_EQ, - [133064] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(923), 1, - anon_sym_RBRACE, - [133071] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7307), 1, - anon_sym_RPAREN, - [133078] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7625), 1, - anon_sym_RBRACE, - [133085] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7627), 1, - anon_sym_RBRACK, - [133092] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7629), 1, - anon_sym_RBRACE, - [133099] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7631), 1, - anon_sym_RBRACK, - [133106] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7633), 1, - anon_sym_RBRACE, - [133113] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7635), 1, - anon_sym_COLON, - [133120] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7637), 1, - anon_sym_RBRACE, - [133127] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7639), 1, - aux_sym__content_block_token1, - [133134] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7641), 1, - anon_sym_LBRACE, - [133141] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7643), 1, - anon_sym_RBRACE, - [133148] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7645), 1, - anon_sym_DOT, - [133155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5163), 1, - anon_sym_LBRACE, - [133162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7647), 1, - anon_sym_RBRACE, - [133169] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5185), 1, - anon_sym_LBRACE, - [133176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7649), 1, - anon_sym_LBRACE, - [133183] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7651), 1, - aux_sym__content_block_token1, - [133190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(935), 1, - anon_sym_RBRACE, - [133197] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7653), 1, - anon_sym_RBRACE, - [133204] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7655), 1, - anon_sym_DOT, - [133211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_RBRACE, - [133218] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7659), 1, - anon_sym_RBRACE, - [133225] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7661), 1, - anon_sym_EQ, - [133232] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7663), 1, - sym_identifier, - [133239] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7665), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133246] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6537), 1, - anon_sym_RBRACE, - [133253] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7667), 1, - sym_int_literal, - [133260] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7669), 1, - anon_sym_LPAREN, - [133267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7671), 1, - anon_sym_LBRACE, - [133274] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7673), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133281] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7675), 1, - anon_sym_RBRACE, - [133288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7677), 1, - anon_sym_RBRACE, - [133295] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7679), 1, - anon_sym_DOT, - [133302] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7681), 1, - anon_sym_RBRACE, - [133309] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(861), 1, - anon_sym_RBRACE, - [133316] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5165), 1, - anon_sym_LBRACE, - [133323] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7683), 1, - anon_sym_LBRACE, - [133330] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7685), 1, - aux_sym__content_block_token1, - [133337] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7687), 1, - anon_sym_LBRACE, - [133344] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7689), 1, - anon_sym_RBRACK, - [133351] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7691), 1, - anon_sym_RBRACE, - [133358] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7693), 1, - anon_sym_RBRACE, - [133365] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7695), 1, - anon_sym_LBRACE, - [133372] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7697), 1, - anon_sym_RBRACE, - [133379] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7699), 1, - anon_sym_RBRACE, - [133386] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7701), 1, - anon_sym_SEMI, - [133393] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7703), 1, - anon_sym_DOT, - [133400] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7705), 1, - anon_sym_RBRACK, - [133407] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7707), 1, - anon_sym_RBRACE, - [133414] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7709), 1, - sym_identifier, - [133421] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7711), 1, - anon_sym_RBRACE, - [133428] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7713), 1, - anon_sym_RBRACE, - [133435] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7715), 1, - anon_sym_in, - [133442] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7717), 1, - anon_sym_DOT, - [133449] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7719), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133456] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7721), 1, - anon_sym_RBRACE, - [133463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5157), 1, - anon_sym_LBRACE, - [133470] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7723), 1, - anon_sym_LBRACE, - [133477] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7725), 1, - aux_sym__content_block_token1, - [133484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7727), 1, - anon_sym_RBRACE, - [133491] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7729), 1, - sym_identifier, - [133498] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7731), 1, - anon_sym_RBRACK, - [133505] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7733), 1, - anon_sym_RBRACE, - [133512] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(883), 1, - anon_sym_RBRACE, - [133519] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7735), 1, - anon_sym_DOT, - [133526] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7737), 1, - anon_sym_RBRACE, - [133533] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7739), 1, - anon_sym_RBRACK, - [133540] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7741), 1, - anon_sym_RBRACE, - [133547] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7743), 1, - anon_sym_RBRACE, - [133554] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7745), 1, - anon_sym_RBRACE, - [133561] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7747), 1, - anon_sym_DOT, - [133568] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7749), 1, - anon_sym_RBRACK, - [133575] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5155), 1, - anon_sym_LBRACE, - [133582] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7751), 1, - anon_sym_LBRACE, - [133589] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7753), 1, - aux_sym__content_block_token1, - [133596] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(933), 1, - anon_sym_RBRACE, - [133603] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7755), 1, - aux_sym__content_block_token1, - [133610] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7757), 1, - anon_sym_RBRACE, - [133617] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7759), 1, - anon_sym_DOT, - [133624] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7761), 1, - aux_sym__content_block_token1, - [133631] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7763), 1, - anon_sym_RBRACK, - [133638] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7765), 1, - anon_sym_RBRACE, - [133645] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7767), 1, - anon_sym_LBRACE, - [133652] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7769), 1, - anon_sym_RBRACE, - [133659] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7771), 1, - sym_identifier, - [133666] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5147), 1, - anon_sym_LBRACE, - [133673] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7773), 1, - sym_identifier, - [133680] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7775), 1, - sym_identifier, - [133687] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7777), 1, - anon_sym_RBRACE, - [133694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5750), 1, - anon_sym_COLON_EQ, - [133701] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7779), 1, - anon_sym_RBRACK, - [133708] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7781), 1, - anon_sym_RBRACE, - [133715] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7783), 1, - anon_sym_RBRACE, - [133722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(879), 1, - anon_sym_RBRACE, - [133729] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7785), 1, - anon_sym_RBRACE, - [133736] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7787), 1, - anon_sym_LPAREN, - [133743] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7789), 1, - anon_sym_RBRACE, - [133750] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7791), 1, - anon_sym_RBRACK, - [133757] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(469), 1, - anon_sym_RBRACE, - [133764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7793), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [133771] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7795), 1, - anon_sym_RBRACE, - [133778] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7797), 1, - anon_sym_RBRACK, - [133785] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7799), 1, - anon_sym_RBRACE, - [133792] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7801), 1, - anon_sym_RBRACE, - [133799] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7803), 1, - anon_sym_DOT, - [133806] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7805), 1, - anon_sym_RBRACE, - [133813] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7807), 1, - anon_sym_RBRACE, - [133820] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(867), 1, - anon_sym_RBRACE, - [133827] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7809), 1, - anon_sym_RBRACE, - [133834] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7811), 1, - anon_sym_RBRACE, - [133841] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7813), 1, - anon_sym_RBRACE, - [133848] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7815), 1, - anon_sym_RBRACE, - [133855] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7817), 1, - anon_sym_RBRACK, - [133862] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7819), 1, - sym_identifier, - [133869] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7821), 1, - anon_sym_RBRACE, - [133876] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(887), 1, - anon_sym_RBRACE, - [133883] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7823), 1, - anon_sym_RBRACE, - [133890] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7825), 1, - anon_sym_DOT, - [133897] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7827), 1, - anon_sym_RBRACE, - [133904] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7829), 1, - anon_sym_RBRACK, - [133911] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7831), 1, - anon_sym_RBRACE, - [133918] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7833), 1, - anon_sym_RBRACE, - [133925] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7835), 1, - anon_sym_RBRACE, - [133932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7837), 1, - anon_sym_RBRACE, - [133939] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7839), 1, - anon_sym_RBRACE, - [133946] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4699), 1, - sym_identifier, - [133953] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7841), 1, - anon_sym_RBRACE, - [133960] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7843), 1, - anon_sym_RBRACK, - [133967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7845), 1, - anon_sym_COLON, - [133974] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7847), 1, - anon_sym_RBRACE, - [133981] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7849), 1, - anon_sym_DOT, - [133988] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(907), 1, - anon_sym_RBRACE, - [133995] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7851), 1, - anon_sym_RBRACE, - [134002] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7853), 1, - anon_sym_RBRACE, - [134009] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7855), 1, - anon_sym_RBRACE, - [134016] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7857), 1, - anon_sym_RBRACE, - [134023] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7859), 1, - anon_sym_RBRACE, - [134030] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7861), 1, - anon_sym_RBRACE, - [134037] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(863), 1, - anon_sym_RBRACE, - [134044] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7863), 1, - anon_sym_RBRACE, - [134051] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7865), 1, - anon_sym_RBRACE, - [134058] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7867), 1, - anon_sym_RBRACE, - [134065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7869), 1, - anon_sym_EQ, - [134072] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7871), 1, - anon_sym_RBRACE, - [134079] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7873), 1, - anon_sym_RBRACE, - [134086] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7875), 1, - anon_sym_RBRACK, - [134093] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7877), 1, - anon_sym_RBRACE, - [134100] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(871), 1, - anon_sym_RBRACE, - [134107] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7879), 1, - anon_sym_RBRACE, - [134114] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7881), 1, - anon_sym_RBRACE, - [134121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7883), 1, - anon_sym_RBRACE, - [134128] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7885), 1, - anon_sym_RBRACE, - [134135] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7887), 1, - anon_sym_RBRACE, - [134142] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7889), 1, - anon_sym_RBRACK, - [134149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7891), 1, - sym_identifier, - [134156] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7893), 1, - anon_sym_RBRACE, - [134163] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(931), 1, - anon_sym_RBRACE, - [134170] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7895), 1, - anon_sym_PIPE, - [134177] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7897), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134184] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7899), 1, - anon_sym_RBRACE, - [134191] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7901), 1, - anon_sym_RBRACE, - [134198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7903), 1, - anon_sym_RBRACE, - [134205] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7905), 1, - anon_sym_RBRACE, - [134212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7907), 1, - anon_sym_LBRACE, - [134219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7909), 1, - anon_sym_RBRACK, - [134226] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7911), 1, - anon_sym_RBRACK, - [134233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7913), 1, - anon_sym_RBRACE, - [134240] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7915), 1, - anon_sym_RBRACK, - [134247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7917), 1, - anon_sym_RBRACE, - [134254] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7919), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134261] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7921), 1, - anon_sym_RBRACE, - [134268] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(865), 1, - anon_sym_RBRACE, - [134275] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7923), 1, - anon_sym_DOT, - [134282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7925), 1, - anon_sym_RBRACE, - [134289] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4725), 1, - sym_identifier, - [134296] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7927), 1, - ts_builtin_sym_end, - [134303] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7929), 1, - anon_sym_RBRACK, - [134310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7931), 1, - anon_sym_RBRACE, - [134317] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7933), 1, - anon_sym_RBRACE, - [134324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7935), 1, - anon_sym_RBRACE, - [134331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(919), 1, - anon_sym_RBRACE, - [134338] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(901), 1, - anon_sym_RBRACE, - [134345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7937), 1, - anon_sym_RBRACE, - [134352] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7939), 1, - anon_sym_RBRACE, - [134359] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7941), 1, - anon_sym_RBRACE, - [134366] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(873), 1, - anon_sym_RBRACE, - [134373] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7943), 1, - anon_sym_RBRACE, - [134380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7945), 1, - anon_sym_RBRACE, - [134387] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7947), 1, - anon_sym_LPAREN, - [134394] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7949), 1, - sym_identifier, - [134401] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7951), 1, - aux_sym_hash_statement_token1, - [134408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7953), 1, - anon_sym_RBRACK, - [134415] = 2, - ACTIONS(487), 1, - sym_comment, - ACTIONS(7955), 1, - aux_sym_hash_statement_token1, - [134422] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7957), 1, - anon_sym_LPAREN, - [134429] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7959), 1, - anon_sym_RBRACE, - [134436] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7961), 1, - anon_sym_RBRACE, - [134443] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(875), 1, - anon_sym_RBRACE, - [134450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7963), 1, - anon_sym_LPAREN, - [134457] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7965), 1, - anon_sym_RBRACE, - [134464] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7967), 1, - anon_sym_RBRACE, - [134471] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7969), 1, - anon_sym_RBRACE, - [134478] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7971), 1, - anon_sym_LPAREN, - [134485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7973), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134492] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7975), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134499] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7977), 1, - anon_sym_RBRACK, - [134506] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7979), 1, - anon_sym_LPAREN, - [134513] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7981), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134520] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7983), 1, - anon_sym_RBRACE, - [134527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7985), 1, - sym_identifier, - [134534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7987), 1, - anon_sym_LPAREN, - [134541] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7989), 1, - anon_sym_EQ, - [134548] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7991), 1, - anon_sym_LBRACE, - [134555] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7993), 1, - anon_sym_RBRACE, - [134562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7995), 1, - anon_sym_LPAREN, - [134569] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7997), 1, - anon_sym_RBRACE, - [134576] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7999), 1, - anon_sym_RBRACK, - [134583] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8001), 1, - sym_identifier, - [134590] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8003), 1, - anon_sym_LPAREN, - [134597] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8005), 1, - sym_identifier, - [134604] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8007), 1, - aux_sym_pseudo_compile_time_identifier_token1, - [134611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(921), 1, - anon_sym_RBRACE, - [134618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8009), 1, - anon_sym_LPAREN, - [134625] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6796), 1, - sym_identifier, - [134632] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8011), 1, - anon_sym_RBRACE, - [134639] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8013), 1, - anon_sym_LBRACE, - [134646] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8015), 1, - anon_sym_LPAREN, - [134653] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8017), 1, - anon_sym_LBRACE, - [134660] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8019), 1, - anon_sym_RBRACE, - [134667] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8021), 1, - sym_identifier, - [134674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(911), 1, - anon_sym_RBRACE, - [134681] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8023), 1, - anon_sym_RBRACE, - [134688] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8025), 1, - anon_sym_RBRACE, - [134695] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8027), 1, - anon_sym_RBRACE, - [134702] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8029), 1, - anon_sym_RBRACE, - [134709] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8031), 1, - anon_sym_RBRACK, - [134716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8033), 1, - anon_sym_RBRACE, - [134723] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8035), 1, - anon_sym_RBRACE, - [134730] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(903), 1, - anon_sym_RBRACE, - [134737] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8037), 1, - anon_sym_RBRACE, -}; - -static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1598)] = 0, - [SMALL_STATE(1599)] = 71, - [SMALL_STATE(1600)] = 142, - [SMALL_STATE(1601)] = 213, - [SMALL_STATE(1602)] = 284, - [SMALL_STATE(1603)] = 355, - [SMALL_STATE(1604)] = 424, - [SMALL_STATE(1605)] = 493, - [SMALL_STATE(1606)] = 616, - [SMALL_STATE(1607)] = 685, - [SMALL_STATE(1608)] = 754, - [SMALL_STATE(1609)] = 823, - [SMALL_STATE(1610)] = 892, - [SMALL_STATE(1611)] = 961, - [SMALL_STATE(1612)] = 1030, - [SMALL_STATE(1613)] = 1099, - [SMALL_STATE(1614)] = 1168, - [SMALL_STATE(1615)] = 1278, - [SMALL_STATE(1616)] = 1372, - [SMALL_STATE(1617)] = 1468, - [SMALL_STATE(1618)] = 1578, - [SMALL_STATE(1619)] = 1666, - [SMALL_STATE(1620)] = 1754, - [SMALL_STATE(1621)] = 1840, - [SMALL_STATE(1622)] = 1926, - [SMALL_STATE(1623)] = 2010, - [SMALL_STATE(1624)] = 2130, - [SMALL_STATE(1625)] = 2214, - [SMALL_STATE(1626)] = 2302, - [SMALL_STATE(1627)] = 2386, - [SMALL_STATE(1628)] = 2453, - [SMALL_STATE(1629)] = 2566, - [SMALL_STATE(1630)] = 2633, - [SMALL_STATE(1631)] = 2704, - [SMALL_STATE(1632)] = 2775, - [SMALL_STATE(1633)] = 2841, - [SMALL_STATE(1634)] = 2907, - [SMALL_STATE(1635)] = 2973, - [SMALL_STATE(1636)] = 3039, - [SMALL_STATE(1637)] = 3105, - [SMALL_STATE(1638)] = 3171, - [SMALL_STATE(1639)] = 3253, - [SMALL_STATE(1640)] = 3319, - [SMALL_STATE(1641)] = 3427, - [SMALL_STATE(1642)] = 3493, - [SMALL_STATE(1643)] = 3561, - [SMALL_STATE(1644)] = 3627, - [SMALL_STATE(1645)] = 3693, - [SMALL_STATE(1646)] = 3777, - [SMALL_STATE(1647)] = 3845, - [SMALL_STATE(1648)] = 3911, - [SMALL_STATE(1649)] = 3997, - [SMALL_STATE(1650)] = 4089, - [SMALL_STATE(1651)] = 4183, - [SMALL_STATE(1652)] = 4269, - [SMALL_STATE(1653)] = 4355, - [SMALL_STATE(1654)] = 4421, - [SMALL_STATE(1655)] = 4487, - [SMALL_STATE(1656)] = 4553, - [SMALL_STATE(1657)] = 4619, - [SMALL_STATE(1658)] = 4685, - [SMALL_STATE(1659)] = 4751, - [SMALL_STATE(1660)] = 4817, - [SMALL_STATE(1661)] = 4883, - [SMALL_STATE(1662)] = 4949, - [SMALL_STATE(1663)] = 5073, - [SMALL_STATE(1664)] = 5139, - [SMALL_STATE(1665)] = 5207, - [SMALL_STATE(1666)] = 5273, - [SMALL_STATE(1667)] = 5341, - [SMALL_STATE(1668)] = 5409, - [SMALL_STATE(1669)] = 5477, - [SMALL_STATE(1670)] = 5545, - [SMALL_STATE(1671)] = 5669, - [SMALL_STATE(1672)] = 5751, - [SMALL_STATE(1673)] = 5859, - [SMALL_STATE(1674)] = 5967, - [SMALL_STATE(1675)] = 6049, - [SMALL_STATE(1676)] = 6119, - [SMALL_STATE(1677)] = 6184, - [SMALL_STATE(1678)] = 6249, - [SMALL_STATE(1679)] = 6314, - [SMALL_STATE(1680)] = 6379, - [SMALL_STATE(1681)] = 6444, - [SMALL_STATE(1682)] = 6509, - [SMALL_STATE(1683)] = 6574, - [SMALL_STATE(1684)] = 6639, - [SMALL_STATE(1685)] = 6704, - [SMALL_STATE(1686)] = 6769, - [SMALL_STATE(1687)] = 6834, - [SMALL_STATE(1688)] = 6899, - [SMALL_STATE(1689)] = 6964, - [SMALL_STATE(1690)] = 7029, - [SMALL_STATE(1691)] = 7094, - [SMALL_STATE(1692)] = 7161, - [SMALL_STATE(1693)] = 7226, - [SMALL_STATE(1694)] = 7291, - [SMALL_STATE(1695)] = 7356, - [SMALL_STATE(1696)] = 7421, - [SMALL_STATE(1697)] = 7486, - [SMALL_STATE(1698)] = 7551, - [SMALL_STATE(1699)] = 7616, - [SMALL_STATE(1700)] = 7683, - [SMALL_STATE(1701)] = 7750, - [SMALL_STATE(1702)] = 7815, - [SMALL_STATE(1703)] = 7880, - [SMALL_STATE(1704)] = 7947, - [SMALL_STATE(1705)] = 8012, - [SMALL_STATE(1706)] = 8077, - [SMALL_STATE(1707)] = 8142, - [SMALL_STATE(1708)] = 8207, - [SMALL_STATE(1709)] = 8272, - [SMALL_STATE(1710)] = 8337, - [SMALL_STATE(1711)] = 8402, - [SMALL_STATE(1712)] = 8467, - [SMALL_STATE(1713)] = 8532, - [SMALL_STATE(1714)] = 8597, - [SMALL_STATE(1715)] = 8662, - [SMALL_STATE(1716)] = 8727, - [SMALL_STATE(1717)] = 8792, - [SMALL_STATE(1718)] = 8857, - [SMALL_STATE(1719)] = 8922, - [SMALL_STATE(1720)] = 8987, - [SMALL_STATE(1721)] = 9052, - [SMALL_STATE(1722)] = 9117, - [SMALL_STATE(1723)] = 9182, - [SMALL_STATE(1724)] = 9249, - [SMALL_STATE(1725)] = 9314, - [SMALL_STATE(1726)] = 9383, - [SMALL_STATE(1727)] = 9448, - [SMALL_STATE(1728)] = 9517, - [SMALL_STATE(1729)] = 9582, - [SMALL_STATE(1730)] = 9647, - [SMALL_STATE(1731)] = 9712, - [SMALL_STATE(1732)] = 9777, - [SMALL_STATE(1733)] = 9842, - [SMALL_STATE(1734)] = 9907, - [SMALL_STATE(1735)] = 9974, - [SMALL_STATE(1736)] = 10039, - [SMALL_STATE(1737)] = 10104, - [SMALL_STATE(1738)] = 10169, - [SMALL_STATE(1739)] = 10234, - [SMALL_STATE(1740)] = 10299, - [SMALL_STATE(1741)] = 10364, - [SMALL_STATE(1742)] = 10429, - [SMALL_STATE(1743)] = 10494, - [SMALL_STATE(1744)] = 10559, - [SMALL_STATE(1745)] = 10624, - [SMALL_STATE(1746)] = 10689, - [SMALL_STATE(1747)] = 10754, - [SMALL_STATE(1748)] = 10819, - [SMALL_STATE(1749)] = 10886, - [SMALL_STATE(1750)] = 10953, - [SMALL_STATE(1751)] = 11018, - [SMALL_STATE(1752)] = 11083, - [SMALL_STATE(1753)] = 11148, - [SMALL_STATE(1754)] = 11213, - [SMALL_STATE(1755)] = 11278, - [SMALL_STATE(1756)] = 11343, - [SMALL_STATE(1757)] = 11408, - [SMALL_STATE(1758)] = 11473, - [SMALL_STATE(1759)] = 11538, - [SMALL_STATE(1760)] = 11603, - [SMALL_STATE(1761)] = 11670, - [SMALL_STATE(1762)] = 11734, - [SMALL_STATE(1763)] = 11818, - [SMALL_STATE(1764)] = 11934, - [SMALL_STATE(1765)] = 12018, - [SMALL_STATE(1766)] = 12106, - [SMALL_STATE(1767)] = 12202, - [SMALL_STATE(1768)] = 12286, - [SMALL_STATE(1769)] = 12384, - [SMALL_STATE(1770)] = 12496, - [SMALL_STATE(1771)] = 12608, - [SMALL_STATE(1772)] = 12692, - [SMALL_STATE(1773)] = 12758, - [SMALL_STATE(1774)] = 12846, - [SMALL_STATE(1775)] = 12934, - [SMALL_STATE(1776)] = 13000, - [SMALL_STATE(1777)] = 13066, - [SMALL_STATE(1778)] = 13182, - [SMALL_STATE(1779)] = 13266, - [SMALL_STATE(1780)] = 13378, - [SMALL_STATE(1781)] = 13490, - [SMALL_STATE(1782)] = 13574, - [SMALL_STATE(1783)] = 13638, - [SMALL_STATE(1784)] = 13704, - [SMALL_STATE(1785)] = 13768, - [SMALL_STATE(1786)] = 13864, - [SMALL_STATE(1787)] = 13950, - [SMALL_STATE(1788)] = 14016, - [SMALL_STATE(1789)] = 14102, - [SMALL_STATE(1790)] = 14220, - [SMALL_STATE(1791)] = 14318, - [SMALL_STATE(1792)] = 14382, - [SMALL_STATE(1793)] = 14446, - [SMALL_STATE(1794)] = 14512, - [SMALL_STATE(1795)] = 14600, - [SMALL_STATE(1796)] = 14688, - [SMALL_STATE(1797)] = 14776, - [SMALL_STATE(1798)] = 14839, - [SMALL_STATE(1799)] = 14902, - [SMALL_STATE(1800)] = 14965, - [SMALL_STATE(1801)] = 15028, - [SMALL_STATE(1802)] = 15091, - [SMALL_STATE(1803)] = 15154, - [SMALL_STATE(1804)] = 15217, - [SMALL_STATE(1805)] = 15280, - [SMALL_STATE(1806)] = 15343, - [SMALL_STATE(1807)] = 15406, - [SMALL_STATE(1808)] = 15469, - [SMALL_STATE(1809)] = 15532, - [SMALL_STATE(1810)] = 15595, - [SMALL_STATE(1811)] = 15706, - [SMALL_STATE(1812)] = 15817, - [SMALL_STATE(1813)] = 15880, - [SMALL_STATE(1814)] = 15943, - [SMALL_STATE(1815)] = 16006, - [SMALL_STATE(1816)] = 16069, - [SMALL_STATE(1817)] = 16154, - [SMALL_STATE(1818)] = 16217, - [SMALL_STATE(1819)] = 16280, - [SMALL_STATE(1820)] = 16343, - [SMALL_STATE(1821)] = 16454, - [SMALL_STATE(1822)] = 16519, - [SMALL_STATE(1823)] = 16582, - [SMALL_STATE(1824)] = 16645, - [SMALL_STATE(1825)] = 16708, - [SMALL_STATE(1826)] = 16773, - [SMALL_STATE(1827)] = 16836, - [SMALL_STATE(1828)] = 16901, - [SMALL_STATE(1829)] = 16964, - [SMALL_STATE(1830)] = 17027, - [SMALL_STATE(1831)] = 17090, - [SMALL_STATE(1832)] = 17153, - [SMALL_STATE(1833)] = 17216, - [SMALL_STATE(1834)] = 17279, - [SMALL_STATE(1835)] = 17342, - [SMALL_STATE(1836)] = 17405, - [SMALL_STATE(1837)] = 17468, - [SMALL_STATE(1838)] = 17531, - [SMALL_STATE(1839)] = 17594, - [SMALL_STATE(1840)] = 17657, - [SMALL_STATE(1841)] = 17720, - [SMALL_STATE(1842)] = 17783, - [SMALL_STATE(1843)] = 17846, - [SMALL_STATE(1844)] = 17909, - [SMALL_STATE(1845)] = 17972, - [SMALL_STATE(1846)] = 18035, - [SMALL_STATE(1847)] = 18098, - [SMALL_STATE(1848)] = 18161, - [SMALL_STATE(1849)] = 18224, - [SMALL_STATE(1850)] = 18287, - [SMALL_STATE(1851)] = 18354, - [SMALL_STATE(1852)] = 18421, - [SMALL_STATE(1853)] = 18484, - [SMALL_STATE(1854)] = 18547, - [SMALL_STATE(1855)] = 18610, - [SMALL_STATE(1856)] = 18673, - [SMALL_STATE(1857)] = 18736, - [SMALL_STATE(1858)] = 18799, - [SMALL_STATE(1859)] = 18862, - [SMALL_STATE(1860)] = 18925, - [SMALL_STATE(1861)] = 18988, - [SMALL_STATE(1862)] = 19051, - [SMALL_STATE(1863)] = 19114, - [SMALL_STATE(1864)] = 19177, - [SMALL_STATE(1865)] = 19240, - [SMALL_STATE(1866)] = 19303, - [SMALL_STATE(1867)] = 19366, - [SMALL_STATE(1868)] = 19429, - [SMALL_STATE(1869)] = 19492, - [SMALL_STATE(1870)] = 19559, - [SMALL_STATE(1871)] = 19622, - [SMALL_STATE(1872)] = 19685, - [SMALL_STATE(1873)] = 19748, - [SMALL_STATE(1874)] = 19811, - [SMALL_STATE(1875)] = 19874, - [SMALL_STATE(1876)] = 19937, - [SMALL_STATE(1877)] = 20000, - [SMALL_STATE(1878)] = 20063, - [SMALL_STATE(1879)] = 20126, - [SMALL_STATE(1880)] = 20189, - [SMALL_STATE(1881)] = 20252, - [SMALL_STATE(1882)] = 20315, - [SMALL_STATE(1883)] = 20378, - [SMALL_STATE(1884)] = 20441, - [SMALL_STATE(1885)] = 20504, - [SMALL_STATE(1886)] = 20567, - [SMALL_STATE(1887)] = 20630, - [SMALL_STATE(1888)] = 20741, - [SMALL_STATE(1889)] = 20806, - [SMALL_STATE(1890)] = 20869, - [SMALL_STATE(1891)] = 20932, - [SMALL_STATE(1892)] = 21019, - [SMALL_STATE(1893)] = 21082, - [SMALL_STATE(1894)] = 21145, - [SMALL_STATE(1895)] = 21208, - [SMALL_STATE(1896)] = 21271, - [SMALL_STATE(1897)] = 21334, - [SMALL_STATE(1898)] = 21397, - [SMALL_STATE(1899)] = 21460, - [SMALL_STATE(1900)] = 21555, - [SMALL_STATE(1901)] = 21652, - [SMALL_STATE(1902)] = 21715, - [SMALL_STATE(1903)] = 21778, - [SMALL_STATE(1904)] = 21865, - [SMALL_STATE(1905)] = 21928, - [SMALL_STATE(1906)] = 21991, - [SMALL_STATE(1907)] = 22078, - [SMALL_STATE(1908)] = 22141, - [SMALL_STATE(1909)] = 22208, - [SMALL_STATE(1910)] = 22271, - [SMALL_STATE(1911)] = 22336, - [SMALL_STATE(1912)] = 22399, - [SMALL_STATE(1913)] = 22470, - [SMALL_STATE(1914)] = 22533, - [SMALL_STATE(1915)] = 22596, - [SMALL_STATE(1916)] = 22659, - [SMALL_STATE(1917)] = 22723, - [SMALL_STATE(1918)] = 22833, - [SMALL_STATE(1919)] = 22943, - [SMALL_STATE(1920)] = 23007, - [SMALL_STATE(1921)] = 23071, - [SMALL_STATE(1922)] = 23181, - [SMALL_STATE(1923)] = 23251, - [SMALL_STATE(1924)] = 23315, - [SMALL_STATE(1925)] = 23379, - [SMALL_STATE(1926)] = 23443, - [SMALL_STATE(1927)] = 23553, - [SMALL_STATE(1928)] = 23614, - [SMALL_STATE(1929)] = 23675, - [SMALL_STATE(1930)] = 23736, - [SMALL_STATE(1931)] = 23797, - [SMALL_STATE(1932)] = 23858, - [SMALL_STATE(1933)] = 23919, - [SMALL_STATE(1934)] = 23980, - [SMALL_STATE(1935)] = 24041, - [SMALL_STATE(1936)] = 24102, - [SMALL_STATE(1937)] = 24163, - [SMALL_STATE(1938)] = 24224, - [SMALL_STATE(1939)] = 24285, - [SMALL_STATE(1940)] = 24346, - [SMALL_STATE(1941)] = 24407, - [SMALL_STATE(1942)] = 24468, - [SMALL_STATE(1943)] = 24529, - [SMALL_STATE(1944)] = 24590, - [SMALL_STATE(1945)] = 24651, - [SMALL_STATE(1946)] = 24712, - [SMALL_STATE(1947)] = 24773, - [SMALL_STATE(1948)] = 24834, - [SMALL_STATE(1949)] = 24895, - [SMALL_STATE(1950)] = 24956, - [SMALL_STATE(1951)] = 25017, - [SMALL_STATE(1952)] = 25078, - [SMALL_STATE(1953)] = 25139, - [SMALL_STATE(1954)] = 25200, - [SMALL_STATE(1955)] = 25261, - [SMALL_STATE(1956)] = 25324, - [SMALL_STATE(1957)] = 25385, - [SMALL_STATE(1958)] = 25446, - [SMALL_STATE(1959)] = 25507, - [SMALL_STATE(1960)] = 25568, - [SMALL_STATE(1961)] = 25629, - [SMALL_STATE(1962)] = 25690, - [SMALL_STATE(1963)] = 25751, - [SMALL_STATE(1964)] = 25812, - [SMALL_STATE(1965)] = 25873, - [SMALL_STATE(1966)] = 25934, - [SMALL_STATE(1967)] = 25995, - [SMALL_STATE(1968)] = 26056, - [SMALL_STATE(1969)] = 26117, - [SMALL_STATE(1970)] = 26178, - [SMALL_STATE(1971)] = 26239, - [SMALL_STATE(1972)] = 26300, - [SMALL_STATE(1973)] = 26361, - [SMALL_STATE(1974)] = 26422, - [SMALL_STATE(1975)] = 26483, - [SMALL_STATE(1976)] = 26544, - [SMALL_STATE(1977)] = 26605, - [SMALL_STATE(1978)] = 26666, - [SMALL_STATE(1979)] = 26727, - [SMALL_STATE(1980)] = 26788, - [SMALL_STATE(1981)] = 26849, - [SMALL_STATE(1982)] = 26910, - [SMALL_STATE(1983)] = 26971, - [SMALL_STATE(1984)] = 27032, - [SMALL_STATE(1985)] = 27093, - [SMALL_STATE(1986)] = 27154, - [SMALL_STATE(1987)] = 27215, - [SMALL_STATE(1988)] = 27276, - [SMALL_STATE(1989)] = 27337, - [SMALL_STATE(1990)] = 27398, - [SMALL_STATE(1991)] = 27459, - [SMALL_STATE(1992)] = 27520, - [SMALL_STATE(1993)] = 27581, - [SMALL_STATE(1994)] = 27642, - [SMALL_STATE(1995)] = 27703, - [SMALL_STATE(1996)] = 27764, - [SMALL_STATE(1997)] = 27825, - [SMALL_STATE(1998)] = 27886, - [SMALL_STATE(1999)] = 27947, - [SMALL_STATE(2000)] = 28008, - [SMALL_STATE(2001)] = 28069, - [SMALL_STATE(2002)] = 28130, - [SMALL_STATE(2003)] = 28191, - [SMALL_STATE(2004)] = 28252, - [SMALL_STATE(2005)] = 28313, - [SMALL_STATE(2006)] = 28374, - [SMALL_STATE(2007)] = 28435, - [SMALL_STATE(2008)] = 28500, - [SMALL_STATE(2009)] = 28563, - [SMALL_STATE(2010)] = 28626, - [SMALL_STATE(2011)] = 28691, - [SMALL_STATE(2012)] = 28752, - [SMALL_STATE(2013)] = 28813, - [SMALL_STATE(2014)] = 28874, - [SMALL_STATE(2015)] = 28935, - [SMALL_STATE(2016)] = 28996, - [SMALL_STATE(2017)] = 29057, - [SMALL_STATE(2018)] = 29118, - [SMALL_STATE(2019)] = 29179, - [SMALL_STATE(2020)] = 29240, - [SMALL_STATE(2021)] = 29301, - [SMALL_STATE(2022)] = 29362, - [SMALL_STATE(2023)] = 29423, - [SMALL_STATE(2024)] = 29484, - [SMALL_STATE(2025)] = 29545, - [SMALL_STATE(2026)] = 29606, - [SMALL_STATE(2027)] = 29667, - [SMALL_STATE(2028)] = 29728, - [SMALL_STATE(2029)] = 29789, - [SMALL_STATE(2030)] = 29850, - [SMALL_STATE(2031)] = 29911, - [SMALL_STATE(2032)] = 29972, - [SMALL_STATE(2033)] = 30033, - [SMALL_STATE(2034)] = 30094, - [SMALL_STATE(2035)] = 30155, - [SMALL_STATE(2036)] = 30216, - [SMALL_STATE(2037)] = 30279, - [SMALL_STATE(2038)] = 30340, - [SMALL_STATE(2039)] = 30401, - [SMALL_STATE(2040)] = 30462, - [SMALL_STATE(2041)] = 30523, - [SMALL_STATE(2042)] = 30584, - [SMALL_STATE(2043)] = 30645, - [SMALL_STATE(2044)] = 30706, - [SMALL_STATE(2045)] = 30767, - [SMALL_STATE(2046)] = 30828, - [SMALL_STATE(2047)] = 30889, - [SMALL_STATE(2048)] = 30950, - [SMALL_STATE(2049)] = 31011, - [SMALL_STATE(2050)] = 31072, - [SMALL_STATE(2051)] = 31133, - [SMALL_STATE(2052)] = 31194, - [SMALL_STATE(2053)] = 31255, - [SMALL_STATE(2054)] = 31316, - [SMALL_STATE(2055)] = 31377, - [SMALL_STATE(2056)] = 31438, - [SMALL_STATE(2057)] = 31503, - [SMALL_STATE(2058)] = 31564, - [SMALL_STATE(2059)] = 31625, - [SMALL_STATE(2060)] = 31686, - [SMALL_STATE(2061)] = 31751, - [SMALL_STATE(2062)] = 31812, - [SMALL_STATE(2063)] = 31873, - [SMALL_STATE(2064)] = 31934, - [SMALL_STATE(2065)] = 31995, - [SMALL_STATE(2066)] = 32056, - [SMALL_STATE(2067)] = 32117, - [SMALL_STATE(2068)] = 32178, - [SMALL_STATE(2069)] = 32239, - [SMALL_STATE(2070)] = 32300, - [SMALL_STATE(2071)] = 32361, - [SMALL_STATE(2072)] = 32422, - [SMALL_STATE(2073)] = 32483, - [SMALL_STATE(2074)] = 32544, - [SMALL_STATE(2075)] = 32605, - [SMALL_STATE(2076)] = 32666, - [SMALL_STATE(2077)] = 32727, - [SMALL_STATE(2078)] = 32788, - [SMALL_STATE(2079)] = 32849, - [SMALL_STATE(2080)] = 32910, - [SMALL_STATE(2081)] = 32971, - [SMALL_STATE(2082)] = 33032, - [SMALL_STATE(2083)] = 33093, - [SMALL_STATE(2084)] = 33154, - [SMALL_STATE(2085)] = 33215, - [SMALL_STATE(2086)] = 33276, - [SMALL_STATE(2087)] = 33337, - [SMALL_STATE(2088)] = 33398, - [SMALL_STATE(2089)] = 33459, - [SMALL_STATE(2090)] = 33520, - [SMALL_STATE(2091)] = 33583, - [SMALL_STATE(2092)] = 33644, - [SMALL_STATE(2093)] = 33705, - [SMALL_STATE(2094)] = 33766, - [SMALL_STATE(2095)] = 33831, - [SMALL_STATE(2096)] = 33892, - [SMALL_STATE(2097)] = 33953, - [SMALL_STATE(2098)] = 34018, - [SMALL_STATE(2099)] = 34079, - [SMALL_STATE(2100)] = 34140, - [SMALL_STATE(2101)] = 34201, - [SMALL_STATE(2102)] = 34262, - [SMALL_STATE(2103)] = 34323, - [SMALL_STATE(2104)] = 34386, - [SMALL_STATE(2105)] = 34447, - [SMALL_STATE(2106)] = 34508, - [SMALL_STATE(2107)] = 34569, - [SMALL_STATE(2108)] = 34632, - [SMALL_STATE(2109)] = 34693, - [SMALL_STATE(2110)] = 34754, - [SMALL_STATE(2111)] = 34815, - [SMALL_STATE(2112)] = 34876, - [SMALL_STATE(2113)] = 34937, - [SMALL_STATE(2114)] = 34998, - [SMALL_STATE(2115)] = 35059, - [SMALL_STATE(2116)] = 35120, - [SMALL_STATE(2117)] = 35181, - [SMALL_STATE(2118)] = 35242, - [SMALL_STATE(2119)] = 35305, - [SMALL_STATE(2120)] = 35366, - [SMALL_STATE(2121)] = 35429, - [SMALL_STATE(2122)] = 35492, - [SMALL_STATE(2123)] = 35553, - [SMALL_STATE(2124)] = 35614, - [SMALL_STATE(2125)] = 35675, - [SMALL_STATE(2126)] = 35736, - [SMALL_STATE(2127)] = 35797, - [SMALL_STATE(2128)] = 35858, - [SMALL_STATE(2129)] = 35919, - [SMALL_STATE(2130)] = 35982, - [SMALL_STATE(2131)] = 36045, - [SMALL_STATE(2132)] = 36106, - [SMALL_STATE(2133)] = 36167, - [SMALL_STATE(2134)] = 36228, - [SMALL_STATE(2135)] = 36289, - [SMALL_STATE(2136)] = 36350, - [SMALL_STATE(2137)] = 36411, - [SMALL_STATE(2138)] = 36472, - [SMALL_STATE(2139)] = 36533, - [SMALL_STATE(2140)] = 36594, - [SMALL_STATE(2141)] = 36655, - [SMALL_STATE(2142)] = 36716, - [SMALL_STATE(2143)] = 36777, - [SMALL_STATE(2144)] = 36838, - [SMALL_STATE(2145)] = 36913, - [SMALL_STATE(2146)] = 36976, - [SMALL_STATE(2147)] = 37051, - [SMALL_STATE(2148)] = 37126, - [SMALL_STATE(2149)] = 37188, - [SMALL_STATE(2150)] = 37250, - [SMALL_STATE(2151)] = 37314, - [SMALL_STATE(2152)] = 37373, - [SMALL_STATE(2153)] = 37430, - [SMALL_STATE(2154)] = 37487, - [SMALL_STATE(2155)] = 37592, - [SMALL_STATE(2156)] = 37655, - [SMALL_STATE(2157)] = 37712, - [SMALL_STATE(2158)] = 37769, - [SMALL_STATE(2159)] = 37826, - [SMALL_STATE(2160)] = 37885, - [SMALL_STATE(2161)] = 37944, - [SMALL_STATE(2162)] = 38001, - [SMALL_STATE(2163)] = 38062, - [SMALL_STATE(2164)] = 38119, - [SMALL_STATE(2165)] = 38176, - [SMALL_STATE(2166)] = 38235, - [SMALL_STATE(2167)] = 38292, - [SMALL_STATE(2168)] = 38348, - [SMALL_STATE(2169)] = 38404, - [SMALL_STATE(2170)] = 38460, - [SMALL_STATE(2171)] = 38516, - [SMALL_STATE(2172)] = 38572, - [SMALL_STATE(2173)] = 38628, - [SMALL_STATE(2174)] = 38684, - [SMALL_STATE(2175)] = 38788, - [SMALL_STATE(2176)] = 38844, - [SMALL_STATE(2177)] = 38900, - [SMALL_STATE(2178)] = 38956, - [SMALL_STATE(2179)] = 39012, - [SMALL_STATE(2180)] = 39068, - [SMALL_STATE(2181)] = 39124, - [SMALL_STATE(2182)] = 39180, - [SMALL_STATE(2183)] = 39236, - [SMALL_STATE(2184)] = 39292, - [SMALL_STATE(2185)] = 39350, - [SMALL_STATE(2186)] = 39406, - [SMALL_STATE(2187)] = 39462, - [SMALL_STATE(2188)] = 39540, - [SMALL_STATE(2189)] = 39596, - [SMALL_STATE(2190)] = 39652, - [SMALL_STATE(2191)] = 39708, - [SMALL_STATE(2192)] = 39764, - [SMALL_STATE(2193)] = 39820, - [SMALL_STATE(2194)] = 39876, - [SMALL_STATE(2195)] = 39932, - [SMALL_STATE(2196)] = 40030, - [SMALL_STATE(2197)] = 40086, - [SMALL_STATE(2198)] = 40142, - [SMALL_STATE(2199)] = 40198, - [SMALL_STATE(2200)] = 40254, - [SMALL_STATE(2201)] = 40310, - [SMALL_STATE(2202)] = 40366, - [SMALL_STATE(2203)] = 40422, - [SMALL_STATE(2204)] = 40478, - [SMALL_STATE(2205)] = 40556, - [SMALL_STATE(2206)] = 40612, - [SMALL_STATE(2207)] = 40670, - [SMALL_STATE(2208)] = 40726, - [SMALL_STATE(2209)] = 40784, - [SMALL_STATE(2210)] = 40840, - [SMALL_STATE(2211)] = 40896, - [SMALL_STATE(2212)] = 40952, - [SMALL_STATE(2213)] = 41008, - [SMALL_STATE(2214)] = 41064, - [SMALL_STATE(2215)] = 41120, - [SMALL_STATE(2216)] = 41176, - [SMALL_STATE(2217)] = 41232, - [SMALL_STATE(2218)] = 41288, - [SMALL_STATE(2219)] = 41344, - [SMALL_STATE(2220)] = 41402, - [SMALL_STATE(2221)] = 41458, - [SMALL_STATE(2222)] = 41514, - [SMALL_STATE(2223)] = 41570, - [SMALL_STATE(2224)] = 41626, - [SMALL_STATE(2225)] = 41682, - [SMALL_STATE(2226)] = 41760, - [SMALL_STATE(2227)] = 41816, - [SMALL_STATE(2228)] = 41914, - [SMALL_STATE(2229)] = 41970, - [SMALL_STATE(2230)] = 42026, - [SMALL_STATE(2231)] = 42082, - [SMALL_STATE(2232)] = 42138, - [SMALL_STATE(2233)] = 42196, - [SMALL_STATE(2234)] = 42252, - [SMALL_STATE(2235)] = 42328, - [SMALL_STATE(2236)] = 42404, - [SMALL_STATE(2237)] = 42488, - [SMALL_STATE(2238)] = 42544, - [SMALL_STATE(2239)] = 42626, - [SMALL_STATE(2240)] = 42702, - [SMALL_STATE(2241)] = 42758, - [SMALL_STATE(2242)] = 42814, - [SMALL_STATE(2243)] = 42870, - [SMALL_STATE(2244)] = 42926, - [SMALL_STATE(2245)] = 42982, - [SMALL_STATE(2246)] = 43038, - [SMALL_STATE(2247)] = 43094, - [SMALL_STATE(2248)] = 43168, - [SMALL_STATE(2249)] = 43224, - [SMALL_STATE(2250)] = 43280, - [SMALL_STATE(2251)] = 43336, - [SMALL_STATE(2252)] = 43392, - [SMALL_STATE(2253)] = 43448, - [SMALL_STATE(2254)] = 43504, - [SMALL_STATE(2255)] = 43560, - [SMALL_STATE(2256)] = 43616, - [SMALL_STATE(2257)] = 43672, - [SMALL_STATE(2258)] = 43728, - [SMALL_STATE(2259)] = 43786, - [SMALL_STATE(2260)] = 43842, - [SMALL_STATE(2261)] = 43898, - [SMALL_STATE(2262)] = 43954, - [SMALL_STATE(2263)] = 44010, - [SMALL_STATE(2264)] = 44066, - [SMALL_STATE(2265)] = 44122, - [SMALL_STATE(2266)] = 44178, - [SMALL_STATE(2267)] = 44234, - [SMALL_STATE(2268)] = 44290, - [SMALL_STATE(2269)] = 44346, - [SMALL_STATE(2270)] = 44402, - [SMALL_STATE(2271)] = 44458, - [SMALL_STATE(2272)] = 44514, - [SMALL_STATE(2273)] = 44570, - [SMALL_STATE(2274)] = 44626, - [SMALL_STATE(2275)] = 44682, - [SMALL_STATE(2276)] = 44738, - [SMALL_STATE(2277)] = 44794, - [SMALL_STATE(2278)] = 44850, - [SMALL_STATE(2279)] = 44906, - [SMALL_STATE(2280)] = 44962, - [SMALL_STATE(2281)] = 45018, - [SMALL_STATE(2282)] = 45074, - [SMALL_STATE(2283)] = 45130, - [SMALL_STATE(2284)] = 45186, - [SMALL_STATE(2285)] = 45242, - [SMALL_STATE(2286)] = 45298, - [SMALL_STATE(2287)] = 45395, - [SMALL_STATE(2288)] = 45450, - [SMALL_STATE(2289)] = 45547, - [SMALL_STATE(2290)] = 45622, - [SMALL_STATE(2291)] = 45705, - [SMALL_STATE(2292)] = 45802, - [SMALL_STATE(2293)] = 45857, - [SMALL_STATE(2294)] = 45938, - [SMALL_STATE(2295)] = 46013, - [SMALL_STATE(2296)] = 46088, - [SMALL_STATE(2297)] = 46161, - [SMALL_STATE(2298)] = 46216, - [SMALL_STATE(2299)] = 46313, - [SMALL_STATE(2300)] = 46372, - [SMALL_STATE(2301)] = 46431, - [SMALL_STATE(2302)] = 46486, - [SMALL_STATE(2303)] = 46543, - [SMALL_STATE(2304)] = 46600, - [SMALL_STATE(2305)] = 46682, - [SMALL_STATE(2306)] = 46756, - [SMALL_STATE(2307)] = 46812, - [SMALL_STATE(2308)] = 46868, - [SMALL_STATE(2309)] = 46964, - [SMALL_STATE(2310)] = 47036, - [SMALL_STATE(2311)] = 47106, - [SMALL_STATE(2312)] = 47202, - [SMALL_STATE(2313)] = 47298, - [SMALL_STATE(2314)] = 47368, - [SMALL_STATE(2315)] = 47442, - [SMALL_STATE(2316)] = 47522, - [SMALL_STATE(2317)] = 47592, - [SMALL_STATE(2318)] = 47694, - [SMALL_STATE(2319)] = 47750, - [SMALL_STATE(2320)] = 47824, - [SMALL_STATE(2321)] = 47877, - [SMALL_STATE(2322)] = 47930, - [SMALL_STATE(2323)] = 47983, - [SMALL_STATE(2324)] = 48036, - [SMALL_STATE(2325)] = 48089, - [SMALL_STATE(2326)] = 48142, - [SMALL_STATE(2327)] = 48195, - [SMALL_STATE(2328)] = 48248, - [SMALL_STATE(2329)] = 48343, - [SMALL_STATE(2330)] = 48438, - [SMALL_STATE(2331)] = 48491, - [SMALL_STATE(2332)] = 48548, - [SMALL_STATE(2333)] = 48605, - [SMALL_STATE(2334)] = 48658, - [SMALL_STATE(2335)] = 48711, - [SMALL_STATE(2336)] = 48764, - [SMALL_STATE(2337)] = 48817, - [SMALL_STATE(2338)] = 48870, - [SMALL_STATE(2339)] = 48923, - [SMALL_STATE(2340)] = 48976, - [SMALL_STATE(2341)] = 49029, - [SMALL_STATE(2342)] = 49084, - [SMALL_STATE(2343)] = 49137, - [SMALL_STATE(2344)] = 49190, - [SMALL_STATE(2345)] = 49243, - [SMALL_STATE(2346)] = 49296, - [SMALL_STATE(2347)] = 49349, - [SMALL_STATE(2348)] = 49402, - [SMALL_STATE(2349)] = 49455, - [SMALL_STATE(2350)] = 49508, - [SMALL_STATE(2351)] = 49561, - [SMALL_STATE(2352)] = 49614, - [SMALL_STATE(2353)] = 49667, - [SMALL_STATE(2354)] = 49720, - [SMALL_STATE(2355)] = 49773, - [SMALL_STATE(2356)] = 49826, - [SMALL_STATE(2357)] = 49879, - [SMALL_STATE(2358)] = 49932, - [SMALL_STATE(2359)] = 50027, - [SMALL_STATE(2360)] = 50080, - [SMALL_STATE(2361)] = 50137, - [SMALL_STATE(2362)] = 50194, - [SMALL_STATE(2363)] = 50247, - [SMALL_STATE(2364)] = 50300, - [SMALL_STATE(2365)] = 50353, - [SMALL_STATE(2366)] = 50452, - [SMALL_STATE(2367)] = 50505, - [SMALL_STATE(2368)] = 50558, - [SMALL_STATE(2369)] = 50611, - [SMALL_STATE(2370)] = 50664, - [SMALL_STATE(2371)] = 50717, - [SMALL_STATE(2372)] = 50772, - [SMALL_STATE(2373)] = 50825, - [SMALL_STATE(2374)] = 50880, - [SMALL_STATE(2375)] = 50933, - [SMALL_STATE(2376)] = 50986, - [SMALL_STATE(2377)] = 51039, - [SMALL_STATE(2378)] = 51092, - [SMALL_STATE(2379)] = 51145, - [SMALL_STATE(2380)] = 51198, - [SMALL_STATE(2381)] = 51251, - [SMALL_STATE(2382)] = 51304, - [SMALL_STATE(2383)] = 51357, - [SMALL_STATE(2384)] = 51410, - [SMALL_STATE(2385)] = 51463, - [SMALL_STATE(2386)] = 51516, - [SMALL_STATE(2387)] = 51569, - [SMALL_STATE(2388)] = 51622, - [SMALL_STATE(2389)] = 51677, - [SMALL_STATE(2390)] = 51730, - [SMALL_STATE(2391)] = 51783, - [SMALL_STATE(2392)] = 51836, - [SMALL_STATE(2393)] = 51889, - [SMALL_STATE(2394)] = 51942, - [SMALL_STATE(2395)] = 51995, - [SMALL_STATE(2396)] = 52048, - [SMALL_STATE(2397)] = 52101, - [SMALL_STATE(2398)] = 52154, - [SMALL_STATE(2399)] = 52207, - [SMALL_STATE(2400)] = 52260, - [SMALL_STATE(2401)] = 52313, - [SMALL_STATE(2402)] = 52366, - [SMALL_STATE(2403)] = 52419, - [SMALL_STATE(2404)] = 52472, - [SMALL_STATE(2405)] = 52525, - [SMALL_STATE(2406)] = 52578, - [SMALL_STATE(2407)] = 52633, - [SMALL_STATE(2408)] = 52686, - [SMALL_STATE(2409)] = 52739, - [SMALL_STATE(2410)] = 52792, - [SMALL_STATE(2411)] = 52845, - [SMALL_STATE(2412)] = 52898, - [SMALL_STATE(2413)] = 52951, - [SMALL_STATE(2414)] = 53004, - [SMALL_STATE(2415)] = 53057, - [SMALL_STATE(2416)] = 53110, - [SMALL_STATE(2417)] = 53163, - [SMALL_STATE(2418)] = 53216, - [SMALL_STATE(2419)] = 53269, - [SMALL_STATE(2420)] = 53322, - [SMALL_STATE(2421)] = 53375, - [SMALL_STATE(2422)] = 53428, - [SMALL_STATE(2423)] = 53481, - [SMALL_STATE(2424)] = 53534, - [SMALL_STATE(2425)] = 53587, - [SMALL_STATE(2426)] = 53642, - [SMALL_STATE(2427)] = 53695, - [SMALL_STATE(2428)] = 53748, - [SMALL_STATE(2429)] = 53801, - [SMALL_STATE(2430)] = 53911, - [SMALL_STATE(2431)] = 53965, - [SMALL_STATE(2432)] = 54075, - [SMALL_STATE(2433)] = 54129, - [SMALL_STATE(2434)] = 54225, - [SMALL_STATE(2435)] = 54303, - [SMALL_STATE(2436)] = 54385, - [SMALL_STATE(2437)] = 54473, - [SMALL_STATE(2438)] = 54563, - [SMALL_STATE(2439)] = 54645, - [SMALL_STATE(2440)] = 54727, - [SMALL_STATE(2441)] = 54837, - [SMALL_STATE(2442)] = 54947, - [SMALL_STATE(2443)] = 55057, - [SMALL_STATE(2444)] = 55111, - [SMALL_STATE(2445)] = 55167, - [SMALL_STATE(2446)] = 55221, - [SMALL_STATE(2447)] = 55331, - [SMALL_STATE(2448)] = 55435, - [SMALL_STATE(2449)] = 55539, - [SMALL_STATE(2450)] = 55649, - [SMALL_STATE(2451)] = 55721, - [SMALL_STATE(2452)] = 55793, - [SMALL_STATE(2453)] = 55873, - [SMALL_STATE(2454)] = 55983, - [SMALL_STATE(2455)] = 56093, - [SMALL_STATE(2456)] = 56187, - [SMALL_STATE(2457)] = 56265, - [SMALL_STATE(2458)] = 56319, - [SMALL_STATE(2459)] = 56391, - [SMALL_STATE(2460)] = 56501, - [SMALL_STATE(2461)] = 56555, - [SMALL_STATE(2462)] = 56649, - [SMALL_STATE(2463)] = 56759, - [SMALL_STATE(2464)] = 56869, - [SMALL_STATE(2465)] = 56979, - [SMALL_STATE(2466)] = 57033, - [SMALL_STATE(2467)] = 57127, - [SMALL_STATE(2468)] = 57197, - [SMALL_STATE(2469)] = 57248, - [SMALL_STATE(2470)] = 57299, - [SMALL_STATE(2471)] = 57350, - [SMALL_STATE(2472)] = 57401, - [SMALL_STATE(2473)] = 57452, - [SMALL_STATE(2474)] = 57503, - [SMALL_STATE(2475)] = 57554, - [SMALL_STATE(2476)] = 57605, - [SMALL_STATE(2477)] = 57656, - [SMALL_STATE(2478)] = 57707, - [SMALL_STATE(2479)] = 57758, - [SMALL_STATE(2480)] = 57809, - [SMALL_STATE(2481)] = 57862, - [SMALL_STATE(2482)] = 57955, - [SMALL_STATE(2483)] = 58006, - [SMALL_STATE(2484)] = 58057, - [SMALL_STATE(2485)] = 58148, - [SMALL_STATE(2486)] = 58241, - [SMALL_STATE(2487)] = 58294, - [SMALL_STATE(2488)] = 58387, - [SMALL_STATE(2489)] = 58438, - [SMALL_STATE(2490)] = 58511, - [SMALL_STATE(2491)] = 58562, - [SMALL_STATE(2492)] = 58655, - [SMALL_STATE(2493)] = 58706, - [SMALL_STATE(2494)] = 58811, - [SMALL_STATE(2495)] = 58916, - [SMALL_STATE(2496)] = 58967, - [SMALL_STATE(2497)] = 59018, - [SMALL_STATE(2498)] = 59069, - [SMALL_STATE(2499)] = 59142, - [SMALL_STATE(2500)] = 59193, - [SMALL_STATE(2501)] = 59244, - [SMALL_STATE(2502)] = 59333, - [SMALL_STATE(2503)] = 59384, - [SMALL_STATE(2504)] = 59435, - [SMALL_STATE(2505)] = 59486, - [SMALL_STATE(2506)] = 59537, - [SMALL_STATE(2507)] = 59588, - [SMALL_STATE(2508)] = 59639, - [SMALL_STATE(2509)] = 59690, - [SMALL_STATE(2510)] = 59741, - [SMALL_STATE(2511)] = 59828, - [SMALL_STATE(2512)] = 59879, - [SMALL_STATE(2513)] = 59930, - [SMALL_STATE(2514)] = 60017, - [SMALL_STATE(2515)] = 60104, - [SMALL_STATE(2516)] = 60155, - [SMALL_STATE(2517)] = 60236, - [SMALL_STATE(2518)] = 60313, - [SMALL_STATE(2519)] = 60364, - [SMALL_STATE(2520)] = 60415, - [SMALL_STATE(2521)] = 60466, - [SMALL_STATE(2522)] = 60547, - [SMALL_STATE(2523)] = 60602, - [SMALL_STATE(2524)] = 60653, - [SMALL_STATE(2525)] = 60704, - [SMALL_STATE(2526)] = 60811, - [SMALL_STATE(2527)] = 60862, - [SMALL_STATE(2528)] = 60913, - [SMALL_STATE(2529)] = 60964, - [SMALL_STATE(2530)] = 61017, - [SMALL_STATE(2531)] = 61068, - [SMALL_STATE(2532)] = 61119, - [SMALL_STATE(2533)] = 61170, - [SMALL_STATE(2534)] = 61221, - [SMALL_STATE(2535)] = 61272, - [SMALL_STATE(2536)] = 61323, - [SMALL_STATE(2537)] = 61374, - [SMALL_STATE(2538)] = 61425, - [SMALL_STATE(2539)] = 61476, - [SMALL_STATE(2540)] = 61527, - [SMALL_STATE(2541)] = 61578, - [SMALL_STATE(2542)] = 61629, - [SMALL_STATE(2543)] = 61682, - [SMALL_STATE(2544)] = 61735, - [SMALL_STATE(2545)] = 61786, - [SMALL_STATE(2546)] = 61837, - [SMALL_STATE(2547)] = 61888, - [SMALL_STATE(2548)] = 61939, - [SMALL_STATE(2549)] = 61990, - [SMALL_STATE(2550)] = 62041, - [SMALL_STATE(2551)] = 62092, - [SMALL_STATE(2552)] = 62145, - [SMALL_STATE(2553)] = 62252, - [SMALL_STATE(2554)] = 62303, - [SMALL_STATE(2555)] = 62384, - [SMALL_STATE(2556)] = 62435, - [SMALL_STATE(2557)] = 62486, - [SMALL_STATE(2558)] = 62539, - [SMALL_STATE(2559)] = 62590, - [SMALL_STATE(2560)] = 62663, - [SMALL_STATE(2561)] = 62714, - [SMALL_STATE(2562)] = 62805, - [SMALL_STATE(2563)] = 62856, - [SMALL_STATE(2564)] = 62909, - [SMALL_STATE(2565)] = 62960, - [SMALL_STATE(2566)] = 63011, - [SMALL_STATE(2567)] = 63062, - [SMALL_STATE(2568)] = 63113, - [SMALL_STATE(2569)] = 63164, - [SMALL_STATE(2570)] = 63215, - [SMALL_STATE(2571)] = 63266, - [SMALL_STATE(2572)] = 63317, - [SMALL_STATE(2573)] = 63368, - [SMALL_STATE(2574)] = 63419, - [SMALL_STATE(2575)] = 63470, - [SMALL_STATE(2576)] = 63521, - [SMALL_STATE(2577)] = 63572, - [SMALL_STATE(2578)] = 63623, - [SMALL_STATE(2579)] = 63674, - [SMALL_STATE(2580)] = 63725, - [SMALL_STATE(2581)] = 63776, - [SMALL_STATE(2582)] = 63827, - [SMALL_STATE(2583)] = 63878, - [SMALL_STATE(2584)] = 63929, - [SMALL_STATE(2585)] = 63980, - [SMALL_STATE(2586)] = 64031, - [SMALL_STATE(2587)] = 64082, - [SMALL_STATE(2588)] = 64133, - [SMALL_STATE(2589)] = 64184, - [SMALL_STATE(2590)] = 64235, - [SMALL_STATE(2591)] = 64286, - [SMALL_STATE(2592)] = 64337, - [SMALL_STATE(2593)] = 64388, - [SMALL_STATE(2594)] = 64462, - [SMALL_STATE(2595)] = 64562, - [SMALL_STATE(2596)] = 64642, - [SMALL_STATE(2597)] = 64722, - [SMALL_STATE(2598)] = 64822, - [SMALL_STATE(2599)] = 64912, - [SMALL_STATE(2600)] = 65016, - [SMALL_STATE(2601)] = 65120, - [SMALL_STATE(2602)] = 65208, - [SMALL_STATE(2603)] = 65262, - [SMALL_STATE(2604)] = 65316, - [SMALL_STATE(2605)] = 65366, - [SMALL_STATE(2606)] = 65470, - [SMALL_STATE(2607)] = 65520, - [SMALL_STATE(2608)] = 65600, - [SMALL_STATE(2609)] = 65676, - [SMALL_STATE(2610)] = 65754, - [SMALL_STATE(2611)] = 65832, - [SMALL_STATE(2612)] = 65886, - [SMALL_STATE(2613)] = 65992, - [SMALL_STATE(2614)] = 66046, - [SMALL_STATE(2615)] = 66132, - [SMALL_STATE(2616)] = 66232, - [SMALL_STATE(2617)] = 66316, - [SMALL_STATE(2618)] = 66394, - [SMALL_STATE(2619)] = 66498, - [SMALL_STATE(2620)] = 66598, - [SMALL_STATE(2621)] = 66698, - [SMALL_STATE(2622)] = 66776, - [SMALL_STATE(2623)] = 66854, - [SMALL_STATE(2624)] = 66940, - [SMALL_STATE(2625)] = 67024, - [SMALL_STATE(2626)] = 67102, - [SMALL_STATE(2627)] = 67176, - [SMALL_STATE(2628)] = 67225, - [SMALL_STATE(2629)] = 67326, - [SMALL_STATE(2630)] = 67427, - [SMALL_STATE(2631)] = 67528, - [SMALL_STATE(2632)] = 67583, - [SMALL_STATE(2633)] = 67686, - [SMALL_STATE(2634)] = 67785, - [SMALL_STATE(2635)] = 67886, - [SMALL_STATE(2636)] = 67937, - [SMALL_STATE(2637)] = 68036, - [SMALL_STATE(2638)] = 68139, - [SMALL_STATE(2639)] = 68242, - [SMALL_STATE(2640)] = 68343, - [SMALL_STATE(2641)] = 68446, - [SMALL_STATE(2642)] = 68547, - [SMALL_STATE(2643)] = 68648, - [SMALL_STATE(2644)] = 68751, - [SMALL_STATE(2645)] = 68854, - [SMALL_STATE(2646)] = 68955, - [SMALL_STATE(2647)] = 69054, - [SMALL_STATE(2648)] = 69107, - [SMALL_STATE(2649)] = 69208, - [SMALL_STATE(2650)] = 69311, - [SMALL_STATE(2651)] = 69414, - [SMALL_STATE(2652)] = 69469, - [SMALL_STATE(2653)] = 69572, - [SMALL_STATE(2654)] = 69671, - [SMALL_STATE(2655)] = 69772, - [SMALL_STATE(2656)] = 69823, - [SMALL_STATE(2657)] = 69926, - [SMALL_STATE(2658)] = 69977, - [SMALL_STATE(2659)] = 70080, - [SMALL_STATE(2660)] = 70181, - [SMALL_STATE(2661)] = 70282, - [SMALL_STATE(2662)] = 70385, - [SMALL_STATE(2663)] = 70488, - [SMALL_STATE(2664)] = 70587, - [SMALL_STATE(2665)] = 70636, - [SMALL_STATE(2666)] = 70737, - [SMALL_STATE(2667)] = 70838, - [SMALL_STATE(2668)] = 70886, - [SMALL_STATE(2669)] = 70984, - [SMALL_STATE(2670)] = 71034, - [SMALL_STATE(2671)] = 71082, - [SMALL_STATE(2672)] = 71130, - [SMALL_STATE(2673)] = 71178, - [SMALL_STATE(2674)] = 71276, - [SMALL_STATE(2675)] = 71324, - [SMALL_STATE(2676)] = 71422, - [SMALL_STATE(2677)] = 71516, - [SMALL_STATE(2678)] = 71614, - [SMALL_STATE(2679)] = 71712, - [SMALL_STATE(2680)] = 71806, - [SMALL_STATE(2681)] = 71904, - [SMALL_STATE(2682)] = 72002, - [SMALL_STATE(2683)] = 72050, - [SMALL_STATE(2684)] = 72100, - [SMALL_STATE(2685)] = 72148, - [SMALL_STATE(2686)] = 72246, - [SMALL_STATE(2687)] = 72294, - [SMALL_STATE(2688)] = 72342, - [SMALL_STATE(2689)] = 72440, - [SMALL_STATE(2690)] = 72488, - [SMALL_STATE(2691)] = 72536, - [SMALL_STATE(2692)] = 72634, - [SMALL_STATE(2693)] = 72682, - [SMALL_STATE(2694)] = 72730, - [SMALL_STATE(2695)] = 72778, - [SMALL_STATE(2696)] = 72876, - [SMALL_STATE(2697)] = 72924, - [SMALL_STATE(2698)] = 72972, - [SMALL_STATE(2699)] = 73020, - [SMALL_STATE(2700)] = 73068, - [SMALL_STATE(2701)] = 73116, - [SMALL_STATE(2702)] = 73164, - [SMALL_STATE(2703)] = 73262, - [SMALL_STATE(2704)] = 73360, - [SMALL_STATE(2705)] = 73408, - [SMALL_STATE(2706)] = 73456, - [SMALL_STATE(2707)] = 73554, - [SMALL_STATE(2708)] = 73652, - [SMALL_STATE(2709)] = 73700, - [SMALL_STATE(2710)] = 73748, - [SMALL_STATE(2711)] = 73796, - [SMALL_STATE(2712)] = 73844, - [SMALL_STATE(2713)] = 73892, - [SMALL_STATE(2714)] = 73940, - [SMALL_STATE(2715)] = 73988, - [SMALL_STATE(2716)] = 74082, - [SMALL_STATE(2717)] = 74130, - [SMALL_STATE(2718)] = 74178, - [SMALL_STATE(2719)] = 74226, - [SMALL_STATE(2720)] = 74324, - [SMALL_STATE(2721)] = 74372, - [SMALL_STATE(2722)] = 74420, - [SMALL_STATE(2723)] = 74468, - [SMALL_STATE(2724)] = 74516, - [SMALL_STATE(2725)] = 74564, - [SMALL_STATE(2726)] = 74612, - [SMALL_STATE(2727)] = 74660, - [SMALL_STATE(2728)] = 74708, - [SMALL_STATE(2729)] = 74806, - [SMALL_STATE(2730)] = 74854, - [SMALL_STATE(2731)] = 74952, - [SMALL_STATE(2732)] = 75002, - [SMALL_STATE(2733)] = 75054, - [SMALL_STATE(2734)] = 75106, - [SMALL_STATE(2735)] = 75154, - [SMALL_STATE(2736)] = 75252, - [SMALL_STATE(2737)] = 75350, - [SMALL_STATE(2738)] = 75398, - [SMALL_STATE(2739)] = 75446, - [SMALL_STATE(2740)] = 75494, - [SMALL_STATE(2741)] = 75542, - [SMALL_STATE(2742)] = 75590, - [SMALL_STATE(2743)] = 75684, - [SMALL_STATE(2744)] = 75782, - [SMALL_STATE(2745)] = 75830, - [SMALL_STATE(2746)] = 75924, - [SMALL_STATE(2747)] = 75972, - [SMALL_STATE(2748)] = 76020, - [SMALL_STATE(2749)] = 76068, - [SMALL_STATE(2750)] = 76116, - [SMALL_STATE(2751)] = 76164, - [SMALL_STATE(2752)] = 76214, - [SMALL_STATE(2753)] = 76262, - [SMALL_STATE(2754)] = 76356, - [SMALL_STATE(2755)] = 76404, - [SMALL_STATE(2756)] = 76498, - [SMALL_STATE(2757)] = 76546, - [SMALL_STATE(2758)] = 76644, - [SMALL_STATE(2759)] = 76692, - [SMALL_STATE(2760)] = 76740, - [SMALL_STATE(2761)] = 76788, - [SMALL_STATE(2762)] = 76836, - [SMALL_STATE(2763)] = 76934, - [SMALL_STATE(2764)] = 77032, - [SMALL_STATE(2765)] = 77080, - [SMALL_STATE(2766)] = 77128, - [SMALL_STATE(2767)] = 77176, - [SMALL_STATE(2768)] = 77224, - [SMALL_STATE(2769)] = 77272, - [SMALL_STATE(2770)] = 77370, - [SMALL_STATE(2771)] = 77418, - [SMALL_STATE(2772)] = 77466, - [SMALL_STATE(2773)] = 77514, - [SMALL_STATE(2774)] = 77562, - [SMALL_STATE(2775)] = 77610, - [SMALL_STATE(2776)] = 77658, - [SMALL_STATE(2777)] = 77708, - [SMALL_STATE(2778)] = 77760, - [SMALL_STATE(2779)] = 77808, - [SMALL_STATE(2780)] = 77856, - [SMALL_STATE(2781)] = 77904, - [SMALL_STATE(2782)] = 77952, - [SMALL_STATE(2783)] = 78000, - [SMALL_STATE(2784)] = 78098, - [SMALL_STATE(2785)] = 78192, - [SMALL_STATE(2786)] = 78290, - [SMALL_STATE(2787)] = 78340, - [SMALL_STATE(2788)] = 78388, - [SMALL_STATE(2789)] = 78486, - [SMALL_STATE(2790)] = 78534, - [SMALL_STATE(2791)] = 78582, - [SMALL_STATE(2792)] = 78630, - [SMALL_STATE(2793)] = 78728, - [SMALL_STATE(2794)] = 78826, - [SMALL_STATE(2795)] = 78924, - [SMALL_STATE(2796)] = 78972, - [SMALL_STATE(2797)] = 79020, - [SMALL_STATE(2798)] = 79118, - [SMALL_STATE(2799)] = 79216, - [SMALL_STATE(2800)] = 79310, - [SMALL_STATE(2801)] = 79358, - [SMALL_STATE(2802)] = 79406, - [SMALL_STATE(2803)] = 79504, - [SMALL_STATE(2804)] = 79552, - [SMALL_STATE(2805)] = 79600, - [SMALL_STATE(2806)] = 79672, - [SMALL_STATE(2807)] = 79770, - [SMALL_STATE(2808)] = 79818, - [SMALL_STATE(2809)] = 79916, - [SMALL_STATE(2810)] = 80010, - [SMALL_STATE(2811)] = 80086, - [SMALL_STATE(2812)] = 80184, - [SMALL_STATE(2813)] = 80282, - [SMALL_STATE(2814)] = 80364, - [SMALL_STATE(2815)] = 80412, - [SMALL_STATE(2816)] = 80488, - [SMALL_STATE(2817)] = 80572, - [SMALL_STATE(2818)] = 80622, - [SMALL_STATE(2819)] = 80716, - [SMALL_STATE(2820)] = 80792, - [SMALL_STATE(2821)] = 80868, - [SMALL_STATE(2822)] = 80944, - [SMALL_STATE(2823)] = 80994, - [SMALL_STATE(2824)] = 81088, - [SMALL_STATE(2825)] = 81136, - [SMALL_STATE(2826)] = 81184, - [SMALL_STATE(2827)] = 81232, - [SMALL_STATE(2828)] = 81282, - [SMALL_STATE(2829)] = 81376, - [SMALL_STATE(2830)] = 81460, - [SMALL_STATE(2831)] = 81558, - [SMALL_STATE(2832)] = 81640, - [SMALL_STATE(2833)] = 81738, - [SMALL_STATE(2834)] = 81814, - [SMALL_STATE(2835)] = 81886, - [SMALL_STATE(2836)] = 81938, - [SMALL_STATE(2837)] = 81988, - [SMALL_STATE(2838)] = 82036, - [SMALL_STATE(2839)] = 82134, - [SMALL_STATE(2840)] = 82232, - [SMALL_STATE(2841)] = 82330, - [SMALL_STATE(2842)] = 82378, - [SMALL_STATE(2843)] = 82476, - [SMALL_STATE(2844)] = 82524, - [SMALL_STATE(2845)] = 82574, - [SMALL_STATE(2846)] = 82622, - [SMALL_STATE(2847)] = 82672, - [SMALL_STATE(2848)] = 82770, - [SMALL_STATE(2849)] = 82868, - [SMALL_STATE(2850)] = 82962, - [SMALL_STATE(2851)] = 83012, - [SMALL_STATE(2852)] = 83110, - [SMALL_STATE(2853)] = 83204, - [SMALL_STATE(2854)] = 83298, - [SMALL_STATE(2855)] = 83396, - [SMALL_STATE(2856)] = 83494, - [SMALL_STATE(2857)] = 83592, - [SMALL_STATE(2858)] = 83641, - [SMALL_STATE(2859)] = 83736, - [SMALL_STATE(2860)] = 83831, - [SMALL_STATE(2861)] = 83926, - [SMALL_STATE(2862)] = 84021, - [SMALL_STATE(2863)] = 84108, - [SMALL_STATE(2864)] = 84203, - [SMALL_STATE(2865)] = 84252, - [SMALL_STATE(2866)] = 84347, - [SMALL_STATE(2867)] = 84436, - [SMALL_STATE(2868)] = 84485, - [SMALL_STATE(2869)] = 84580, - [SMALL_STATE(2870)] = 84633, - [SMALL_STATE(2871)] = 84728, - [SMALL_STATE(2872)] = 84823, - [SMALL_STATE(2873)] = 84876, - [SMALL_STATE(2874)] = 84971, - [SMALL_STATE(2875)] = 85058, - [SMALL_STATE(2876)] = 85153, - [SMALL_STATE(2877)] = 85242, - [SMALL_STATE(2878)] = 85337, - [SMALL_STATE(2879)] = 85432, - [SMALL_STATE(2880)] = 85479, - [SMALL_STATE(2881)] = 85574, - [SMALL_STATE(2882)] = 85621, - [SMALL_STATE(2883)] = 85716, - [SMALL_STATE(2884)] = 85811, - [SMALL_STATE(2885)] = 85857, - [SMALL_STATE(2886)] = 85903, - [SMALL_STATE(2887)] = 85949, - [SMALL_STATE(2888)] = 86037, - [SMALL_STATE(2889)] = 86119, - [SMALL_STATE(2890)] = 86167, - [SMALL_STATE(2891)] = 86213, - [SMALL_STATE(2892)] = 86259, - [SMALL_STATE(2893)] = 86307, - [SMALL_STATE(2894)] = 86353, - [SMALL_STATE(2895)] = 86399, - [SMALL_STATE(2896)] = 86481, - [SMALL_STATE(2897)] = 86529, - [SMALL_STATE(2898)] = 86575, - [SMALL_STATE(2899)] = 86657, - [SMALL_STATE(2900)] = 86705, - [SMALL_STATE(2901)] = 86753, - [SMALL_STATE(2902)] = 86801, - [SMALL_STATE(2903)] = 86847, - [SMALL_STATE(2904)] = 86893, - [SMALL_STATE(2905)] = 86939, - [SMALL_STATE(2906)] = 86985, - [SMALL_STATE(2907)] = 87033, - [SMALL_STATE(2908)] = 87079, - [SMALL_STATE(2909)] = 87125, - [SMALL_STATE(2910)] = 87171, - [SMALL_STATE(2911)] = 87217, - [SMALL_STATE(2912)] = 87263, - [SMALL_STATE(2913)] = 87345, - [SMALL_STATE(2914)] = 87391, - [SMALL_STATE(2915)] = 87437, - [SMALL_STATE(2916)] = 87483, - [SMALL_STATE(2917)] = 87531, - [SMALL_STATE(2918)] = 87579, - [SMALL_STATE(2919)] = 87625, - [SMALL_STATE(2920)] = 87671, - [SMALL_STATE(2921)] = 87719, - [SMALL_STATE(2922)] = 87765, - [SMALL_STATE(2923)] = 87811, - [SMALL_STATE(2924)] = 87893, - [SMALL_STATE(2925)] = 87975, - [SMALL_STATE(2926)] = 88023, - [SMALL_STATE(2927)] = 88069, - [SMALL_STATE(2928)] = 88115, - [SMALL_STATE(2929)] = 88161, - [SMALL_STATE(2930)] = 88209, - [SMALL_STATE(2931)] = 88257, - [SMALL_STATE(2932)] = 88305, - [SMALL_STATE(2933)] = 88351, - [SMALL_STATE(2934)] = 88397, - [SMALL_STATE(2935)] = 88446, - [SMALL_STATE(2936)] = 88493, - [SMALL_STATE(2937)] = 88540, - [SMALL_STATE(2938)] = 88587, - [SMALL_STATE(2939)] = 88636, - [SMALL_STATE(2940)] = 88683, - [SMALL_STATE(2941)] = 88730, - [SMALL_STATE(2942)] = 88777, - [SMALL_STATE(2943)] = 88824, - [SMALL_STATE(2944)] = 88871, - [SMALL_STATE(2945)] = 88920, - [SMALL_STATE(2946)] = 88969, - [SMALL_STATE(2947)] = 89018, - [SMALL_STATE(2948)] = 89067, - [SMALL_STATE(2949)] = 89114, - [SMALL_STATE(2950)] = 89161, - [SMALL_STATE(2951)] = 89208, - [SMALL_STATE(2952)] = 89257, - [SMALL_STATE(2953)] = 89304, - [SMALL_STATE(2954)] = 89351, - [SMALL_STATE(2955)] = 89400, - [SMALL_STATE(2956)] = 89449, - [SMALL_STATE(2957)] = 89496, - [SMALL_STATE(2958)] = 89543, - [SMALL_STATE(2959)] = 89590, - [SMALL_STATE(2960)] = 89639, - [SMALL_STATE(2961)] = 89686, - [SMALL_STATE(2962)] = 89733, - [SMALL_STATE(2963)] = 89780, - [SMALL_STATE(2964)] = 89829, - [SMALL_STATE(2965)] = 89878, - [SMALL_STATE(2966)] = 89927, - [SMALL_STATE(2967)] = 89974, - [SMALL_STATE(2968)] = 90021, - [SMALL_STATE(2969)] = 90070, - [SMALL_STATE(2970)] = 90117, - [SMALL_STATE(2971)] = 90164, - [SMALL_STATE(2972)] = 90211, - [SMALL_STATE(2973)] = 90260, - [SMALL_STATE(2974)] = 90309, - [SMALL_STATE(2975)] = 90356, - [SMALL_STATE(2976)] = 90405, - [SMALL_STATE(2977)] = 90452, - [SMALL_STATE(2978)] = 90501, - [SMALL_STATE(2979)] = 90548, - [SMALL_STATE(2980)] = 90595, - [SMALL_STATE(2981)] = 90642, - [SMALL_STATE(2982)] = 90689, - [SMALL_STATE(2983)] = 90738, - [SMALL_STATE(2984)] = 90787, - [SMALL_STATE(2985)] = 90836, - [SMALL_STATE(2986)] = 90885, - [SMALL_STATE(2987)] = 90932, - [SMALL_STATE(2988)] = 90981, - [SMALL_STATE(2989)] = 91028, - [SMALL_STATE(2990)] = 91075, - [SMALL_STATE(2991)] = 91124, - [SMALL_STATE(2992)] = 91173, - [SMALL_STATE(2993)] = 91220, - [SMALL_STATE(2994)] = 91267, - [SMALL_STATE(2995)] = 91314, - [SMALL_STATE(2996)] = 91361, - [SMALL_STATE(2997)] = 91408, - [SMALL_STATE(2998)] = 91455, - [SMALL_STATE(2999)] = 91504, - [SMALL_STATE(3000)] = 91551, - [SMALL_STATE(3001)] = 91598, - [SMALL_STATE(3002)] = 91647, - [SMALL_STATE(3003)] = 91696, - [SMALL_STATE(3004)] = 91743, - [SMALL_STATE(3005)] = 91790, - [SMALL_STATE(3006)] = 91837, - [SMALL_STATE(3007)] = 91919, - [SMALL_STATE(3008)] = 92001, - [SMALL_STATE(3009)] = 92080, - [SMALL_STATE(3010)] = 92159, - [SMALL_STATE(3011)] = 92238, - [SMALL_STATE(3012)] = 92317, - [SMALL_STATE(3013)] = 92396, - [SMALL_STATE(3014)] = 92475, - [SMALL_STATE(3015)] = 92554, - [SMALL_STATE(3016)] = 92633, - [SMALL_STATE(3017)] = 92712, - [SMALL_STATE(3018)] = 92791, - [SMALL_STATE(3019)] = 92870, - [SMALL_STATE(3020)] = 92949, - [SMALL_STATE(3021)] = 93028, - [SMALL_STATE(3022)] = 93107, - [SMALL_STATE(3023)] = 93186, - [SMALL_STATE(3024)] = 93265, - [SMALL_STATE(3025)] = 93344, - [SMALL_STATE(3026)] = 93423, - [SMALL_STATE(3027)] = 93502, - [SMALL_STATE(3028)] = 93581, - [SMALL_STATE(3029)] = 93660, - [SMALL_STATE(3030)] = 93739, - [SMALL_STATE(3031)] = 93818, - [SMALL_STATE(3032)] = 93897, - [SMALL_STATE(3033)] = 93976, - [SMALL_STATE(3034)] = 94055, - [SMALL_STATE(3035)] = 94134, - [SMALL_STATE(3036)] = 94213, - [SMALL_STATE(3037)] = 94292, - [SMALL_STATE(3038)] = 94371, - [SMALL_STATE(3039)] = 94450, - [SMALL_STATE(3040)] = 94529, - [SMALL_STATE(3041)] = 94608, - [SMALL_STATE(3042)] = 94687, - [SMALL_STATE(3043)] = 94766, - [SMALL_STATE(3044)] = 94819, - [SMALL_STATE(3045)] = 94898, - [SMALL_STATE(3046)] = 94977, - [SMALL_STATE(3047)] = 95053, - [SMALL_STATE(3048)] = 95129, - [SMALL_STATE(3049)] = 95205, - [SMALL_STATE(3050)] = 95281, - [SMALL_STATE(3051)] = 95357, - [SMALL_STATE(3052)] = 95433, - [SMALL_STATE(3053)] = 95509, - [SMALL_STATE(3054)] = 95585, - [SMALL_STATE(3055)] = 95661, - [SMALL_STATE(3056)] = 95737, - [SMALL_STATE(3057)] = 95813, - [SMALL_STATE(3058)] = 95889, - [SMALL_STATE(3059)] = 95965, - [SMALL_STATE(3060)] = 96041, - [SMALL_STATE(3061)] = 96117, - [SMALL_STATE(3062)] = 96193, - [SMALL_STATE(3063)] = 96269, - [SMALL_STATE(3064)] = 96345, - [SMALL_STATE(3065)] = 96421, - [SMALL_STATE(3066)] = 96497, - [SMALL_STATE(3067)] = 96573, - [SMALL_STATE(3068)] = 96649, - [SMALL_STATE(3069)] = 96725, - [SMALL_STATE(3070)] = 96801, - [SMALL_STATE(3071)] = 96877, - [SMALL_STATE(3072)] = 96953, - [SMALL_STATE(3073)] = 97029, - [SMALL_STATE(3074)] = 97105, - [SMALL_STATE(3075)] = 97181, - [SMALL_STATE(3076)] = 97257, - [SMALL_STATE(3077)] = 97333, - [SMALL_STATE(3078)] = 97409, - [SMALL_STATE(3079)] = 97485, - [SMALL_STATE(3080)] = 97561, - [SMALL_STATE(3081)] = 97637, - [SMALL_STATE(3082)] = 97713, - [SMALL_STATE(3083)] = 97789, - [SMALL_STATE(3084)] = 97865, - [SMALL_STATE(3085)] = 97941, - [SMALL_STATE(3086)] = 98017, - [SMALL_STATE(3087)] = 98093, - [SMALL_STATE(3088)] = 98169, - [SMALL_STATE(3089)] = 98245, - [SMALL_STATE(3090)] = 98321, - [SMALL_STATE(3091)] = 98397, - [SMALL_STATE(3092)] = 98473, - [SMALL_STATE(3093)] = 98549, - [SMALL_STATE(3094)] = 98625, - [SMALL_STATE(3095)] = 98701, - [SMALL_STATE(3096)] = 98777, - [SMALL_STATE(3097)] = 98853, - [SMALL_STATE(3098)] = 98929, - [SMALL_STATE(3099)] = 99005, - [SMALL_STATE(3100)] = 99081, - [SMALL_STATE(3101)] = 99157, - [SMALL_STATE(3102)] = 99233, - [SMALL_STATE(3103)] = 99309, - [SMALL_STATE(3104)] = 99385, - [SMALL_STATE(3105)] = 99461, - [SMALL_STATE(3106)] = 99537, - [SMALL_STATE(3107)] = 99613, - [SMALL_STATE(3108)] = 99689, - [SMALL_STATE(3109)] = 99765, - [SMALL_STATE(3110)] = 99841, - [SMALL_STATE(3111)] = 99917, - [SMALL_STATE(3112)] = 99993, - [SMALL_STATE(3113)] = 100069, - [SMALL_STATE(3114)] = 100145, - [SMALL_STATE(3115)] = 100221, - [SMALL_STATE(3116)] = 100297, - [SMALL_STATE(3117)] = 100373, - [SMALL_STATE(3118)] = 100449, - [SMALL_STATE(3119)] = 100525, - [SMALL_STATE(3120)] = 100601, - [SMALL_STATE(3121)] = 100677, - [SMALL_STATE(3122)] = 100753, - [SMALL_STATE(3123)] = 100829, - [SMALL_STATE(3124)] = 100905, - [SMALL_STATE(3125)] = 100981, - [SMALL_STATE(3126)] = 101057, - [SMALL_STATE(3127)] = 101133, - [SMALL_STATE(3128)] = 101209, - [SMALL_STATE(3129)] = 101285, - [SMALL_STATE(3130)] = 101361, - [SMALL_STATE(3131)] = 101437, - [SMALL_STATE(3132)] = 101513, - [SMALL_STATE(3133)] = 101589, - [SMALL_STATE(3134)] = 101665, - [SMALL_STATE(3135)] = 101741, - [SMALL_STATE(3136)] = 101817, - [SMALL_STATE(3137)] = 101893, - [SMALL_STATE(3138)] = 101969, - [SMALL_STATE(3139)] = 102045, - [SMALL_STATE(3140)] = 102121, - [SMALL_STATE(3141)] = 102197, - [SMALL_STATE(3142)] = 102273, - [SMALL_STATE(3143)] = 102349, - [SMALL_STATE(3144)] = 102425, - [SMALL_STATE(3145)] = 102501, - [SMALL_STATE(3146)] = 102577, - [SMALL_STATE(3147)] = 102653, - [SMALL_STATE(3148)] = 102729, - [SMALL_STATE(3149)] = 102805, - [SMALL_STATE(3150)] = 102881, - [SMALL_STATE(3151)] = 102957, - [SMALL_STATE(3152)] = 103033, - [SMALL_STATE(3153)] = 103109, - [SMALL_STATE(3154)] = 103185, - [SMALL_STATE(3155)] = 103261, - [SMALL_STATE(3156)] = 103337, - [SMALL_STATE(3157)] = 103413, - [SMALL_STATE(3158)] = 103489, - [SMALL_STATE(3159)] = 103565, - [SMALL_STATE(3160)] = 103641, - [SMALL_STATE(3161)] = 103717, - [SMALL_STATE(3162)] = 103793, - [SMALL_STATE(3163)] = 103869, - [SMALL_STATE(3164)] = 103945, - [SMALL_STATE(3165)] = 104021, - [SMALL_STATE(3166)] = 104097, - [SMALL_STATE(3167)] = 104173, - [SMALL_STATE(3168)] = 104249, - [SMALL_STATE(3169)] = 104325, - [SMALL_STATE(3170)] = 104401, - [SMALL_STATE(3171)] = 104477, - [SMALL_STATE(3172)] = 104553, - [SMALL_STATE(3173)] = 104629, - [SMALL_STATE(3174)] = 104705, - [SMALL_STATE(3175)] = 104781, - [SMALL_STATE(3176)] = 104857, - [SMALL_STATE(3177)] = 104933, - [SMALL_STATE(3178)] = 105009, - [SMALL_STATE(3179)] = 105085, - [SMALL_STATE(3180)] = 105161, - [SMALL_STATE(3181)] = 105237, - [SMALL_STATE(3182)] = 105313, - [SMALL_STATE(3183)] = 105389, - [SMALL_STATE(3184)] = 105465, - [SMALL_STATE(3185)] = 105541, - [SMALL_STATE(3186)] = 105617, - [SMALL_STATE(3187)] = 105693, - [SMALL_STATE(3188)] = 105769, - [SMALL_STATE(3189)] = 105845, - [SMALL_STATE(3190)] = 105921, - [SMALL_STATE(3191)] = 105997, - [SMALL_STATE(3192)] = 106073, - [SMALL_STATE(3193)] = 106149, - [SMALL_STATE(3194)] = 106225, - [SMALL_STATE(3195)] = 106301, - [SMALL_STATE(3196)] = 106377, - [SMALL_STATE(3197)] = 106453, - [SMALL_STATE(3198)] = 106529, - [SMALL_STATE(3199)] = 106605, - [SMALL_STATE(3200)] = 106681, - [SMALL_STATE(3201)] = 106757, - [SMALL_STATE(3202)] = 106833, - [SMALL_STATE(3203)] = 106909, - [SMALL_STATE(3204)] = 106985, - [SMALL_STATE(3205)] = 107061, - [SMALL_STATE(3206)] = 107137, - [SMALL_STATE(3207)] = 107213, - [SMALL_STATE(3208)] = 107289, - [SMALL_STATE(3209)] = 107365, - [SMALL_STATE(3210)] = 107441, - [SMALL_STATE(3211)] = 107517, - [SMALL_STATE(3212)] = 107593, - [SMALL_STATE(3213)] = 107669, - [SMALL_STATE(3214)] = 107745, - [SMALL_STATE(3215)] = 107821, - [SMALL_STATE(3216)] = 107897, - [SMALL_STATE(3217)] = 107973, - [SMALL_STATE(3218)] = 108049, - [SMALL_STATE(3219)] = 108125, - [SMALL_STATE(3220)] = 108201, - [SMALL_STATE(3221)] = 108277, - [SMALL_STATE(3222)] = 108353, - [SMALL_STATE(3223)] = 108429, - [SMALL_STATE(3224)] = 108505, - [SMALL_STATE(3225)] = 108581, - [SMALL_STATE(3226)] = 108657, - [SMALL_STATE(3227)] = 108733, - [SMALL_STATE(3228)] = 108809, - [SMALL_STATE(3229)] = 108885, - [SMALL_STATE(3230)] = 108961, - [SMALL_STATE(3231)] = 109037, - [SMALL_STATE(3232)] = 109113, - [SMALL_STATE(3233)] = 109189, - [SMALL_STATE(3234)] = 109265, - [SMALL_STATE(3235)] = 109341, - [SMALL_STATE(3236)] = 109417, - [SMALL_STATE(3237)] = 109493, - [SMALL_STATE(3238)] = 109569, - [SMALL_STATE(3239)] = 109645, - [SMALL_STATE(3240)] = 109721, - [SMALL_STATE(3241)] = 109797, - [SMALL_STATE(3242)] = 109873, - [SMALL_STATE(3243)] = 109949, - [SMALL_STATE(3244)] = 110025, - [SMALL_STATE(3245)] = 110101, - [SMALL_STATE(3246)] = 110177, - [SMALL_STATE(3247)] = 110253, - [SMALL_STATE(3248)] = 110329, - [SMALL_STATE(3249)] = 110405, - [SMALL_STATE(3250)] = 110481, - [SMALL_STATE(3251)] = 110557, - [SMALL_STATE(3252)] = 110633, - [SMALL_STATE(3253)] = 110709, - [SMALL_STATE(3254)] = 110785, - [SMALL_STATE(3255)] = 110861, - [SMALL_STATE(3256)] = 110937, - [SMALL_STATE(3257)] = 111013, - [SMALL_STATE(3258)] = 111089, - [SMALL_STATE(3259)] = 111165, - [SMALL_STATE(3260)] = 111241, - [SMALL_STATE(3261)] = 111317, - [SMALL_STATE(3262)] = 111393, - [SMALL_STATE(3263)] = 111469, - [SMALL_STATE(3264)] = 111545, - [SMALL_STATE(3265)] = 111621, - [SMALL_STATE(3266)] = 111697, - [SMALL_STATE(3267)] = 111773, - [SMALL_STATE(3268)] = 111849, - [SMALL_STATE(3269)] = 111925, - [SMALL_STATE(3270)] = 112001, - [SMALL_STATE(3271)] = 112077, - [SMALL_STATE(3272)] = 112153, - [SMALL_STATE(3273)] = 112229, - [SMALL_STATE(3274)] = 112305, - [SMALL_STATE(3275)] = 112381, - [SMALL_STATE(3276)] = 112457, - [SMALL_STATE(3277)] = 112533, - [SMALL_STATE(3278)] = 112609, - [SMALL_STATE(3279)] = 112685, - [SMALL_STATE(3280)] = 112761, - [SMALL_STATE(3281)] = 112837, - [SMALL_STATE(3282)] = 112913, - [SMALL_STATE(3283)] = 112989, - [SMALL_STATE(3284)] = 113065, - [SMALL_STATE(3285)] = 113141, - [SMALL_STATE(3286)] = 113217, - [SMALL_STATE(3287)] = 113293, - [SMALL_STATE(3288)] = 113369, - [SMALL_STATE(3289)] = 113445, - [SMALL_STATE(3290)] = 113521, - [SMALL_STATE(3291)] = 113597, - [SMALL_STATE(3292)] = 113673, - [SMALL_STATE(3293)] = 113749, - [SMALL_STATE(3294)] = 113825, - [SMALL_STATE(3295)] = 113901, - [SMALL_STATE(3296)] = 113977, - [SMALL_STATE(3297)] = 114053, - [SMALL_STATE(3298)] = 114129, - [SMALL_STATE(3299)] = 114205, - [SMALL_STATE(3300)] = 114281, - [SMALL_STATE(3301)] = 114357, - [SMALL_STATE(3302)] = 114433, - [SMALL_STATE(3303)] = 114509, - [SMALL_STATE(3304)] = 114585, - [SMALL_STATE(3305)] = 114661, - [SMALL_STATE(3306)] = 114737, - [SMALL_STATE(3307)] = 114813, - [SMALL_STATE(3308)] = 114889, - [SMALL_STATE(3309)] = 114965, - [SMALL_STATE(3310)] = 115041, - [SMALL_STATE(3311)] = 115117, - [SMALL_STATE(3312)] = 115178, - [SMALL_STATE(3313)] = 115239, - [SMALL_STATE(3314)] = 115300, - [SMALL_STATE(3315)] = 115365, - [SMALL_STATE(3316)] = 115426, - [SMALL_STATE(3317)] = 115487, - [SMALL_STATE(3318)] = 115552, - [SMALL_STATE(3319)] = 115613, - [SMALL_STATE(3320)] = 115674, - [SMALL_STATE(3321)] = 115735, - [SMALL_STATE(3322)] = 115796, - [SMALL_STATE(3323)] = 115857, - [SMALL_STATE(3324)] = 115918, - [SMALL_STATE(3325)] = 115979, - [SMALL_STATE(3326)] = 116040, - [SMALL_STATE(3327)] = 116101, - [SMALL_STATE(3328)] = 116161, - [SMALL_STATE(3329)] = 116191, - [SMALL_STATE(3330)] = 116221, - [SMALL_STATE(3331)] = 116251, - [SMALL_STATE(3332)] = 116281, - [SMALL_STATE(3333)] = 116311, - [SMALL_STATE(3334)] = 116341, - [SMALL_STATE(3335)] = 116367, - [SMALL_STATE(3336)] = 116393, - [SMALL_STATE(3337)] = 116419, - [SMALL_STATE(3338)] = 116457, - [SMALL_STATE(3339)] = 116495, - [SMALL_STATE(3340)] = 116533, - [SMALL_STATE(3341)] = 116559, - [SMALL_STATE(3342)] = 116603, - [SMALL_STATE(3343)] = 116629, - [SMALL_STATE(3344)] = 116652, - [SMALL_STATE(3345)] = 116675, - [SMALL_STATE(3346)] = 116702, - [SMALL_STATE(3347)] = 116725, - [SMALL_STATE(3348)] = 116752, - [SMALL_STATE(3349)] = 116781, - [SMALL_STATE(3350)] = 116807, - [SMALL_STATE(3351)] = 116833, - [SMALL_STATE(3352)] = 116859, - [SMALL_STATE(3353)] = 116885, - [SMALL_STATE(3354)] = 116911, - [SMALL_STATE(3355)] = 116937, - [SMALL_STATE(3356)] = 116963, - [SMALL_STATE(3357)] = 116989, - [SMALL_STATE(3358)] = 117015, - [SMALL_STATE(3359)] = 117038, - [SMALL_STATE(3360)] = 117063, - [SMALL_STATE(3361)] = 117086, - [SMALL_STATE(3362)] = 117127, - [SMALL_STATE(3363)] = 117168, - [SMALL_STATE(3364)] = 117209, - [SMALL_STATE(3365)] = 117235, - [SMALL_STATE(3366)] = 117275, - [SMALL_STATE(3367)] = 117297, - [SMALL_STATE(3368)] = 117337, - [SMALL_STATE(3369)] = 117377, - [SMALL_STATE(3370)] = 117417, - [SMALL_STATE(3371)] = 117457, - [SMALL_STATE(3372)] = 117481, - [SMALL_STATE(3373)] = 117521, - [SMALL_STATE(3374)] = 117561, - [SMALL_STATE(3375)] = 117601, - [SMALL_STATE(3376)] = 117641, - [SMALL_STATE(3377)] = 117681, - [SMALL_STATE(3378)] = 117707, - [SMALL_STATE(3379)] = 117747, - [SMALL_STATE(3380)] = 117787, - [SMALL_STATE(3381)] = 117827, - [SMALL_STATE(3382)] = 117849, - [SMALL_STATE(3383)] = 117889, - [SMALL_STATE(3384)] = 117911, - [SMALL_STATE(3385)] = 117951, - [SMALL_STATE(3386)] = 117991, - [SMALL_STATE(3387)] = 118031, - [SMALL_STATE(3388)] = 118071, - [SMALL_STATE(3389)] = 118111, - [SMALL_STATE(3390)] = 118151, - [SMALL_STATE(3391)] = 118175, - [SMALL_STATE(3392)] = 118215, - [SMALL_STATE(3393)] = 118241, - [SMALL_STATE(3394)] = 118281, - [SMALL_STATE(3395)] = 118307, - [SMALL_STATE(3396)] = 118329, - [SMALL_STATE(3397)] = 118369, - [SMALL_STATE(3398)] = 118409, - [SMALL_STATE(3399)] = 118435, - [SMALL_STATE(3400)] = 118475, - [SMALL_STATE(3401)] = 118501, - [SMALL_STATE(3402)] = 118523, - [SMALL_STATE(3403)] = 118549, - [SMALL_STATE(3404)] = 118589, - [SMALL_STATE(3405)] = 118611, - [SMALL_STATE(3406)] = 118637, - [SMALL_STATE(3407)] = 118677, - [SMALL_STATE(3408)] = 118699, - [SMALL_STATE(3409)] = 118739, - [SMALL_STATE(3410)] = 118779, - [SMALL_STATE(3411)] = 118798, - [SMALL_STATE(3412)] = 118823, - [SMALL_STATE(3413)] = 118842, - [SMALL_STATE(3414)] = 118867, - [SMALL_STATE(3415)] = 118886, - [SMALL_STATE(3416)] = 118910, - [SMALL_STATE(3417)] = 118930, - [SMALL_STATE(3418)] = 118950, - [SMALL_STATE(3419)] = 118967, - [SMALL_STATE(3420)] = 118984, - [SMALL_STATE(3421)] = 119001, - [SMALL_STATE(3422)] = 119018, - [SMALL_STATE(3423)] = 119035, - [SMALL_STATE(3424)] = 119056, - [SMALL_STATE(3425)] = 119079, - [SMALL_STATE(3426)] = 119096, - [SMALL_STATE(3427)] = 119113, - [SMALL_STATE(3428)] = 119130, - [SMALL_STATE(3429)] = 119147, - [SMALL_STATE(3430)] = 119164, - [SMALL_STATE(3431)] = 119181, - [SMALL_STATE(3432)] = 119198, - [SMALL_STATE(3433)] = 119219, - [SMALL_STATE(3434)] = 119236, - [SMALL_STATE(3435)] = 119253, - [SMALL_STATE(3436)] = 119270, - [SMALL_STATE(3437)] = 119287, - [SMALL_STATE(3438)] = 119304, - [SMALL_STATE(3439)] = 119321, - [SMALL_STATE(3440)] = 119338, - [SMALL_STATE(3441)] = 119355, - [SMALL_STATE(3442)] = 119372, - [SMALL_STATE(3443)] = 119389, - [SMALL_STATE(3444)] = 119421, - [SMALL_STATE(3445)] = 119443, - [SMALL_STATE(3446)] = 119463, - [SMALL_STATE(3447)] = 119490, - [SMALL_STATE(3448)] = 119517, - [SMALL_STATE(3449)] = 119532, - [SMALL_STATE(3450)] = 119559, - [SMALL_STATE(3451)] = 119578, - [SMALL_STATE(3452)] = 119605, - [SMALL_STATE(3453)] = 119632, - [SMALL_STATE(3454)] = 119659, - [SMALL_STATE(3455)] = 119686, - [SMALL_STATE(3456)] = 119713, - [SMALL_STATE(3457)] = 119740, - [SMALL_STATE(3458)] = 119767, - [SMALL_STATE(3459)] = 119788, - [SMALL_STATE(3460)] = 119815, - [SMALL_STATE(3461)] = 119842, - [SMALL_STATE(3462)] = 119863, - [SMALL_STATE(3463)] = 119880, - [SMALL_STATE(3464)] = 119909, - [SMALL_STATE(3465)] = 119923, - [SMALL_STATE(3466)] = 119939, - [SMALL_STATE(3467)] = 119965, - [SMALL_STATE(3468)] = 119979, - [SMALL_STATE(3469)] = 120001, - [SMALL_STATE(3470)] = 120019, - [SMALL_STATE(3471)] = 120037, - [SMALL_STATE(3472)] = 120065, - [SMALL_STATE(3473)] = 120091, - [SMALL_STATE(3474)] = 120105, - [SMALL_STATE(3475)] = 120119, - [SMALL_STATE(3476)] = 120133, - [SMALL_STATE(3477)] = 120149, - [SMALL_STATE(3478)] = 120163, - [SMALL_STATE(3479)] = 120177, - [SMALL_STATE(3480)] = 120193, - [SMALL_STATE(3481)] = 120207, - [SMALL_STATE(3482)] = 120221, - [SMALL_STATE(3483)] = 120239, - [SMALL_STATE(3484)] = 120260, - [SMALL_STATE(3485)] = 120277, - [SMALL_STATE(3486)] = 120294, - [SMALL_STATE(3487)] = 120311, - [SMALL_STATE(3488)] = 120332, - [SMALL_STATE(3489)] = 120357, - [SMALL_STATE(3490)] = 120374, - [SMALL_STATE(3491)] = 120395, - [SMALL_STATE(3492)] = 120412, - [SMALL_STATE(3493)] = 120429, - [SMALL_STATE(3494)] = 120450, - [SMALL_STATE(3495)] = 120467, - [SMALL_STATE(3496)] = 120488, - [SMALL_STATE(3497)] = 120501, - [SMALL_STATE(3498)] = 120518, - [SMALL_STATE(3499)] = 120535, - [SMALL_STATE(3500)] = 120556, - [SMALL_STATE(3501)] = 120581, - [SMALL_STATE(3502)] = 120598, - [SMALL_STATE(3503)] = 120615, - [SMALL_STATE(3504)] = 120636, - [SMALL_STATE(3505)] = 120653, - [SMALL_STATE(3506)] = 120670, - [SMALL_STATE(3507)] = 120691, - [SMALL_STATE(3508)] = 120712, - [SMALL_STATE(3509)] = 120729, - [SMALL_STATE(3510)] = 120750, - [SMALL_STATE(3511)] = 120767, - [SMALL_STATE(3512)] = 120788, - [SMALL_STATE(3513)] = 120805, - [SMALL_STATE(3514)] = 120826, - [SMALL_STATE(3515)] = 120847, - [SMALL_STATE(3516)] = 120868, - [SMALL_STATE(3517)] = 120885, - [SMALL_STATE(3518)] = 120908, - [SMALL_STATE(3519)] = 120925, - [SMALL_STATE(3520)] = 120942, - [SMALL_STATE(3521)] = 120959, - [SMALL_STATE(3522)] = 120980, - [SMALL_STATE(3523)] = 121001, - [SMALL_STATE(3524)] = 121018, - [SMALL_STATE(3525)] = 121035, - [SMALL_STATE(3526)] = 121056, - [SMALL_STATE(3527)] = 121069, - [SMALL_STATE(3528)] = 121086, - [SMALL_STATE(3529)] = 121107, - [SMALL_STATE(3530)] = 121128, - [SMALL_STATE(3531)] = 121149, - [SMALL_STATE(3532)] = 121166, - [SMALL_STATE(3533)] = 121183, - [SMALL_STATE(3534)] = 121196, - [SMALL_STATE(3535)] = 121217, - [SMALL_STATE(3536)] = 121238, - [SMALL_STATE(3537)] = 121259, - [SMALL_STATE(3538)] = 121280, - [SMALL_STATE(3539)] = 121297, - [SMALL_STATE(3540)] = 121317, - [SMALL_STATE(3541)] = 121337, - [SMALL_STATE(3542)] = 121353, - [SMALL_STATE(3543)] = 121373, - [SMALL_STATE(3544)] = 121393, - [SMALL_STATE(3545)] = 121413, - [SMALL_STATE(3546)] = 121433, - [SMALL_STATE(3547)] = 121453, - [SMALL_STATE(3548)] = 121473, - [SMALL_STATE(3549)] = 121493, - [SMALL_STATE(3550)] = 121513, - [SMALL_STATE(3551)] = 121529, - [SMALL_STATE(3552)] = 121549, - [SMALL_STATE(3553)] = 121569, - [SMALL_STATE(3554)] = 121589, - [SMALL_STATE(3555)] = 121609, - [SMALL_STATE(3556)] = 121629, - [SMALL_STATE(3557)] = 121649, - [SMALL_STATE(3558)] = 121669, - [SMALL_STATE(3559)] = 121689, - [SMALL_STATE(3560)] = 121705, - [SMALL_STATE(3561)] = 121725, - [SMALL_STATE(3562)] = 121741, - [SMALL_STATE(3563)] = 121761, - [SMALL_STATE(3564)] = 121781, - [SMALL_STATE(3565)] = 121801, - [SMALL_STATE(3566)] = 121821, - [SMALL_STATE(3567)] = 121837, - [SMALL_STATE(3568)] = 121851, - [SMALL_STATE(3569)] = 121873, - [SMALL_STATE(3570)] = 121889, - [SMALL_STATE(3571)] = 121901, - [SMALL_STATE(3572)] = 121921, - [SMALL_STATE(3573)] = 121941, - [SMALL_STATE(3574)] = 121961, - [SMALL_STATE(3575)] = 121981, - [SMALL_STATE(3576)] = 122001, - [SMALL_STATE(3577)] = 122021, - [SMALL_STATE(3578)] = 122041, - [SMALL_STATE(3579)] = 122061, - [SMALL_STATE(3580)] = 122081, - [SMALL_STATE(3581)] = 122101, - [SMALL_STATE(3582)] = 122117, - [SMALL_STATE(3583)] = 122137, - [SMALL_STATE(3584)] = 122157, - [SMALL_STATE(3585)] = 122177, - [SMALL_STATE(3586)] = 122197, - [SMALL_STATE(3587)] = 122217, - [SMALL_STATE(3588)] = 122237, - [SMALL_STATE(3589)] = 122257, - [SMALL_STATE(3590)] = 122277, - [SMALL_STATE(3591)] = 122297, - [SMALL_STATE(3592)] = 122317, - [SMALL_STATE(3593)] = 122337, - [SMALL_STATE(3594)] = 122357, - [SMALL_STATE(3595)] = 122377, - [SMALL_STATE(3596)] = 122397, - [SMALL_STATE(3597)] = 122417, - [SMALL_STATE(3598)] = 122437, - [SMALL_STATE(3599)] = 122457, - [SMALL_STATE(3600)] = 122477, - [SMALL_STATE(3601)] = 122497, - [SMALL_STATE(3602)] = 122517, - [SMALL_STATE(3603)] = 122537, - [SMALL_STATE(3604)] = 122557, - [SMALL_STATE(3605)] = 122577, - [SMALL_STATE(3606)] = 122597, - [SMALL_STATE(3607)] = 122617, - [SMALL_STATE(3608)] = 122637, - [SMALL_STATE(3609)] = 122657, - [SMALL_STATE(3610)] = 122677, - [SMALL_STATE(3611)] = 122697, - [SMALL_STATE(3612)] = 122717, - [SMALL_STATE(3613)] = 122737, - [SMALL_STATE(3614)] = 122757, - [SMALL_STATE(3615)] = 122777, - [SMALL_STATE(3616)] = 122797, - [SMALL_STATE(3617)] = 122817, - [SMALL_STATE(3618)] = 122837, - [SMALL_STATE(3619)] = 122857, - [SMALL_STATE(3620)] = 122877, - [SMALL_STATE(3621)] = 122897, - [SMALL_STATE(3622)] = 122917, - [SMALL_STATE(3623)] = 122933, - [SMALL_STATE(3624)] = 122953, - [SMALL_STATE(3625)] = 122973, - [SMALL_STATE(3626)] = 122993, - [SMALL_STATE(3627)] = 123013, - [SMALL_STATE(3628)] = 123033, - [SMALL_STATE(3629)] = 123045, - [SMALL_STATE(3630)] = 123065, - [SMALL_STATE(3631)] = 123085, - [SMALL_STATE(3632)] = 123105, - [SMALL_STATE(3633)] = 123125, - [SMALL_STATE(3634)] = 123145, - [SMALL_STATE(3635)] = 123165, - [SMALL_STATE(3636)] = 123185, - [SMALL_STATE(3637)] = 123201, - [SMALL_STATE(3638)] = 123221, - [SMALL_STATE(3639)] = 123237, - [SMALL_STATE(3640)] = 123257, - [SMALL_STATE(3641)] = 123273, - [SMALL_STATE(3642)] = 123293, - [SMALL_STATE(3643)] = 123313, - [SMALL_STATE(3644)] = 123333, - [SMALL_STATE(3645)] = 123353, - [SMALL_STATE(3646)] = 123373, - [SMALL_STATE(3647)] = 123393, - [SMALL_STATE(3648)] = 123413, - [SMALL_STATE(3649)] = 123433, - [SMALL_STATE(3650)] = 123453, - [SMALL_STATE(3651)] = 123473, - [SMALL_STATE(3652)] = 123493, - [SMALL_STATE(3653)] = 123513, - [SMALL_STATE(3654)] = 123535, - [SMALL_STATE(3655)] = 123552, - [SMALL_STATE(3656)] = 123563, - [SMALL_STATE(3657)] = 123582, - [SMALL_STATE(3658)] = 123601, - [SMALL_STATE(3659)] = 123620, - [SMALL_STATE(3660)] = 123637, - [SMALL_STATE(3661)] = 123654, - [SMALL_STATE(3662)] = 123669, - [SMALL_STATE(3663)] = 123686, - [SMALL_STATE(3664)] = 123701, - [SMALL_STATE(3665)] = 123718, - [SMALL_STATE(3666)] = 123729, - [SMALL_STATE(3667)] = 123744, - [SMALL_STATE(3668)] = 123763, - [SMALL_STATE(3669)] = 123782, - [SMALL_STATE(3670)] = 123793, - [SMALL_STATE(3671)] = 123804, - [SMALL_STATE(3672)] = 123817, - [SMALL_STATE(3673)] = 123832, - [SMALL_STATE(3674)] = 123849, - [SMALL_STATE(3675)] = 123860, - [SMALL_STATE(3676)] = 123875, - [SMALL_STATE(3677)] = 123892, - [SMALL_STATE(3678)] = 123905, - [SMALL_STATE(3679)] = 123922, - [SMALL_STATE(3680)] = 123937, - [SMALL_STATE(3681)] = 123952, - [SMALL_STATE(3682)] = 123965, - [SMALL_STATE(3683)] = 123978, - [SMALL_STATE(3684)] = 123997, - [SMALL_STATE(3685)] = 124010, - [SMALL_STATE(3686)] = 124024, - [SMALL_STATE(3687)] = 124034, - [SMALL_STATE(3688)] = 124048, - [SMALL_STATE(3689)] = 124062, - [SMALL_STATE(3690)] = 124076, - [SMALL_STATE(3691)] = 124092, - [SMALL_STATE(3692)] = 124106, - [SMALL_STATE(3693)] = 124116, - [SMALL_STATE(3694)] = 124130, - [SMALL_STATE(3695)] = 124144, - [SMALL_STATE(3696)] = 124158, - [SMALL_STATE(3697)] = 124168, - [SMALL_STATE(3698)] = 124178, - [SMALL_STATE(3699)] = 124188, - [SMALL_STATE(3700)] = 124202, - [SMALL_STATE(3701)] = 124216, - [SMALL_STATE(3702)] = 124230, - [SMALL_STATE(3703)] = 124240, - [SMALL_STATE(3704)] = 124254, - [SMALL_STATE(3705)] = 124264, - [SMALL_STATE(3706)] = 124278, - [SMALL_STATE(3707)] = 124292, - [SMALL_STATE(3708)] = 124306, - [SMALL_STATE(3709)] = 124320, - [SMALL_STATE(3710)] = 124334, - [SMALL_STATE(3711)] = 124350, - [SMALL_STATE(3712)] = 124366, - [SMALL_STATE(3713)] = 124376, - [SMALL_STATE(3714)] = 124390, - [SMALL_STATE(3715)] = 124404, - [SMALL_STATE(3716)] = 124414, - [SMALL_STATE(3717)] = 124428, - [SMALL_STATE(3718)] = 124442, - [SMALL_STATE(3719)] = 124452, - [SMALL_STATE(3720)] = 124466, - [SMALL_STATE(3721)] = 124482, - [SMALL_STATE(3722)] = 124496, - [SMALL_STATE(3723)] = 124510, - [SMALL_STATE(3724)] = 124526, - [SMALL_STATE(3725)] = 124536, - [SMALL_STATE(3726)] = 124552, - [SMALL_STATE(3727)] = 124566, - [SMALL_STATE(3728)] = 124582, - [SMALL_STATE(3729)] = 124596, - [SMALL_STATE(3730)] = 124610, - [SMALL_STATE(3731)] = 124624, - [SMALL_STATE(3732)] = 124634, - [SMALL_STATE(3733)] = 124648, - [SMALL_STATE(3734)] = 124662, - [SMALL_STATE(3735)] = 124672, - [SMALL_STATE(3736)] = 124682, - [SMALL_STATE(3737)] = 124692, - [SMALL_STATE(3738)] = 124708, - [SMALL_STATE(3739)] = 124724, - [SMALL_STATE(3740)] = 124738, - [SMALL_STATE(3741)] = 124752, - [SMALL_STATE(3742)] = 124766, - [SMALL_STATE(3743)] = 124780, - [SMALL_STATE(3744)] = 124794, - [SMALL_STATE(3745)] = 124808, - [SMALL_STATE(3746)] = 124822, - [SMALL_STATE(3747)] = 124836, - [SMALL_STATE(3748)] = 124852, - [SMALL_STATE(3749)] = 124866, - [SMALL_STATE(3750)] = 124882, - [SMALL_STATE(3751)] = 124896, - [SMALL_STATE(3752)] = 124906, - [SMALL_STATE(3753)] = 124922, - [SMALL_STATE(3754)] = 124932, - [SMALL_STATE(3755)] = 124946, - [SMALL_STATE(3756)] = 124960, - [SMALL_STATE(3757)] = 124974, - [SMALL_STATE(3758)] = 124990, - [SMALL_STATE(3759)] = 125004, - [SMALL_STATE(3760)] = 125020, - [SMALL_STATE(3761)] = 125036, - [SMALL_STATE(3762)] = 125050, - [SMALL_STATE(3763)] = 125066, - [SMALL_STATE(3764)] = 125080, - [SMALL_STATE(3765)] = 125096, - [SMALL_STATE(3766)] = 125106, - [SMALL_STATE(3767)] = 125116, - [SMALL_STATE(3768)] = 125126, - [SMALL_STATE(3769)] = 125136, - [SMALL_STATE(3770)] = 125150, - [SMALL_STATE(3771)] = 125164, - [SMALL_STATE(3772)] = 125176, - [SMALL_STATE(3773)] = 125190, - [SMALL_STATE(3774)] = 125204, - [SMALL_STATE(3775)] = 125216, - [SMALL_STATE(3776)] = 125230, - [SMALL_STATE(3777)] = 125242, - [SMALL_STATE(3778)] = 125256, - [SMALL_STATE(3779)] = 125270, - [SMALL_STATE(3780)] = 125284, - [SMALL_STATE(3781)] = 125298, - [SMALL_STATE(3782)] = 125312, - [SMALL_STATE(3783)] = 125328, - [SMALL_STATE(3784)] = 125344, - [SMALL_STATE(3785)] = 125358, - [SMALL_STATE(3786)] = 125372, - [SMALL_STATE(3787)] = 125386, - [SMALL_STATE(3788)] = 125400, - [SMALL_STATE(3789)] = 125414, - [SMALL_STATE(3790)] = 125428, - [SMALL_STATE(3791)] = 125442, - [SMALL_STATE(3792)] = 125456, - [SMALL_STATE(3793)] = 125472, - [SMALL_STATE(3794)] = 125482, - [SMALL_STATE(3795)] = 125496, - [SMALL_STATE(3796)] = 125506, - [SMALL_STATE(3797)] = 125516, - [SMALL_STATE(3798)] = 125530, - [SMALL_STATE(3799)] = 125544, - [SMALL_STATE(3800)] = 125558, - [SMALL_STATE(3801)] = 125570, - [SMALL_STATE(3802)] = 125584, - [SMALL_STATE(3803)] = 125600, - [SMALL_STATE(3804)] = 125614, - [SMALL_STATE(3805)] = 125630, - [SMALL_STATE(3806)] = 125644, - [SMALL_STATE(3807)] = 125660, - [SMALL_STATE(3808)] = 125674, - [SMALL_STATE(3809)] = 125688, - [SMALL_STATE(3810)] = 125698, - [SMALL_STATE(3811)] = 125714, - [SMALL_STATE(3812)] = 125728, - [SMALL_STATE(3813)] = 125738, - [SMALL_STATE(3814)] = 125752, - [SMALL_STATE(3815)] = 125766, - [SMALL_STATE(3816)] = 125782, - [SMALL_STATE(3817)] = 125798, - [SMALL_STATE(3818)] = 125812, - [SMALL_STATE(3819)] = 125828, - [SMALL_STATE(3820)] = 125842, - [SMALL_STATE(3821)] = 125856, - [SMALL_STATE(3822)] = 125870, - [SMALL_STATE(3823)] = 125886, - [SMALL_STATE(3824)] = 125900, - [SMALL_STATE(3825)] = 125916, - [SMALL_STATE(3826)] = 125932, - [SMALL_STATE(3827)] = 125946, - [SMALL_STATE(3828)] = 125960, - [SMALL_STATE(3829)] = 125972, - [SMALL_STATE(3830)] = 125986, - [SMALL_STATE(3831)] = 126000, - [SMALL_STATE(3832)] = 126016, - [SMALL_STATE(3833)] = 126030, - [SMALL_STATE(3834)] = 126044, - [SMALL_STATE(3835)] = 126058, - [SMALL_STATE(3836)] = 126074, - [SMALL_STATE(3837)] = 126088, - [SMALL_STATE(3838)] = 126102, - [SMALL_STATE(3839)] = 126118, - [SMALL_STATE(3840)] = 126132, - [SMALL_STATE(3841)] = 126146, - [SMALL_STATE(3842)] = 126160, - [SMALL_STATE(3843)] = 126172, - [SMALL_STATE(3844)] = 126188, - [SMALL_STATE(3845)] = 126204, - [SMALL_STATE(3846)] = 126218, - [SMALL_STATE(3847)] = 126232, - [SMALL_STATE(3848)] = 126246, - [SMALL_STATE(3849)] = 126262, - [SMALL_STATE(3850)] = 126278, - [SMALL_STATE(3851)] = 126292, - [SMALL_STATE(3852)] = 126306, - [SMALL_STATE(3853)] = 126318, - [SMALL_STATE(3854)] = 126332, - [SMALL_STATE(3855)] = 126345, - [SMALL_STATE(3856)] = 126358, - [SMALL_STATE(3857)] = 126371, - [SMALL_STATE(3858)] = 126384, - [SMALL_STATE(3859)] = 126397, - [SMALL_STATE(3860)] = 126410, - [SMALL_STATE(3861)] = 126423, - [SMALL_STATE(3862)] = 126436, - [SMALL_STATE(3863)] = 126449, - [SMALL_STATE(3864)] = 126462, - [SMALL_STATE(3865)] = 126475, - [SMALL_STATE(3866)] = 126488, - [SMALL_STATE(3867)] = 126501, - [SMALL_STATE(3868)] = 126510, - [SMALL_STATE(3869)] = 126523, - [SMALL_STATE(3870)] = 126536, - [SMALL_STATE(3871)] = 126549, - [SMALL_STATE(3872)] = 126562, - [SMALL_STATE(3873)] = 126575, - [SMALL_STATE(3874)] = 126588, - [SMALL_STATE(3875)] = 126601, - [SMALL_STATE(3876)] = 126614, - [SMALL_STATE(3877)] = 126627, - [SMALL_STATE(3878)] = 126636, - [SMALL_STATE(3879)] = 126649, - [SMALL_STATE(3880)] = 126658, - [SMALL_STATE(3881)] = 126671, - [SMALL_STATE(3882)] = 126684, - [SMALL_STATE(3883)] = 126695, - [SMALL_STATE(3884)] = 126708, - [SMALL_STATE(3885)] = 126721, - [SMALL_STATE(3886)] = 126734, - [SMALL_STATE(3887)] = 126747, - [SMALL_STATE(3888)] = 126760, - [SMALL_STATE(3889)] = 126773, - [SMALL_STATE(3890)] = 126786, - [SMALL_STATE(3891)] = 126799, - [SMALL_STATE(3892)] = 126812, - [SMALL_STATE(3893)] = 126821, - [SMALL_STATE(3894)] = 126834, - [SMALL_STATE(3895)] = 126847, - [SMALL_STATE(3896)] = 126860, - [SMALL_STATE(3897)] = 126873, - [SMALL_STATE(3898)] = 126886, - [SMALL_STATE(3899)] = 126899, - [SMALL_STATE(3900)] = 126912, - [SMALL_STATE(3901)] = 126925, - [SMALL_STATE(3902)] = 126938, - [SMALL_STATE(3903)] = 126951, - [SMALL_STATE(3904)] = 126960, - [SMALL_STATE(3905)] = 126973, - [SMALL_STATE(3906)] = 126986, - [SMALL_STATE(3907)] = 126999, - [SMALL_STATE(3908)] = 127012, - [SMALL_STATE(3909)] = 127025, - [SMALL_STATE(3910)] = 127038, - [SMALL_STATE(3911)] = 127051, - [SMALL_STATE(3912)] = 127064, - [SMALL_STATE(3913)] = 127077, - [SMALL_STATE(3914)] = 127090, - [SMALL_STATE(3915)] = 127103, - [SMALL_STATE(3916)] = 127116, - [SMALL_STATE(3917)] = 127129, - [SMALL_STATE(3918)] = 127142, - [SMALL_STATE(3919)] = 127155, - [SMALL_STATE(3920)] = 127168, - [SMALL_STATE(3921)] = 127181, - [SMALL_STATE(3922)] = 127194, - [SMALL_STATE(3923)] = 127207, - [SMALL_STATE(3924)] = 127220, - [SMALL_STATE(3925)] = 127233, - [SMALL_STATE(3926)] = 127246, - [SMALL_STATE(3927)] = 127259, - [SMALL_STATE(3928)] = 127272, - [SMALL_STATE(3929)] = 127285, - [SMALL_STATE(3930)] = 127298, - [SMALL_STATE(3931)] = 127311, - [SMALL_STATE(3932)] = 127324, - [SMALL_STATE(3933)] = 127337, - [SMALL_STATE(3934)] = 127350, - [SMALL_STATE(3935)] = 127363, - [SMALL_STATE(3936)] = 127376, - [SMALL_STATE(3937)] = 127389, - [SMALL_STATE(3938)] = 127402, - [SMALL_STATE(3939)] = 127415, - [SMALL_STATE(3940)] = 127428, - [SMALL_STATE(3941)] = 127441, - [SMALL_STATE(3942)] = 127454, - [SMALL_STATE(3943)] = 127467, - [SMALL_STATE(3944)] = 127478, - [SMALL_STATE(3945)] = 127491, - [SMALL_STATE(3946)] = 127504, - [SMALL_STATE(3947)] = 127517, - [SMALL_STATE(3948)] = 127530, - [SMALL_STATE(3949)] = 127543, - [SMALL_STATE(3950)] = 127556, - [SMALL_STATE(3951)] = 127569, - [SMALL_STATE(3952)] = 127580, - [SMALL_STATE(3953)] = 127593, - [SMALL_STATE(3954)] = 127606, - [SMALL_STATE(3955)] = 127619, - [SMALL_STATE(3956)] = 127632, - [SMALL_STATE(3957)] = 127645, - [SMALL_STATE(3958)] = 127658, - [SMALL_STATE(3959)] = 127671, - [SMALL_STATE(3960)] = 127684, - [SMALL_STATE(3961)] = 127697, - [SMALL_STATE(3962)] = 127710, - [SMALL_STATE(3963)] = 127723, - [SMALL_STATE(3964)] = 127736, - [SMALL_STATE(3965)] = 127749, - [SMALL_STATE(3966)] = 127762, - [SMALL_STATE(3967)] = 127775, - [SMALL_STATE(3968)] = 127784, - [SMALL_STATE(3969)] = 127793, - [SMALL_STATE(3970)] = 127806, - [SMALL_STATE(3971)] = 127819, - [SMALL_STATE(3972)] = 127832, - [SMALL_STATE(3973)] = 127845, - [SMALL_STATE(3974)] = 127858, - [SMALL_STATE(3975)] = 127871, - [SMALL_STATE(3976)] = 127884, - [SMALL_STATE(3977)] = 127897, - [SMALL_STATE(3978)] = 127910, - [SMALL_STATE(3979)] = 127923, - [SMALL_STATE(3980)] = 127936, - [SMALL_STATE(3981)] = 127949, - [SMALL_STATE(3982)] = 127962, - [SMALL_STATE(3983)] = 127975, - [SMALL_STATE(3984)] = 127988, - [SMALL_STATE(3985)] = 128001, - [SMALL_STATE(3986)] = 128014, - [SMALL_STATE(3987)] = 128027, - [SMALL_STATE(3988)] = 128040, - [SMALL_STATE(3989)] = 128053, - [SMALL_STATE(3990)] = 128066, - [SMALL_STATE(3991)] = 128079, - [SMALL_STATE(3992)] = 128092, - [SMALL_STATE(3993)] = 128105, - [SMALL_STATE(3994)] = 128118, - [SMALL_STATE(3995)] = 128131, - [SMALL_STATE(3996)] = 128144, - [SMALL_STATE(3997)] = 128157, - [SMALL_STATE(3998)] = 128170, - [SMALL_STATE(3999)] = 128183, - [SMALL_STATE(4000)] = 128196, - [SMALL_STATE(4001)] = 128209, - [SMALL_STATE(4002)] = 128222, - [SMALL_STATE(4003)] = 128235, - [SMALL_STATE(4004)] = 128248, - [SMALL_STATE(4005)] = 128261, - [SMALL_STATE(4006)] = 128274, - [SMALL_STATE(4007)] = 128287, - [SMALL_STATE(4008)] = 128300, - [SMALL_STATE(4009)] = 128313, - [SMALL_STATE(4010)] = 128326, - [SMALL_STATE(4011)] = 128337, - [SMALL_STATE(4012)] = 128350, - [SMALL_STATE(4013)] = 128363, - [SMALL_STATE(4014)] = 128374, - [SMALL_STATE(4015)] = 128387, - [SMALL_STATE(4016)] = 128400, - [SMALL_STATE(4017)] = 128413, - [SMALL_STATE(4018)] = 128424, - [SMALL_STATE(4019)] = 128437, - [SMALL_STATE(4020)] = 128450, - [SMALL_STATE(4021)] = 128459, - [SMALL_STATE(4022)] = 128472, - [SMALL_STATE(4023)] = 128485, - [SMALL_STATE(4024)] = 128498, - [SMALL_STATE(4025)] = 128511, - [SMALL_STATE(4026)] = 128524, - [SMALL_STATE(4027)] = 128537, - [SMALL_STATE(4028)] = 128550, - [SMALL_STATE(4029)] = 128563, - [SMALL_STATE(4030)] = 128576, - [SMALL_STATE(4031)] = 128589, - [SMALL_STATE(4032)] = 128602, - [SMALL_STATE(4033)] = 128615, - [SMALL_STATE(4034)] = 128628, - [SMALL_STATE(4035)] = 128641, - [SMALL_STATE(4036)] = 128654, - [SMALL_STATE(4037)] = 128663, - [SMALL_STATE(4038)] = 128672, - [SMALL_STATE(4039)] = 128685, - [SMALL_STATE(4040)] = 128698, - [SMALL_STATE(4041)] = 128711, - [SMALL_STATE(4042)] = 128724, - [SMALL_STATE(4043)] = 128737, - [SMALL_STATE(4044)] = 128750, - [SMALL_STATE(4045)] = 128763, - [SMALL_STATE(4046)] = 128772, - [SMALL_STATE(4047)] = 128785, - [SMALL_STATE(4048)] = 128798, - [SMALL_STATE(4049)] = 128811, - [SMALL_STATE(4050)] = 128824, - [SMALL_STATE(4051)] = 128837, - [SMALL_STATE(4052)] = 128850, - [SMALL_STATE(4053)] = 128863, - [SMALL_STATE(4054)] = 128876, - [SMALL_STATE(4055)] = 128889, - [SMALL_STATE(4056)] = 128902, - [SMALL_STATE(4057)] = 128915, - [SMALL_STATE(4058)] = 128928, - [SMALL_STATE(4059)] = 128941, - [SMALL_STATE(4060)] = 128954, - [SMALL_STATE(4061)] = 128967, - [SMALL_STATE(4062)] = 128980, - [SMALL_STATE(4063)] = 128993, - [SMALL_STATE(4064)] = 129006, - [SMALL_STATE(4065)] = 129019, - [SMALL_STATE(4066)] = 129032, - [SMALL_STATE(4067)] = 129045, - [SMALL_STATE(4068)] = 129058, - [SMALL_STATE(4069)] = 129071, - [SMALL_STATE(4070)] = 129084, - [SMALL_STATE(4071)] = 129097, - [SMALL_STATE(4072)] = 129110, - [SMALL_STATE(4073)] = 129123, - [SMALL_STATE(4074)] = 129136, - [SMALL_STATE(4075)] = 129149, - [SMALL_STATE(4076)] = 129162, - [SMALL_STATE(4077)] = 129175, - [SMALL_STATE(4078)] = 129188, - [SMALL_STATE(4079)] = 129201, - [SMALL_STATE(4080)] = 129210, - [SMALL_STATE(4081)] = 129223, - [SMALL_STATE(4082)] = 129232, - [SMALL_STATE(4083)] = 129245, - [SMALL_STATE(4084)] = 129258, - [SMALL_STATE(4085)] = 129267, - [SMALL_STATE(4086)] = 129280, - [SMALL_STATE(4087)] = 129293, - [SMALL_STATE(4088)] = 129306, - [SMALL_STATE(4089)] = 129319, - [SMALL_STATE(4090)] = 129332, - [SMALL_STATE(4091)] = 129341, - [SMALL_STATE(4092)] = 129354, - [SMALL_STATE(4093)] = 129367, - [SMALL_STATE(4094)] = 129375, - [SMALL_STATE(4095)] = 129385, - [SMALL_STATE(4096)] = 129395, - [SMALL_STATE(4097)] = 129405, - [SMALL_STATE(4098)] = 129415, - [SMALL_STATE(4099)] = 129423, - [SMALL_STATE(4100)] = 129433, - [SMALL_STATE(4101)] = 129443, - [SMALL_STATE(4102)] = 129453, - [SMALL_STATE(4103)] = 129461, - [SMALL_STATE(4104)] = 129471, - [SMALL_STATE(4105)] = 129481, - [SMALL_STATE(4106)] = 129491, - [SMALL_STATE(4107)] = 129501, - [SMALL_STATE(4108)] = 129511, - [SMALL_STATE(4109)] = 129521, - [SMALL_STATE(4110)] = 129531, - [SMALL_STATE(4111)] = 129539, - [SMALL_STATE(4112)] = 129549, - [SMALL_STATE(4113)] = 129559, - [SMALL_STATE(4114)] = 129569, - [SMALL_STATE(4115)] = 129579, - [SMALL_STATE(4116)] = 129589, - [SMALL_STATE(4117)] = 129599, - [SMALL_STATE(4118)] = 129607, - [SMALL_STATE(4119)] = 129617, - [SMALL_STATE(4120)] = 129627, - [SMALL_STATE(4121)] = 129637, - [SMALL_STATE(4122)] = 129647, - [SMALL_STATE(4123)] = 129657, - [SMALL_STATE(4124)] = 129667, - [SMALL_STATE(4125)] = 129677, - [SMALL_STATE(4126)] = 129685, - [SMALL_STATE(4127)] = 129695, - [SMALL_STATE(4128)] = 129705, - [SMALL_STATE(4129)] = 129715, - [SMALL_STATE(4130)] = 129723, - [SMALL_STATE(4131)] = 129733, - [SMALL_STATE(4132)] = 129741, - [SMALL_STATE(4133)] = 129749, - [SMALL_STATE(4134)] = 129759, - [SMALL_STATE(4135)] = 129769, - [SMALL_STATE(4136)] = 129779, - [SMALL_STATE(4137)] = 129789, - [SMALL_STATE(4138)] = 129799, - [SMALL_STATE(4139)] = 129809, - [SMALL_STATE(4140)] = 129819, - [SMALL_STATE(4141)] = 129829, - [SMALL_STATE(4142)] = 129839, - [SMALL_STATE(4143)] = 129849, - [SMALL_STATE(4144)] = 129859, - [SMALL_STATE(4145)] = 129869, - [SMALL_STATE(4146)] = 129879, - [SMALL_STATE(4147)] = 129889, - [SMALL_STATE(4148)] = 129899, - [SMALL_STATE(4149)] = 129909, - [SMALL_STATE(4150)] = 129919, - [SMALL_STATE(4151)] = 129929, - [SMALL_STATE(4152)] = 129937, - [SMALL_STATE(4153)] = 129947, - [SMALL_STATE(4154)] = 129955, - [SMALL_STATE(4155)] = 129965, - [SMALL_STATE(4156)] = 129975, - [SMALL_STATE(4157)] = 129985, - [SMALL_STATE(4158)] = 129995, - [SMALL_STATE(4159)] = 130005, - [SMALL_STATE(4160)] = 130015, - [SMALL_STATE(4161)] = 130023, - [SMALL_STATE(4162)] = 130033, - [SMALL_STATE(4163)] = 130041, - [SMALL_STATE(4164)] = 130051, - [SMALL_STATE(4165)] = 130061, - [SMALL_STATE(4166)] = 130071, - [SMALL_STATE(4167)] = 130081, - [SMALL_STATE(4168)] = 130091, - [SMALL_STATE(4169)] = 130101, - [SMALL_STATE(4170)] = 130111, - [SMALL_STATE(4171)] = 130121, - [SMALL_STATE(4172)] = 130131, - [SMALL_STATE(4173)] = 130141, - [SMALL_STATE(4174)] = 130151, - [SMALL_STATE(4175)] = 130161, - [SMALL_STATE(4176)] = 130171, - [SMALL_STATE(4177)] = 130181, - [SMALL_STATE(4178)] = 130191, - [SMALL_STATE(4179)] = 130201, - [SMALL_STATE(4180)] = 130211, - [SMALL_STATE(4181)] = 130221, - [SMALL_STATE(4182)] = 130231, - [SMALL_STATE(4183)] = 130239, - [SMALL_STATE(4184)] = 130247, - [SMALL_STATE(4185)] = 130255, - [SMALL_STATE(4186)] = 130265, - [SMALL_STATE(4187)] = 130275, - [SMALL_STATE(4188)] = 130285, - [SMALL_STATE(4189)] = 130295, - [SMALL_STATE(4190)] = 130305, - [SMALL_STATE(4191)] = 130315, - [SMALL_STATE(4192)] = 130325, - [SMALL_STATE(4193)] = 130335, - [SMALL_STATE(4194)] = 130345, - [SMALL_STATE(4195)] = 130355, - [SMALL_STATE(4196)] = 130365, - [SMALL_STATE(4197)] = 130373, - [SMALL_STATE(4198)] = 130383, - [SMALL_STATE(4199)] = 130393, - [SMALL_STATE(4200)] = 130403, - [SMALL_STATE(4201)] = 130413, - [SMALL_STATE(4202)] = 130423, - [SMALL_STATE(4203)] = 130433, - [SMALL_STATE(4204)] = 130443, - [SMALL_STATE(4205)] = 130453, - [SMALL_STATE(4206)] = 130463, - [SMALL_STATE(4207)] = 130473, - [SMALL_STATE(4208)] = 130483, - [SMALL_STATE(4209)] = 130493, - [SMALL_STATE(4210)] = 130503, - [SMALL_STATE(4211)] = 130513, - [SMALL_STATE(4212)] = 130523, - [SMALL_STATE(4213)] = 130533, - [SMALL_STATE(4214)] = 130541, - [SMALL_STATE(4215)] = 130551, - [SMALL_STATE(4216)] = 130561, - [SMALL_STATE(4217)] = 130571, - [SMALL_STATE(4218)] = 130581, - [SMALL_STATE(4219)] = 130589, - [SMALL_STATE(4220)] = 130599, - [SMALL_STATE(4221)] = 130609, - [SMALL_STATE(4222)] = 130619, - [SMALL_STATE(4223)] = 130629, - [SMALL_STATE(4224)] = 130639, - [SMALL_STATE(4225)] = 130649, - [SMALL_STATE(4226)] = 130659, - [SMALL_STATE(4227)] = 130669, - [SMALL_STATE(4228)] = 130679, - [SMALL_STATE(4229)] = 130689, - [SMALL_STATE(4230)] = 130699, - [SMALL_STATE(4231)] = 130707, - [SMALL_STATE(4232)] = 130717, - [SMALL_STATE(4233)] = 130727, - [SMALL_STATE(4234)] = 130737, - [SMALL_STATE(4235)] = 130747, - [SMALL_STATE(4236)] = 130757, - [SMALL_STATE(4237)] = 130767, - [SMALL_STATE(4238)] = 130777, - [SMALL_STATE(4239)] = 130787, - [SMALL_STATE(4240)] = 130797, - [SMALL_STATE(4241)] = 130807, - [SMALL_STATE(4242)] = 130817, - [SMALL_STATE(4243)] = 130827, - [SMALL_STATE(4244)] = 130837, - [SMALL_STATE(4245)] = 130847, - [SMALL_STATE(4246)] = 130857, - [SMALL_STATE(4247)] = 130867, - [SMALL_STATE(4248)] = 130875, - [SMALL_STATE(4249)] = 130885, - [SMALL_STATE(4250)] = 130895, - [SMALL_STATE(4251)] = 130905, - [SMALL_STATE(4252)] = 130915, - [SMALL_STATE(4253)] = 130925, - [SMALL_STATE(4254)] = 130935, - [SMALL_STATE(4255)] = 130945, - [SMALL_STATE(4256)] = 130955, - [SMALL_STATE(4257)] = 130965, - [SMALL_STATE(4258)] = 130975, - [SMALL_STATE(4259)] = 130985, - [SMALL_STATE(4260)] = 130995, - [SMALL_STATE(4261)] = 131005, - [SMALL_STATE(4262)] = 131015, - [SMALL_STATE(4263)] = 131025, - [SMALL_STATE(4264)] = 131035, - [SMALL_STATE(4265)] = 131045, - [SMALL_STATE(4266)] = 131055, - [SMALL_STATE(4267)] = 131065, - [SMALL_STATE(4268)] = 131075, - [SMALL_STATE(4269)] = 131085, - [SMALL_STATE(4270)] = 131095, - [SMALL_STATE(4271)] = 131105, - [SMALL_STATE(4272)] = 131115, - [SMALL_STATE(4273)] = 131125, - [SMALL_STATE(4274)] = 131135, - [SMALL_STATE(4275)] = 131145, - [SMALL_STATE(4276)] = 131155, - [SMALL_STATE(4277)] = 131165, - [SMALL_STATE(4278)] = 131175, - [SMALL_STATE(4279)] = 131185, - [SMALL_STATE(4280)] = 131195, - [SMALL_STATE(4281)] = 131205, - [SMALL_STATE(4282)] = 131215, - [SMALL_STATE(4283)] = 131225, - [SMALL_STATE(4284)] = 131235, - [SMALL_STATE(4285)] = 131243, - [SMALL_STATE(4286)] = 131253, - [SMALL_STATE(4287)] = 131263, - [SMALL_STATE(4288)] = 131273, - [SMALL_STATE(4289)] = 131283, - [SMALL_STATE(4290)] = 131293, - [SMALL_STATE(4291)] = 131303, - [SMALL_STATE(4292)] = 131313, - [SMALL_STATE(4293)] = 131323, - [SMALL_STATE(4294)] = 131333, - [SMALL_STATE(4295)] = 131343, - [SMALL_STATE(4296)] = 131353, - [SMALL_STATE(4297)] = 131363, - [SMALL_STATE(4298)] = 131373, - [SMALL_STATE(4299)] = 131383, - [SMALL_STATE(4300)] = 131393, - [SMALL_STATE(4301)] = 131403, - [SMALL_STATE(4302)] = 131413, - [SMALL_STATE(4303)] = 131423, - [SMALL_STATE(4304)] = 131433, - [SMALL_STATE(4305)] = 131443, - [SMALL_STATE(4306)] = 131453, - [SMALL_STATE(4307)] = 131463, - [SMALL_STATE(4308)] = 131473, - [SMALL_STATE(4309)] = 131483, - [SMALL_STATE(4310)] = 131493, - [SMALL_STATE(4311)] = 131503, - [SMALL_STATE(4312)] = 131513, - [SMALL_STATE(4313)] = 131523, - [SMALL_STATE(4314)] = 131533, - [SMALL_STATE(4315)] = 131543, - [SMALL_STATE(4316)] = 131553, - [SMALL_STATE(4317)] = 131563, - [SMALL_STATE(4318)] = 131573, - [SMALL_STATE(4319)] = 131583, - [SMALL_STATE(4320)] = 131593, - [SMALL_STATE(4321)] = 131603, - [SMALL_STATE(4322)] = 131613, - [SMALL_STATE(4323)] = 131623, - [SMALL_STATE(4324)] = 131633, - [SMALL_STATE(4325)] = 131643, - [SMALL_STATE(4326)] = 131653, - [SMALL_STATE(4327)] = 131663, - [SMALL_STATE(4328)] = 131673, - [SMALL_STATE(4329)] = 131683, - [SMALL_STATE(4330)] = 131693, - [SMALL_STATE(4331)] = 131703, - [SMALL_STATE(4332)] = 131713, - [SMALL_STATE(4333)] = 131723, - [SMALL_STATE(4334)] = 131733, - [SMALL_STATE(4335)] = 131743, - [SMALL_STATE(4336)] = 131753, - [SMALL_STATE(4337)] = 131763, - [SMALL_STATE(4338)] = 131773, - [SMALL_STATE(4339)] = 131783, - [SMALL_STATE(4340)] = 131793, - [SMALL_STATE(4341)] = 131803, - [SMALL_STATE(4342)] = 131813, - [SMALL_STATE(4343)] = 131823, - [SMALL_STATE(4344)] = 131833, - [SMALL_STATE(4345)] = 131843, - [SMALL_STATE(4346)] = 131851, - [SMALL_STATE(4347)] = 131861, - [SMALL_STATE(4348)] = 131871, - [SMALL_STATE(4349)] = 131881, - [SMALL_STATE(4350)] = 131891, - [SMALL_STATE(4351)] = 131901, - [SMALL_STATE(4352)] = 131911, - [SMALL_STATE(4353)] = 131921, - [SMALL_STATE(4354)] = 131931, - [SMALL_STATE(4355)] = 131941, - [SMALL_STATE(4356)] = 131951, - [SMALL_STATE(4357)] = 131961, - [SMALL_STATE(4358)] = 131971, - [SMALL_STATE(4359)] = 131981, - [SMALL_STATE(4360)] = 131991, - [SMALL_STATE(4361)] = 132001, - [SMALL_STATE(4362)] = 132011, - [SMALL_STATE(4363)] = 132021, - [SMALL_STATE(4364)] = 132031, - [SMALL_STATE(4365)] = 132041, - [SMALL_STATE(4366)] = 132051, - [SMALL_STATE(4367)] = 132061, - [SMALL_STATE(4368)] = 132071, - [SMALL_STATE(4369)] = 132081, - [SMALL_STATE(4370)] = 132091, - [SMALL_STATE(4371)] = 132101, - [SMALL_STATE(4372)] = 132109, - [SMALL_STATE(4373)] = 132119, - [SMALL_STATE(4374)] = 132129, - [SMALL_STATE(4375)] = 132137, - [SMALL_STATE(4376)] = 132147, - [SMALL_STATE(4377)] = 132157, - [SMALL_STATE(4378)] = 132167, - [SMALL_STATE(4379)] = 132177, - [SMALL_STATE(4380)] = 132187, - [SMALL_STATE(4381)] = 132197, - [SMALL_STATE(4382)] = 132207, - [SMALL_STATE(4383)] = 132215, - [SMALL_STATE(4384)] = 132223, - [SMALL_STATE(4385)] = 132233, - [SMALL_STATE(4386)] = 132241, - [SMALL_STATE(4387)] = 132251, - [SMALL_STATE(4388)] = 132261, - [SMALL_STATE(4389)] = 132271, - [SMALL_STATE(4390)] = 132281, - [SMALL_STATE(4391)] = 132291, - [SMALL_STATE(4392)] = 132299, - [SMALL_STATE(4393)] = 132309, - [SMALL_STATE(4394)] = 132319, - [SMALL_STATE(4395)] = 132329, - [SMALL_STATE(4396)] = 132337, - [SMALL_STATE(4397)] = 132347, - [SMALL_STATE(4398)] = 132357, - [SMALL_STATE(4399)] = 132367, - [SMALL_STATE(4400)] = 132377, - [SMALL_STATE(4401)] = 132387, - [SMALL_STATE(4402)] = 132395, - [SMALL_STATE(4403)] = 132405, - [SMALL_STATE(4404)] = 132415, - [SMALL_STATE(4405)] = 132425, - [SMALL_STATE(4406)] = 132435, - [SMALL_STATE(4407)] = 132445, - [SMALL_STATE(4408)] = 132455, - [SMALL_STATE(4409)] = 132462, - [SMALL_STATE(4410)] = 132469, - [SMALL_STATE(4411)] = 132476, - [SMALL_STATE(4412)] = 132483, - [SMALL_STATE(4413)] = 132490, - [SMALL_STATE(4414)] = 132497, - [SMALL_STATE(4415)] = 132504, - [SMALL_STATE(4416)] = 132511, - [SMALL_STATE(4417)] = 132518, - [SMALL_STATE(4418)] = 132525, - [SMALL_STATE(4419)] = 132532, - [SMALL_STATE(4420)] = 132539, - [SMALL_STATE(4421)] = 132546, - [SMALL_STATE(4422)] = 132553, - [SMALL_STATE(4423)] = 132560, - [SMALL_STATE(4424)] = 132567, - [SMALL_STATE(4425)] = 132574, - [SMALL_STATE(4426)] = 132581, - [SMALL_STATE(4427)] = 132588, - [SMALL_STATE(4428)] = 132595, - [SMALL_STATE(4429)] = 132602, - [SMALL_STATE(4430)] = 132609, - [SMALL_STATE(4431)] = 132616, - [SMALL_STATE(4432)] = 132623, - [SMALL_STATE(4433)] = 132630, - [SMALL_STATE(4434)] = 132637, - [SMALL_STATE(4435)] = 132644, - [SMALL_STATE(4436)] = 132651, - [SMALL_STATE(4437)] = 132658, - [SMALL_STATE(4438)] = 132665, - [SMALL_STATE(4439)] = 132672, - [SMALL_STATE(4440)] = 132679, - [SMALL_STATE(4441)] = 132686, - [SMALL_STATE(4442)] = 132693, - [SMALL_STATE(4443)] = 132700, - [SMALL_STATE(4444)] = 132707, - [SMALL_STATE(4445)] = 132714, - [SMALL_STATE(4446)] = 132721, - [SMALL_STATE(4447)] = 132728, - [SMALL_STATE(4448)] = 132735, - [SMALL_STATE(4449)] = 132742, - [SMALL_STATE(4450)] = 132749, - [SMALL_STATE(4451)] = 132756, - [SMALL_STATE(4452)] = 132763, - [SMALL_STATE(4453)] = 132770, - [SMALL_STATE(4454)] = 132777, - [SMALL_STATE(4455)] = 132784, - [SMALL_STATE(4456)] = 132791, - [SMALL_STATE(4457)] = 132798, - [SMALL_STATE(4458)] = 132805, - [SMALL_STATE(4459)] = 132812, - [SMALL_STATE(4460)] = 132819, - [SMALL_STATE(4461)] = 132826, - [SMALL_STATE(4462)] = 132833, - [SMALL_STATE(4463)] = 132840, - [SMALL_STATE(4464)] = 132847, - [SMALL_STATE(4465)] = 132854, - [SMALL_STATE(4466)] = 132861, - [SMALL_STATE(4467)] = 132868, - [SMALL_STATE(4468)] = 132875, - [SMALL_STATE(4469)] = 132882, - [SMALL_STATE(4470)] = 132889, - [SMALL_STATE(4471)] = 132896, - [SMALL_STATE(4472)] = 132903, - [SMALL_STATE(4473)] = 132910, - [SMALL_STATE(4474)] = 132917, - [SMALL_STATE(4475)] = 132924, - [SMALL_STATE(4476)] = 132931, - [SMALL_STATE(4477)] = 132938, - [SMALL_STATE(4478)] = 132945, - [SMALL_STATE(4479)] = 132952, - [SMALL_STATE(4480)] = 132959, - [SMALL_STATE(4481)] = 132966, - [SMALL_STATE(4482)] = 132973, - [SMALL_STATE(4483)] = 132980, - [SMALL_STATE(4484)] = 132987, - [SMALL_STATE(4485)] = 132994, - [SMALL_STATE(4486)] = 133001, - [SMALL_STATE(4487)] = 133008, - [SMALL_STATE(4488)] = 133015, - [SMALL_STATE(4489)] = 133022, - [SMALL_STATE(4490)] = 133029, - [SMALL_STATE(4491)] = 133036, - [SMALL_STATE(4492)] = 133043, - [SMALL_STATE(4493)] = 133050, - [SMALL_STATE(4494)] = 133057, - [SMALL_STATE(4495)] = 133064, - [SMALL_STATE(4496)] = 133071, - [SMALL_STATE(4497)] = 133078, - [SMALL_STATE(4498)] = 133085, - [SMALL_STATE(4499)] = 133092, - [SMALL_STATE(4500)] = 133099, - [SMALL_STATE(4501)] = 133106, - [SMALL_STATE(4502)] = 133113, - [SMALL_STATE(4503)] = 133120, - [SMALL_STATE(4504)] = 133127, - [SMALL_STATE(4505)] = 133134, - [SMALL_STATE(4506)] = 133141, - [SMALL_STATE(4507)] = 133148, - [SMALL_STATE(4508)] = 133155, - [SMALL_STATE(4509)] = 133162, - [SMALL_STATE(4510)] = 133169, - [SMALL_STATE(4511)] = 133176, - [SMALL_STATE(4512)] = 133183, - [SMALL_STATE(4513)] = 133190, - [SMALL_STATE(4514)] = 133197, - [SMALL_STATE(4515)] = 133204, - [SMALL_STATE(4516)] = 133211, - [SMALL_STATE(4517)] = 133218, - [SMALL_STATE(4518)] = 133225, - [SMALL_STATE(4519)] = 133232, - [SMALL_STATE(4520)] = 133239, - [SMALL_STATE(4521)] = 133246, - [SMALL_STATE(4522)] = 133253, - [SMALL_STATE(4523)] = 133260, - [SMALL_STATE(4524)] = 133267, - [SMALL_STATE(4525)] = 133274, - [SMALL_STATE(4526)] = 133281, - [SMALL_STATE(4527)] = 133288, - [SMALL_STATE(4528)] = 133295, - [SMALL_STATE(4529)] = 133302, - [SMALL_STATE(4530)] = 133309, - [SMALL_STATE(4531)] = 133316, - [SMALL_STATE(4532)] = 133323, - [SMALL_STATE(4533)] = 133330, - [SMALL_STATE(4534)] = 133337, - [SMALL_STATE(4535)] = 133344, - [SMALL_STATE(4536)] = 133351, - [SMALL_STATE(4537)] = 133358, - [SMALL_STATE(4538)] = 133365, - [SMALL_STATE(4539)] = 133372, - [SMALL_STATE(4540)] = 133379, - [SMALL_STATE(4541)] = 133386, - [SMALL_STATE(4542)] = 133393, - [SMALL_STATE(4543)] = 133400, - [SMALL_STATE(4544)] = 133407, - [SMALL_STATE(4545)] = 133414, - [SMALL_STATE(4546)] = 133421, - [SMALL_STATE(4547)] = 133428, - [SMALL_STATE(4548)] = 133435, - [SMALL_STATE(4549)] = 133442, - [SMALL_STATE(4550)] = 133449, - [SMALL_STATE(4551)] = 133456, - [SMALL_STATE(4552)] = 133463, - [SMALL_STATE(4553)] = 133470, - [SMALL_STATE(4554)] = 133477, - [SMALL_STATE(4555)] = 133484, - [SMALL_STATE(4556)] = 133491, - [SMALL_STATE(4557)] = 133498, - [SMALL_STATE(4558)] = 133505, - [SMALL_STATE(4559)] = 133512, - [SMALL_STATE(4560)] = 133519, - [SMALL_STATE(4561)] = 133526, - [SMALL_STATE(4562)] = 133533, - [SMALL_STATE(4563)] = 133540, - [SMALL_STATE(4564)] = 133547, - [SMALL_STATE(4565)] = 133554, - [SMALL_STATE(4566)] = 133561, - [SMALL_STATE(4567)] = 133568, - [SMALL_STATE(4568)] = 133575, - [SMALL_STATE(4569)] = 133582, - [SMALL_STATE(4570)] = 133589, - [SMALL_STATE(4571)] = 133596, - [SMALL_STATE(4572)] = 133603, - [SMALL_STATE(4573)] = 133610, - [SMALL_STATE(4574)] = 133617, - [SMALL_STATE(4575)] = 133624, - [SMALL_STATE(4576)] = 133631, - [SMALL_STATE(4577)] = 133638, - [SMALL_STATE(4578)] = 133645, - [SMALL_STATE(4579)] = 133652, - [SMALL_STATE(4580)] = 133659, - [SMALL_STATE(4581)] = 133666, - [SMALL_STATE(4582)] = 133673, - [SMALL_STATE(4583)] = 133680, - [SMALL_STATE(4584)] = 133687, - [SMALL_STATE(4585)] = 133694, - [SMALL_STATE(4586)] = 133701, - [SMALL_STATE(4587)] = 133708, - [SMALL_STATE(4588)] = 133715, - [SMALL_STATE(4589)] = 133722, - [SMALL_STATE(4590)] = 133729, - [SMALL_STATE(4591)] = 133736, - [SMALL_STATE(4592)] = 133743, - [SMALL_STATE(4593)] = 133750, - [SMALL_STATE(4594)] = 133757, - [SMALL_STATE(4595)] = 133764, - [SMALL_STATE(4596)] = 133771, - [SMALL_STATE(4597)] = 133778, - [SMALL_STATE(4598)] = 133785, - [SMALL_STATE(4599)] = 133792, - [SMALL_STATE(4600)] = 133799, - [SMALL_STATE(4601)] = 133806, - [SMALL_STATE(4602)] = 133813, - [SMALL_STATE(4603)] = 133820, - [SMALL_STATE(4604)] = 133827, - [SMALL_STATE(4605)] = 133834, - [SMALL_STATE(4606)] = 133841, - [SMALL_STATE(4607)] = 133848, - [SMALL_STATE(4608)] = 133855, - [SMALL_STATE(4609)] = 133862, - [SMALL_STATE(4610)] = 133869, - [SMALL_STATE(4611)] = 133876, - [SMALL_STATE(4612)] = 133883, - [SMALL_STATE(4613)] = 133890, - [SMALL_STATE(4614)] = 133897, - [SMALL_STATE(4615)] = 133904, - [SMALL_STATE(4616)] = 133911, - [SMALL_STATE(4617)] = 133918, - [SMALL_STATE(4618)] = 133925, - [SMALL_STATE(4619)] = 133932, - [SMALL_STATE(4620)] = 133939, - [SMALL_STATE(4621)] = 133946, - [SMALL_STATE(4622)] = 133953, - [SMALL_STATE(4623)] = 133960, - [SMALL_STATE(4624)] = 133967, - [SMALL_STATE(4625)] = 133974, - [SMALL_STATE(4626)] = 133981, - [SMALL_STATE(4627)] = 133988, - [SMALL_STATE(4628)] = 133995, - [SMALL_STATE(4629)] = 134002, - [SMALL_STATE(4630)] = 134009, - [SMALL_STATE(4631)] = 134016, - [SMALL_STATE(4632)] = 134023, - [SMALL_STATE(4633)] = 134030, - [SMALL_STATE(4634)] = 134037, - [SMALL_STATE(4635)] = 134044, - [SMALL_STATE(4636)] = 134051, - [SMALL_STATE(4637)] = 134058, - [SMALL_STATE(4638)] = 134065, - [SMALL_STATE(4639)] = 134072, - [SMALL_STATE(4640)] = 134079, - [SMALL_STATE(4641)] = 134086, - [SMALL_STATE(4642)] = 134093, - [SMALL_STATE(4643)] = 134100, - [SMALL_STATE(4644)] = 134107, - [SMALL_STATE(4645)] = 134114, - [SMALL_STATE(4646)] = 134121, - [SMALL_STATE(4647)] = 134128, - [SMALL_STATE(4648)] = 134135, - [SMALL_STATE(4649)] = 134142, - [SMALL_STATE(4650)] = 134149, - [SMALL_STATE(4651)] = 134156, - [SMALL_STATE(4652)] = 134163, - [SMALL_STATE(4653)] = 134170, - [SMALL_STATE(4654)] = 134177, - [SMALL_STATE(4655)] = 134184, - [SMALL_STATE(4656)] = 134191, - [SMALL_STATE(4657)] = 134198, - [SMALL_STATE(4658)] = 134205, - [SMALL_STATE(4659)] = 134212, - [SMALL_STATE(4660)] = 134219, - [SMALL_STATE(4661)] = 134226, - [SMALL_STATE(4662)] = 134233, - [SMALL_STATE(4663)] = 134240, - [SMALL_STATE(4664)] = 134247, - [SMALL_STATE(4665)] = 134254, - [SMALL_STATE(4666)] = 134261, - [SMALL_STATE(4667)] = 134268, - [SMALL_STATE(4668)] = 134275, - [SMALL_STATE(4669)] = 134282, - [SMALL_STATE(4670)] = 134289, - [SMALL_STATE(4671)] = 134296, - [SMALL_STATE(4672)] = 134303, - [SMALL_STATE(4673)] = 134310, - [SMALL_STATE(4674)] = 134317, - [SMALL_STATE(4675)] = 134324, - [SMALL_STATE(4676)] = 134331, - [SMALL_STATE(4677)] = 134338, - [SMALL_STATE(4678)] = 134345, - [SMALL_STATE(4679)] = 134352, - [SMALL_STATE(4680)] = 134359, - [SMALL_STATE(4681)] = 134366, - [SMALL_STATE(4682)] = 134373, - [SMALL_STATE(4683)] = 134380, - [SMALL_STATE(4684)] = 134387, - [SMALL_STATE(4685)] = 134394, - [SMALL_STATE(4686)] = 134401, - [SMALL_STATE(4687)] = 134408, - [SMALL_STATE(4688)] = 134415, - [SMALL_STATE(4689)] = 134422, - [SMALL_STATE(4690)] = 134429, - [SMALL_STATE(4691)] = 134436, - [SMALL_STATE(4692)] = 134443, - [SMALL_STATE(4693)] = 134450, - [SMALL_STATE(4694)] = 134457, - [SMALL_STATE(4695)] = 134464, - [SMALL_STATE(4696)] = 134471, - [SMALL_STATE(4697)] = 134478, - [SMALL_STATE(4698)] = 134485, - [SMALL_STATE(4699)] = 134492, - [SMALL_STATE(4700)] = 134499, - [SMALL_STATE(4701)] = 134506, - [SMALL_STATE(4702)] = 134513, - [SMALL_STATE(4703)] = 134520, - [SMALL_STATE(4704)] = 134527, - [SMALL_STATE(4705)] = 134534, - [SMALL_STATE(4706)] = 134541, - [SMALL_STATE(4707)] = 134548, - [SMALL_STATE(4708)] = 134555, - [SMALL_STATE(4709)] = 134562, - [SMALL_STATE(4710)] = 134569, - [SMALL_STATE(4711)] = 134576, - [SMALL_STATE(4712)] = 134583, - [SMALL_STATE(4713)] = 134590, - [SMALL_STATE(4714)] = 134597, - [SMALL_STATE(4715)] = 134604, - [SMALL_STATE(4716)] = 134611, - [SMALL_STATE(4717)] = 134618, - [SMALL_STATE(4718)] = 134625, - [SMALL_STATE(4719)] = 134632, - [SMALL_STATE(4720)] = 134639, - [SMALL_STATE(4721)] = 134646, - [SMALL_STATE(4722)] = 134653, - [SMALL_STATE(4723)] = 134660, - [SMALL_STATE(4724)] = 134667, - [SMALL_STATE(4725)] = 134674, - [SMALL_STATE(4726)] = 134681, - [SMALL_STATE(4727)] = 134688, - [SMALL_STATE(4728)] = 134695, - [SMALL_STATE(4729)] = 134702, - [SMALL_STATE(4730)] = 134709, - [SMALL_STATE(4731)] = 134716, - [SMALL_STATE(4732)] = 134723, - [SMALL_STATE(4733)] = 134730, - [SMALL_STATE(4734)] = 134737, -}; - -static const TSParseActionEntry ts_parse_actions[] = { - [0] = {.entry = {.count = 0, .reusable = false}}, - [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4258), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(792), - [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4386), - [133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(11), - [136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3872), - [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(840), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3444), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4724), - [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3327), - [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(834), - [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(832), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3884), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4718), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3496), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2162), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4714), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4712), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(2923), - [178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(813), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(811), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(809), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4349), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(170), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(804), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(803), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(859), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(227), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(801), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(424), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(310), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(226), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4341), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3909), - [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(859), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4702), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1589), - [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3300), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3302), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3303), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3307), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(786), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4267), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4258), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1455), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(1456), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(61), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3658), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(103), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4686), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(4685), - [274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3314), - [277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3621), - [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3612), - [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3591), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3583), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3979), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(3980), - [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 3), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 3), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 2), - [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_labeled_statement, 1), - [475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 1), - [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), - [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4260), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), - [549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 1), - [553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 1), - [557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 3), - [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 3), - [587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 1, .production_id = 2), - [589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 1, .production_id = 2), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 2), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 2), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), - [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), - [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 1), - [615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 1), - [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), - [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), - [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4304), - [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), - [737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), - [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), - [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), - [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), - [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1912), - [950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4127), - [953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(250), - [956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(590), - [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3455), - [964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(555), - [967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(528), - [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4348), - [973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2162), - [976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2923), - [979] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(527), - [982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(549), - [985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(545), - [988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4133), - [991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(374), - [994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(524), - [997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(543), - [1000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2030), - [1003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(257), - [1006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), - [1008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(574), - [1011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(426), - [1014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(356), - [1017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(262), - [1020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4136), - [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4050), - [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(2030), - [1029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4654), - [1032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(1589), - [1035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3300), - [1038] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3302), - [1041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3303), - [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3307), - [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3649), - [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3650), - [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3651), - [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(3652), - [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4041), - [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_select_expression_repeat1, 2), SHIFT_REPEAT(4040), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [1073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [1077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [1083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), - [1089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [1091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [1093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [1097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [1099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [1103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [1111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [1113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4215), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), - [1135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [1139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), - [1141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [1143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [1145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), - [1147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), - [1149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [1151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [1153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [1155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [1157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [1159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [1161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [1163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [1165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [1167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [1169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [1171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [1173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [1179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [1181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [1185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [1187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [1189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), - [1193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), - [1201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [1203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [1205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [1225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [1229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [1231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [1233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [1235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [1237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), - [1239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [1245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [1251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [1253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [1257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [1263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [1265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [1267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [1269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), - [1305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2822), - [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4227), - [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(256), - [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), - [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(500), - [1319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3459), - [1322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(497), - [1325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(474), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4373), - [1331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2162), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2923), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(419), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(494), - [1343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(493), - [1346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4217), - [1349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(336), - [1352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(472), - [1355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(491), - [1358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2674), - [1361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(237), - [1364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4144), - [1367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(516), - [1370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(432), - [1373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(370), - [1376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(249), - [1379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4215), - [1382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3995), - [1385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(2674), - [1388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4665), - [1391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(1589), - [1394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3300), - [1397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3302), - [1400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3303), - [1403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3307), - [1406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3582), - [1409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3584), - [1412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3590), - [1415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(3592), - [1418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4001), - [1421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arms_repeat1, 2), SHIFT_REPEAT(4002), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arms, 1), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [1430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), - [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [1490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [1496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [1498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [1502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), - [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), - [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [1534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [1536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [1540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [1548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [1550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [1558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 91), - [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 2), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 54), - [1600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 60), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [1648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 3), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 3), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [1690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4287), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), - [1730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), - [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [1754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [1758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [1764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_simple_statement, 1), - [1766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_simple_statement, 1), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 1), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [1778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [1780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1143), - [1783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4185), - [1786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(273), - [1789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(702), - [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3452), - [1797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(633), - [1800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(592), - [1803] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4304), - [1806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2162), - [1809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(2923), - [1812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(591), - [1815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(629), - [1818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(628), - [1821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4181), - [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(346), - [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(587), - [1830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(623), - [1833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1174), - [1836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(272), - [1839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(692), - [1842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(421), - [1845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(318), - [1848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(276), - [1851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4175), - [1854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4024), - [1857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1174), - [1860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4595), - [1863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(1589), - [1866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3300), - [1869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3302), - [1872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3303), - [1875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3307), - [1878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3585), - [1881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3586), - [1884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3587), - [1887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(3588), - [1890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4028), - [1893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_short_element_list_repeat1, 2), SHIFT_REPEAT(4035), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_element_list, 1), - [1898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), - [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [1916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [1918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2444), - [1921] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4112), - [1924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(247), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [1929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(671), - [1932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3460), - [1935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(676), - [1938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(675), - [1941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4190), - [1944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2162), - [1947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2923), - [1950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(673), - [1953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(666), - [1956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(664), - [1959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4121), - [1962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(343), - [1965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(662), - [1968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(661), - [1971] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2336), - [1974] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(270), - [1977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(693), - [1980] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(412), - [1983] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(341), - [1986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(251), - [1989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4126), - [1992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4057), - [1995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(2336), - [1998] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4550), - [2001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(1589), - [2004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3300), - [2007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3302), - [2010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3303), - [2013] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3307), - [2016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3573), - [2019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3574), - [2022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3575), - [2025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(3576), - [2028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4054), - [2031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), SHIFT_REPEAT(4052), - [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [2036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [2046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [2048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [2052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [2054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [2056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [2070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 26), - [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_append_statement, 3, .production_id = 29), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_append_statement, 3, .production_id = 29), - [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [2096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [2098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [2100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [2102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_in_expression, 3, .production_id = 29), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_in_expression, 3, .production_id = 29), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_in_expression, 3, .production_id = 29), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_in_expression, 3, .production_id = 29), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [2116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_expression, 2), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutable_expression, 2), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [2142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [2152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [2158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [2160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 3), - [2166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), - [2170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [2180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [2184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [2194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [2196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [2200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [2204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_go_expression, 2), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_go_expression, 2), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), - [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spawn_expression, 2), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spawn_expression, 2), - [2222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receive_expression, 2, .production_id = 3), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1282), - [2237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4252), - [2240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(235), - [2243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(755), - [2246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3456), - [2249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(727), - [2252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(729), - [2255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), - [2257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4257), - [2260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2162), - [2263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(2923), - [2266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(730), - [2269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(731), - [2272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(732), - [2275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4255), - [2278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(332), - [2281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(736), - [2284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(740), - [2287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1291), - [2290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(274), - [2293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(762), - [2296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(414), - [2299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(330), - [2302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(223), - [2305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4342), - [2308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3952), - [2311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1291), - [2314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(4520), - [2317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(1589), - [2320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3300), - [2323] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3302), - [2326] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3303), - [2329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3307), - [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3644), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3643), - [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3642), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3641), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3949), - [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 2), SHIFT_REPEAT(3945), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [2388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [2394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 20), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, .production_id = 21), - [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 64), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [2450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), - [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [2496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [2508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [2516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), - [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [2528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [2532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [2540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [2558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [2562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 1, .production_id = 27), - [2576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [2588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), - [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [2698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [2700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [2702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_type_without_special, 1), - [2704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__plain_type_without_special, 1), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), - [2728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [2730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [2732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), - [2734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 3, .production_id = 20), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), - [2738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 53), - [2740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 4, .production_id = 53), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [2766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 2), - [2768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 2), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 1), - [2772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 1), - [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_reference_expression, 1), REDUCE(sym_type_reference_expression, 1), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [2782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_channel_type, 2), - [2784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_channel_type, 2), - [2786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 3), - [2788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 3), - [2790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 25), - [2792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selector_expression, 3, .dynamic_precedence = -1, .production_id = 25), - [2794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 6, .production_id = 56), - [2796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 6, .production_id = 56), - [2798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 4, .production_id = 54), - [2800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 4, .production_id = 54), - [2802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4), - [2804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4), - [2806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 5, .production_id = 50), - [2808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 5, .production_id = 50), - [2810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 112), - [2812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 6, .production_id = 112), - [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 4, .production_id = 56), - [2816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 4, .production_id = 56), - [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_selector_expression, 4), - [2820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_selector_expression, 4), - [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), - [2824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), - [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__content_block, 3), - [2828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__content_block, 3), - [2830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal, 1), - [2832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal, 1), - [2834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_type_cast_expression, 3), - [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_type_cast_expression, 3), - [2838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_atomic_type, 2), - [2840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_atomic_type, 2), - [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_thread_type, 2), - [2844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_thread_type, 2), - [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 47), - [2848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 47), - [2850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), - [2852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), - [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shared_type, 2), - [2856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shared_type, 2), - [2858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), - [2860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), - [2862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), - [2864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), - [2866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), - [2868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, .dynamic_precedence = -1, .production_id = 63), - [2870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block, 2, .production_id = 30), - [2872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block, 2, .production_id = 30), - [2874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), - [2880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), - [2882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), - [2884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), - [2886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4293), - [2889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_fetch, 2, .dynamic_precedence = -1), - [2893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_with_blocks, 1), - [2895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_with_blocks, 1), - [2897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), - [2901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), - [2903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, .dynamic_precedence = 2, .production_id = 19), - [2905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 31), - [2907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 31), - [2909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 3, .production_id = 15), - [2913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 2), - [2915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 2), - [2917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_type, 2), - [2919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_type, 2), - [2921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 2), - [2923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 2), - [2925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_type, 2), - [2927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_type, 2), - [2929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_expression, 4, .production_id = 65), - [2931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_slice_expression, 4, .production_id = 65), - [2933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wrong_pointer_type, 2), - [2935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_wrong_pointer_type, 2), - [2937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, .production_id = 1), - [2941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_creation, 3), - [2943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_creation, 3), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_type, 2), - [2959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_type, 2), - [2961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, .production_id = 11), - [2965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 3), - [2967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 3), - [2969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2973] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_not_is_expression, 3, .dynamic_precedence = 2, .production_id = 29), REDUCE(sym_not_is_expression, 4, .dynamic_precedence = 2, .production_id = 68), - [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), - [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 69), - [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer_body, 3, .production_id = 70), - [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_plain_type, 1), - [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_plain_type, 1), - [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 2), - [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 2), - [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 3, .production_id = 22), - [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 3, .production_id = 22), - [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 20), - [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 3), - [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 3), - [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_signature, 2, .production_id = 16), - [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_signature, 2, .production_id = 16), - [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 45), - [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 45), - [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 4, .production_id = 46), - [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 4, .production_id = 46), - [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_creation, 4), - [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_creation, 4), - [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_special_argument_list, 3, .production_id = 50), - [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_special_argument_list, 3, .production_id = 50), - [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_reference_expression, 1), - [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_reference_expression, 1), - [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpreted_string_literal, 2), - [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpreted_string_literal, 2), - [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 2), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 2), - [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 2), - [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 2), - [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 4), - [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inc_expression, 2), - [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inc_expression, 2), - [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lock_expression, 2, .production_id = 7), - [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_expression, 2), - [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_expression, 2), - [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dec_expression, 2), - [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dec_expression, 2), - [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_literal, 5, .production_id = 82), - [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_literal, 5, .production_id = 82), - [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5, .production_id = 56), - [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5, .production_id = 56), - [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_expression, 5), - [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_expression, 5), - [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 3), - [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 3), - [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, .production_id = 21), - [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_c_string_literal, 3), - [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_c_string_literal, 3), - [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3), - [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3), - [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 4), - [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 4), - [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 3), - [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 3), - [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__struct_body, 3), - [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_body, 3), - [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fixed_array_type, 4, .production_id = 51), - [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fixed_array_type, 4, .production_id = 51), - [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 5, .production_id = 54), - [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 5, .production_id = 54), - [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_type, 4, .production_id = 57), - [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_type, 4, .production_id = 57), - [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), - [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_if_expression, 5, .production_id = 87), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_return_type, 5), - [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_return_type, 5), - [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 4), - [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 4), - [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_list, 4), - [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter_list, 4), - [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 30), - [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 30), - [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_branch, 2, .production_id = 86), - [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_branch, 2, .production_id = 86), - [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_option_propagation_expression, 2), - [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_option_propagation_expression, 2), - [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map_init_expression, 3), - [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_init_expression, 3), - [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pseudo_compile_time_identifier, 2), - [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pseudo_compile_time_identifier, 2), - [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_initializer, 2, .production_id = 10), - [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, .production_id = 32), - [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_qualified_type, 3, .production_id = 32), - [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, .dynamic_precedence = 2), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, .dynamic_precedence = 2), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_result_propagation_expression, 2), - [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_result_propagation_expression, 2), - [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 9), - [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_block_expression, 2), - [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_or_block_expression, 2), - [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anon_struct_value_expression, 4, .production_id = 48), - [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sql_expression, 2), - [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sql_expression, 2), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), - [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2514), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [3213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), - [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 1), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [3231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [3233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), - [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [3259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [3269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 2), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [3277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [3279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), - [3287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [3289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [3301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), - [3307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [3309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 4), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assert_statement, 4), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [3317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__global_var_value, 2, .production_id = 37), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__global_var_value, 2, .production_id = 37), - [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_definition, 3, .production_id = 36), - [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_definition, 3, .production_id = 36), - [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_send_statement, 3, .production_id = 28), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_send_statement, 3, .production_id = 28), - [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), - [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1112), - [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), - [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1110), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1115), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [3399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [3401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), - [3403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [3409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), - [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [3419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [3421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), - [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [3427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [3429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [3437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [3439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [3441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), - [3443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [3447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [3469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), - [3473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [3495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_element, 1), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), - [3507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [3509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [3511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map_keyed_element, 3, .production_id = 35), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), REDUCE(aux_sym_element_list_repeat1, 1), - [3520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4084), - [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_element_list_repeat1, 1), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_name, 1), - [3527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [3543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [3545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [3549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), - [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), - [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), - [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [3583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [3585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4200), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [3644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 1), - [3646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__array_repeat1, 1), - [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [3652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 6), - [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_literal, 1), SHIFT(3216), - [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__max_group, 1), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_attribute, 1), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__max_group, 1), - [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [3667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(3216), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [3758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), - [3762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(4653), - [3765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 2), SHIFT_REPEAT(3157), - [3768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 2), - [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 2), - [3772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 2), SHIFT(4653), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), - [3777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(399), - [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_union_list, 1), - [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_union_list, 1), - [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__type_union_list, 1), SHIFT(4653), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), - [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_list, 2), - [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_strictly_expression_list, 4), - [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_strictly_expression_list, 4), - [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 119), - [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 119), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 120), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 123), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 133), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 81), - [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 96), - [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 96), - [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 71), - [3823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 71), - [3825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), - [3827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 5, .production_id = 78), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 66), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 66), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 136), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 95), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 95), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [3845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 138), - [3847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 1), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 1), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), - [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 107), - [3861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [3863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 125), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 116), - [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 116), - [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 99), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 3, .production_id = 14), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 126), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 141), - [3885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [3887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__type_union_list_repeat1, 3), - [3889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 100), - [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 43), - [3895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 43), - [3897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [3899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 44), - [3901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [3903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 145), - [3905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [3907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 102), - [3909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [3911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 121), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 139), - [3915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 139), - [3917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3, .production_id = 34), - [3919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3, .production_id = 34), - [3921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4, .production_id = 34), - [3923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4, .production_id = 34), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5, .production_id = 34), - [3927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5, .production_id = 34), - [3929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 4), - [3931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 4), - [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hash_statement, 2), - [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_hash_statement, 2), - [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 108), - [3939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 108), - [3941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4), - [3943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 101), - [3949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 49), - [3951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 49), - [3953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [3955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 2, .production_id = 7), - [3957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 42), - [3959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 42), - [3961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 2), - [3963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 2), - [3965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), - [3967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 18), - [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 2), - [3971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 2), - [3973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 6, .production_id = 115), - [3975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 6, .production_id = 115), - [3977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 97), - [3981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [3983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 67), - [3985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 142), - [3987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 142), - [3989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), - [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 143), - [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 2), - [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 2), - [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), - [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 8, .production_id = 144), - [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3, .production_id = 34), - [4003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3, .production_id = 34), - [4005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 4, .production_id = 38), - [4007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 4, .production_id = 38), - [4009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, .production_id = 146), - [4011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, .production_id = 146), - [4013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 97), - [4015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 97), - [4017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 9, .production_id = 147), - [4019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 9, .production_id = 147), - [4021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 5, .production_id = 34), - [4023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 5, .production_id = 34), - [4025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 2), - [4027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 2), - [4029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 137), - [4033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_declaration, 3, .production_id = 33), - [4035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_var_declaration, 3, .production_id = 33), - [4037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 6, .production_id = 106), - [4039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 6, .production_id = 106), - [4041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [4043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 103), - [4045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_statement, 3, .production_id = 26), - [4047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_statement, 3, .production_id = 26), - [4049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asm_statement, 3), - [4051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asm_statement, 3), - [4053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 49), - [4055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 49), - [4057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 94), - [4059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 94), - [4061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 93), - [4063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 93), - [4065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 5), - [4067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 5), - [4069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 3, .production_id = 24), - [4071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 3, .production_id = 24), - [4073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 140), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), - [4079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compile_time_for_statement, 3, .production_id = 24), - [4081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 117), - [4083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 117), - [4085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 118), - [4087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 118), - [4089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), - [4091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 72), - [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), - [4095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 18), - [4097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), - [4099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 18), - [4101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), - [4103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 3, .production_id = 18), - [4105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 6), - [4109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), - [4111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 72), - [4113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 135), - [4117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_definition, 2, .production_id = 12), - [4121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 3), - [4123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 3), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interface_body, 3), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interface_body, 3), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 3), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 3), - [4133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 122), - [4137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__enum_body, 3), - [4139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__enum_body, 3), - [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, .production_id = 134), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, .production_id = 134), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_declaration, 6, .production_id = 34), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_declaration, 6, .production_id = 34), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 5, .production_id = 103), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 132), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 98), - [4161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 80), - [4165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_defer_statement, 2), - [4173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_defer_statement, 2), - [4175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_reference, 1), - [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_reference, 1), - [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 124), - [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_goto_statement, 2), - [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_goto_statement, 2), - [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [4189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [4191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 2), - [4193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 2), - [4195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), - [4197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 4, .production_id = 67), - [4199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [4201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), - [4205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 67), - [4207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), - [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_list_repeat1, 2), SHIFT_REPEAT(3849), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1), - [4216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1), - [4218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), - [4220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 67), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 8), - [4226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [4228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [4230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), - [4232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 72), - [4234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_list, 1), - [4236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_list, 1), - [4238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 103), - [4240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 103), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [4244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 79), - [4246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 6, .production_id = 127), - [4248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 6, .production_id = 127), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_global_var_declaration, 4, .production_id = 34), - [4252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_global_var_declaration, 4, .production_id = 34), - [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 6, .production_id = 103), - [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 6, .production_id = 103), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_declaration, 5, .production_id = 73), - [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_declaration, 5, .production_id = 73), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [4264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, .production_id = 127), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_declaration, 5, .production_id = 101), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_method_declaration, 7, .production_id = 128), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_method_declaration, 7, .production_id = 128), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [4304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 2), - [4306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 2), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [4310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module_clause, 3), - [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module_clause, 3), - [4314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 1), - [4316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 1), - [4318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_declaration, 3), - [4320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_declaration, 3), - [4322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [4328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [4416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_definition, 2), - [4418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_definition, 2), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [4428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [4458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 1), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [4564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 1), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [4568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_without_blocks_list, 1), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [4578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 1), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [4582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_without_blocks, 1), SHIFT(4293), - [4585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 1), - [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [4591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 1, .production_id = 6), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [4607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), - [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [4619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select_arm, 2), - [4621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm, 2), - [4623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 4, .production_id = 109), - [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), - [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [4659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 30), - [4661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_else_arm_clause, 2, .production_id = 30), - [4663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 2, .production_id = 88), - [4665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 2, .production_id = 88), - [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [4673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__array_repeat1, 2), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), - [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3811), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_short_element_list_repeat1, 2), - [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), - [4695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_map_init_expression_repeat1, 2), - [4697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 2), - [4699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 2), - [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [4717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_spread_expression, 2), - [4719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyed_element, 3, .production_id = 35), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [4723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mutability_modifiers, 3), - [4725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutability_modifiers, 3), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [4751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 3, .production_id = 36), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [4777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument, 1), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 29), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 2), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [5057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [5061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definite_range, 3, .production_id = 92), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [5089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [5113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 3, .production_id = 92), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [5175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [5215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range, 2, .production_id = 62), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [5259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [5263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [5265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), - [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), - [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mutable_identifier, 2), - [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [5321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [5325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [5329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [5331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [5403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2761), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), - [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), - [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [5609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), - [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), - [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), - [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), - [5663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [5669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3), - [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 4), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [5675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [5679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(422), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_without_blocks_list, 2), - [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(611), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [5693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 1), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [5703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(2174), - [5706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [5708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4443), - [5711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), SHIFT_REPEAT(4311), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [5790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(2561), - [5793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [5795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4443), - [5798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), SHIFT_REPEAT(4311), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_attributes_repeat1, 1), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [5819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), - [5821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attributes_repeat1, 2), SHIFT_REPEAT(3314), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attributes, 1), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 2, .production_id = 40), - [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [5830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 4, .production_id = 75), - [5832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 4, .production_id = 75), - [5834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_receiver, 5, .production_id = 105), - [5836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_receiver, 5, .production_id = 105), - [5838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 111), - [5840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_embedded_definition, 1), - [5842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 2, .production_id = 85), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifiers, 1), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [5870] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 1, .production_id = 6), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 3, .production_id = 83), - [5878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 1), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), - [5884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_element_list, 1), - [5886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 3), - [5888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 1), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [5894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), - [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_import_path_repeat1, 2), SHIFT_REPEAT(4362), - [5899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 1), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [5909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), - [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(3448), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), - [5916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_element_list_repeat1, 2), SHIFT_REPEAT(697), - [5919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 3, .production_id = 110), - [5921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__struct_field_definition, 5, .production_id = 129), - [5923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1), - [5925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_declaration, 1, .production_id = 17), - [5927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 1), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [5931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_field_scope, 2), - [5933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_method_definition, 4, .production_id = 131), - [5935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_path, 2), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [5963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifiers, 1), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), - [5981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [5985] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(210), - [5988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_argument_list_repeat1, 2), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), - [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [6004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 1), - [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_name, 1), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [6080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [6116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), - [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), SHIFT_REPEAT(3510), - [6147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_selective_import_list_repeat1, 2), - [6149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [6161] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3571), - [6164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(3571), - [6167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), SHIFT_REPEAT(480), - [6170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat1, 2), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), - [6184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), - [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), - [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 2), - [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), - [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), - [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), - [6328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), - [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), - [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [6352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [6358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3639), - [6361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(3639), - [6364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), SHIFT_REPEAT(476), - [6367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_c_string_literal_repeat2, 2), - [6369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(433), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4522), - [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 1), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), - [6430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 4, .production_id = 130), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [6444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value_attribute, 1, .production_id = 5), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [6448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 2), - [6450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [6452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement_list, 1), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), - [6460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 2), - [6462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__interface_body_repeat1, 2), - [6464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), SHIFT_REPEAT(60), - [6467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__statement_list_repeat1, 2), - [6469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_field_definition, 2, .production_id = 84), - [6471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__struct_body_repeat1, 2), - [6473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__enum_body_repeat1, 1), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 3), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4160), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), - [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 2), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [6543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), SHIFT_REPEAT(3006), - [6546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_global_var_declaration_repeat1, 2), - [6548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), SHIFT_REPEAT(4336), - [6551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_generic_parameters_repeat1, 2), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [6555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(3122), - [6558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [6574] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), SHIFT_REPEAT(4518), - [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_const_declaration_repeat1, 2), - [6579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), SHIFT_REPEAT(3458), - [6582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__enum_body_repeat1, 2), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [6600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym___rcbr, 1), - [6602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym___rcbr, 1), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), - [6608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 61), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_interpolation, 4, .production_id = 61), - [6616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 4, .production_id = 61), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), - [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_spec, 3), - [6646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_selective_import_list, 4), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [6652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_name, 1), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [6682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [6720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), SHIFT_REPEAT(2887), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameter_list_repeat1, 2), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [6727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2), SHIFT_REPEAT(331), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameter, 1), - [6782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 2), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [6790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 1, .production_id = 13), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [6800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), SHIFT_REPEAT(3936), - [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_var_definition_list_repeat1, 2), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 5), - [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 5), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [6859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [6881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), - [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [6895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [6907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(431), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [6914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 1, .production_id = 55), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [6918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 2), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [6942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm_type, 1), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), - [6948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), SHIFT_REPEAT(3954), - [6951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat2, 2), - [6953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), SHIFT_REPEAT(3955), - [6956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_raw_string_literal_repeat1, 2), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), - [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(3668), - [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), - [7017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition_list, 1), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2, .production_id = 55), - [7021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression_list, 2), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), - [7031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), SHIFT_REPEAT(3317), - [7034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_attribute_repeat1, 2), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [7040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 3), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [7078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__plain_attribute, 1), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [7090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), SHIFT_REPEAT(3568), - [7093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_capture_list_repeat1, 2), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), - [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 4), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [7133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [7143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 4), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [7169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [7179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(393), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_strictly_expression_list_repeat1, 2), SHIFT_REPEAT(389), - [7195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(3683), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [7222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overridable_operator, 1), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture_list, 3), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [7234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_without_blocks_list_repeat1, 2), SHIFT_REPEAT(457), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), - [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [7247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_parameters, 3), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [7255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 2), - [7257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 3, .production_id = 76), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 41), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 77), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 3, .production_id = 74), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 2, .production_id = 40), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter_declaration, 2, .production_id = 39), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_expression, 1), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_attribute, 3), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), - [7353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_key_value_attribute, 3, .production_id = 52), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), - [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_var_definition, 2, .production_id = 23), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [7427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 5), - [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), - [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_declaration, 4, .production_id = 104), - [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 4), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), - [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_capture, 1), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), - [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_expression_list_repeat1, 2, .production_id = 113), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [7491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 5, .production_id = 114), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [7515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [7517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [7519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [7523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), - [7525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [7529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_specifier, 6), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), - [7607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 89), - [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), - [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), - [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [7641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 4, .production_id = 90), - [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__select_arm_assignment_statement, 2), - [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), - [7695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_var_declaration, 3, .production_id = 33), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), - [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), - [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), - [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3676), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [7825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_receiver, 1), - [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [7859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), - [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), - [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [7903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_list, 4), - [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_backed_type, 2), - [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [7927] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), - [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), - [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), - [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_else_arn_clause, 2), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [7985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), - [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select_arm_statement, 2), - [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [8013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_clause, 3, .production_id = 58), - [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_clause, 3, .production_id = 59), - [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), -}; - -#ifdef __cplusplus -extern "C" { -#endif -#ifdef _WIN32 -#define extern __declspec(dllexport) -#endif - -extern const TSLanguage *tree_sitter_v(void) { - static const TSLanguage language = { - .version = LANGUAGE_VERSION, - .symbol_count = SYMBOL_COUNT, - .alias_count = ALIAS_COUNT, - .token_count = TOKEN_COUNT, - .external_token_count = EXTERNAL_TOKEN_COUNT, - .state_count = STATE_COUNT, - .large_state_count = LARGE_STATE_COUNT, - .production_id_count = PRODUCTION_ID_COUNT, - .field_count = FIELD_COUNT, - .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, - .parse_table = &ts_parse_table[0][0], - .small_parse_table = ts_small_parse_table, - .small_parse_table_map = ts_small_parse_table_map, - .parse_actions = ts_parse_actions, - .symbol_names = ts_symbol_names, - .field_names = ts_field_names, - .field_map_slices = ts_field_map_slices, - .field_map_entries = ts_field_map_entries, - .symbol_metadata = ts_symbol_metadata, - .public_symbol_map = ts_symbol_map, - .alias_map = ts_non_terminal_alias_map, - .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, - .lex_fn = ts_lex, - .keyword_lex_fn = ts_lex_keywords, - .keyword_capture_token = sym_identifier, - .primary_state_ids = ts_primary_state_ids, - }; - return &language; -} -#ifdef __cplusplus -} -#endif diff --git a/tree_sitter_v/src/tree_sitter/parser.h b/tree_sitter_v/src/tree_sitter/parser.h deleted file mode 100644 index 17b4fde9..00000000 --- a/tree_sitter_v/src/tree_sitter/parser.h +++ /dev/null @@ -1,230 +0,0 @@ -#ifndef TREE_SITTER_PARSER_H_ -#define TREE_SITTER_PARSER_H_ - -#ifdef __cplusplus -extern "C" { -#endif - -#include -#include -#include - -#define ts_builtin_sym_error ((TSSymbol)-1) -#define ts_builtin_sym_end 0 -#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 - -#ifndef TREE_SITTER_API_H_ -typedef uint16_t TSStateId; -typedef uint16_t TSSymbol; -typedef uint16_t TSFieldId; -typedef struct TSLanguage TSLanguage; -#endif - -typedef struct { - TSFieldId field_id; - uint8_t child_index; - bool inherited; -} TSFieldMapEntry; - -typedef struct { - uint16_t index; - uint16_t length; -} TSFieldMapSlice; - -typedef struct { - bool visible; - bool named; - bool supertype; -} TSSymbolMetadata; - -typedef struct TSLexer TSLexer; - -struct TSLexer { - int32_t lookahead; - TSSymbol result_symbol; - void (*advance)(TSLexer *, bool); - void (*mark_end)(TSLexer *); - uint32_t (*get_column)(TSLexer *); - bool (*is_at_included_range_start)(const TSLexer *); - bool (*eof)(const TSLexer *); -}; - -typedef enum { - TSParseActionTypeShift, - TSParseActionTypeReduce, - TSParseActionTypeAccept, - TSParseActionTypeRecover, -} TSParseActionType; - -typedef union { - struct { - uint8_t type; - TSStateId state; - bool extra; - bool repetition; - } shift; - struct { - uint8_t type; - uint8_t child_count; - TSSymbol symbol; - int16_t dynamic_precedence; - uint16_t production_id; - } reduce; - uint8_t type; -} TSParseAction; - -typedef struct { - uint16_t lex_state; - uint16_t external_lex_state; -} TSLexMode; - -typedef union { - TSParseAction action; - struct { - uint8_t count; - bool reusable; - } entry; -} TSParseActionEntry; - -struct TSLanguage { - uint32_t version; - uint32_t symbol_count; - uint32_t alias_count; - uint32_t token_count; - uint32_t external_token_count; - uint32_t state_count; - uint32_t large_state_count; - uint32_t production_id_count; - uint32_t field_count; - uint16_t max_alias_sequence_length; - const uint16_t *parse_table; - const uint16_t *small_parse_table; - const uint32_t *small_parse_table_map; - const TSParseActionEntry *parse_actions; - const char * const *symbol_names; - const char * const *field_names; - const TSFieldMapSlice *field_map_slices; - const TSFieldMapEntry *field_map_entries; - const TSSymbolMetadata *symbol_metadata; - const TSSymbol *public_symbol_map; - const uint16_t *alias_map; - const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; - bool (*lex_fn)(TSLexer *, TSStateId); - bool (*keyword_lex_fn)(TSLexer *, TSStateId); - TSSymbol keyword_capture_token; - struct { - const bool *states; - const TSSymbol *symbol_map; - void *(*create)(void); - void (*destroy)(void *); - bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); - unsigned (*serialize)(void *, char *); - void (*deserialize)(void *, const char *, unsigned); - } external_scanner; - const TSStateId *primary_state_ids; -}; - -/* - * Lexer Macros - */ - -#ifdef _MSC_VER -#define UNUSED __pragma(warning(suppress : 4101)) -#else -#define UNUSED __attribute__((unused)) -#endif - -#define START_LEXER() \ - bool result = false; \ - bool skip = false; \ - UNUSED \ - bool eof = false; \ - int32_t lookahead; \ - goto start; \ - next_state: \ - lexer->advance(lexer, skip); \ - start: \ - skip = false; \ - lookahead = lexer->lookahead; - -#define ADVANCE(state_value) \ - { \ - state = state_value; \ - goto next_state; \ - } - -#define SKIP(state_value) \ - { \ - skip = true; \ - state = state_value; \ - goto next_state; \ - } - -#define ACCEPT_TOKEN(symbol_value) \ - result = true; \ - lexer->result_symbol = symbol_value; \ - lexer->mark_end(lexer); - -#define END_STATE() return result; - -/* - * Parse Table Macros - */ - -#define SMALL_STATE(id) ((id) - LARGE_STATE_COUNT) - -#define STATE(id) id - -#define ACTIONS(id) id - -#define SHIFT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = (state_value) \ - } \ - }} - -#define SHIFT_REPEAT(state_value) \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .state = (state_value), \ - .repetition = true \ - } \ - }} - -#define SHIFT_EXTRA() \ - {{ \ - .shift = { \ - .type = TSParseActionTypeShift, \ - .extra = true \ - } \ - }} - -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ - }} - -#define RECOVER() \ - {{ \ - .type = TSParseActionTypeRecover \ - }} - -#define ACCEPT_INPUT() \ - {{ \ - .type = TSParseActionTypeAccept \ - }} - -#ifdef __cplusplus -} -#endif - -#endif // TREE_SITTER_PARSER_H_